@ikas/storefront 4.0.0-alpha.78 → 4.0.0-alpha.8

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 (1192) hide show
  1. package/package.json +19 -21
  2. package/src/analytics/analytics.ts +536 -0
  3. package/src/analytics/events.ts +116 -0
  4. package/src/analytics/facebookPixel.ts +226 -0
  5. package/src/analytics/googleAnalytics.ts +227 -0
  6. package/src/analytics/googleTagManager.ts +341 -0
  7. package/src/analytics/googleUniversal.ts +136 -0
  8. package/src/analytics/head/index.tsx +135 -0
  9. package/src/analytics/ikas.ts +558 -0
  10. package/src/analytics/index.ts +2 -0
  11. package/src/analytics/tiktokPixel.ts +223 -0
  12. package/src/components/checkout/components/address-form/index.tsx +406 -0
  13. package/src/components/checkout/components/address-form/model.ts +397 -0
  14. package/src/components/checkout/components/button/index.tsx +44 -0
  15. package/src/components/checkout/components/button/style.module.scss +103 -0
  16. package/src/components/checkout/components/cart-summary/cart-item/index.tsx +180 -0
  17. package/src/components/checkout/components/cart-summary/cart-item/style.module.scss +107 -0
  18. package/src/components/checkout/components/cart-summary/index.tsx +481 -0
  19. package/src/components/checkout/components/cart-summary/style.module.scss +251 -0
  20. package/src/components/checkout/components/checkbox/check.tsx +23 -0
  21. package/src/components/checkout/components/checkbox/index.tsx +50 -0
  22. package/src/components/checkout/components/checkbox/style.module.scss +72 -0
  23. package/src/components/checkout/components/credit-card-form/index.tsx +122 -0
  24. package/src/components/checkout/components/credit-card-form/model.ts +56 -0
  25. package/src/components/checkout/components/credit-card-form/style.module.scss +6 -0
  26. package/src/components/checkout/components/credit-card-form/svg/amex.tsx +30 -0
  27. package/src/components/checkout/components/credit-card-form/svg/master-card.tsx +38 -0
  28. package/src/components/checkout/components/credit-card-form/svg/troy.tsx +54 -0
  29. package/src/components/checkout/components/credit-card-form/svg/visa.tsx +46 -0
  30. package/src/components/checkout/components/customer-addresses/index.tsx +333 -0
  31. package/src/components/checkout/components/customer-addresses/model.ts +126 -0
  32. package/src/components/checkout/components/customer-addresses/style.module.scss +38 -0
  33. package/src/components/checkout/components/delivery-methods/icon-button/index.tsx +29 -0
  34. package/src/components/checkout/components/delivery-methods/icon-button/style.module.scss +41 -0
  35. package/src/components/checkout/components/delivery-methods/icons/box.tsx +22 -0
  36. package/src/components/checkout/components/delivery-methods/icons/store.tsx +22 -0
  37. package/src/components/checkout/components/delivery-methods/index.tsx +39 -0
  38. package/src/components/checkout/components/delivery-methods/style.module.scss +4 -0
  39. package/src/components/checkout/components/error/customer-login-required-error/index.tsx +23 -0
  40. package/src/components/checkout/components/error/index.tsx +54 -0
  41. package/src/components/checkout/components/error/no-shipping-error/index.tsx +14 -0
  42. package/src/components/checkout/components/error/payment-error/index.tsx +21 -0
  43. package/src/components/checkout/components/error/stock-error/index.tsx +72 -0
  44. package/src/components/checkout/components/error/stock-error/style.module.scss +11 -0
  45. package/src/components/checkout/components/error/unknown-error/index.tsx +19 -0
  46. package/src/components/checkout/components/expandable-section/index.tsx +37 -0
  47. package/src/components/checkout/components/expandable-section/style.module.scss +29 -0
  48. package/src/components/checkout/components/form-item/caret-down.tsx +20 -0
  49. package/src/components/checkout/components/form-item/index.tsx +207 -0
  50. package/src/components/checkout/components/form-item/model.ts +145 -0
  51. package/src/components/checkout/components/form-item/style.module.scss +216 -0
  52. package/src/components/checkout/components/fullscreen-loading/index.tsx +10 -0
  53. package/src/components/checkout/components/fullscreen-loading/style.module.scss +56 -0
  54. package/src/components/checkout/components/input-with-button/index.tsx +53 -0
  55. package/src/components/checkout/components/input-with-button/style.module.scss +104 -0
  56. package/src/components/checkout/components/master-pass/credit-card-form/index.tsx +160 -0
  57. package/src/components/checkout/components/master-pass/credit-card-form/style.module.scss +15 -0
  58. package/src/components/checkout/components/master-pass/modal/index.tsx +32 -0
  59. package/src/components/checkout/components/master-pass/modal/style.module.scss +42 -0
  60. package/src/components/checkout/components/master-pass/modal/svg/modal-close.tsx +20 -0
  61. package/src/components/checkout/components/master-pass/modal-link-card-to-client/index.tsx +62 -0
  62. package/src/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss +27 -0
  63. package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.tsx +19 -0
  64. package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.tsx +41 -0
  65. package/src/components/checkout/components/master-pass/modal-otp/index.tsx +202 -0
  66. package/src/components/checkout/components/master-pass/modal-otp/style.module.scss +47 -0
  67. package/src/components/checkout/components/master-pass/modal-otp/svg/master-pass.tsx +28 -0
  68. package/src/components/checkout/components/master-pass/modal-response/index.tsx +24 -0
  69. package/src/components/checkout/components/master-pass/modal-response/style.module.scss +7 -0
  70. package/src/components/checkout/components/master-pass/modal-success/index.tsx +54 -0
  71. package/src/components/checkout/components/master-pass/modal-success/style.module.scss +25 -0
  72. package/src/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.tsx +41 -0
  73. package/src/components/checkout/components/master-pass/modal-success/svg/success.tsx +21 -0
  74. package/src/components/checkout/components/master-pass/payment-gateway/svg/master-card.tsx +14 -0
  75. package/src/components/checkout/components/master-pass/svg/master-pass-by-master-card.tsx +34 -0
  76. package/src/components/checkout/components/modal/index.tsx +41 -0
  77. package/src/components/checkout/components/modal/style.module.scss +68 -0
  78. package/src/components/checkout/components/modal/useEscape.tsx +20 -0
  79. package/src/components/checkout/components/notification-box/index.tsx +70 -0
  80. package/src/components/checkout/components/notification-box/style.module.scss +69 -0
  81. package/src/components/checkout/components/offer-product/index.tsx +180 -0
  82. package/src/components/checkout/components/offer-product/select/arrows.tsx +22 -0
  83. package/src/components/checkout/components/offer-product/select/index.tsx +40 -0
  84. package/src/components/checkout/components/offer-product/select/style.module.scss +28 -0
  85. package/src/components/checkout/components/offer-product/style.module.scss +117 -0
  86. package/src/components/checkout/components/phone-number-input/compare-strings.ts +5 -0
  87. package/src/components/checkout/components/phone-number-input/get-countries.ts +52 -0
  88. package/src/components/checkout/components/phone-number-input/index.tsx +125 -0
  89. package/src/components/checkout/components/phone-number-input/style.module.scss +83 -0
  90. package/src/components/checkout/components/select-box/index.tsx +60 -0
  91. package/src/components/checkout/components/select-box/style.module.scss +55 -0
  92. package/src/components/checkout/components/step-container/index.tsx +107 -0
  93. package/src/components/checkout/components/step-container/style.module.scss +86 -0
  94. package/src/components/checkout/components/stripe/checkout-form.tsx +55 -0
  95. package/src/components/checkout/components/stripe/index.tsx +91 -0
  96. package/src/components/checkout/components/stripe/style.module.scss +75 -0
  97. package/src/components/checkout/components/svg/arrow-down.tsx +23 -0
  98. package/src/components/checkout/components/svg/arrow-left.tsx +23 -0
  99. package/src/components/checkout/components/svg/arrow-right.tsx +23 -0
  100. package/src/components/checkout/components/svg/cross.tsx +23 -0
  101. package/src/components/checkout/components/svg/discount.tsx +34 -0
  102. package/src/components/checkout/components/svg/external.tsx +101 -0
  103. package/src/components/checkout/components/svg/gift.tsx +40 -0
  104. package/src/components/checkout/components/svg/ikas.tsx +39 -0
  105. package/src/components/checkout/components/svg/lock.tsx +23 -0
  106. package/src/components/checkout/components/svg/shopping-cart.tsx +23 -0
  107. package/src/components/checkout/components/svg/success-circle.tsx +26 -0
  108. package/src/components/checkout/components/svg/tag.tsx +23 -0
  109. package/src/components/checkout/components/svg/warning.tsx +30 -0
  110. package/src/components/checkout/components/toggle/index.tsx +51 -0
  111. package/src/components/checkout/components/toggle/style.module.scss +75 -0
  112. package/src/components/checkout/components/tooltip/index.tsx +27 -0
  113. package/src/components/checkout/components/tooltip/style.module.scss +86 -0
  114. package/src/components/checkout/index.tsx +641 -0
  115. package/src/components/checkout/model.ts +1466 -0
  116. package/src/components/checkout/modelMasterPass.ts +1001 -0
  117. package/src/components/checkout/steps/step-info/index.tsx +85 -0
  118. package/src/components/checkout/steps/step-payment/billing-address/index.tsx +48 -0
  119. package/src/components/checkout/steps/step-payment/index.tsx +104 -0
  120. package/src/components/checkout/steps/step-payment/payment-gateways/index.tsx +218 -0
  121. package/src/components/checkout/steps/step-payment/payment-gateways/installments/index.tsx +54 -0
  122. package/src/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss +50 -0
  123. package/src/components/checkout/steps/step-payment/payment-gateways/style.module.scss +32 -0
  124. package/src/components/checkout/steps/step-payment/style.module.scss +32 -0
  125. package/src/components/checkout/steps/step-shipping/index.tsx +126 -0
  126. package/src/components/checkout/steps/step-shipping/style.module.scss +44 -0
  127. package/src/components/checkout/steps/step-success/index.tsx +366 -0
  128. package/src/components/checkout/steps/step-success/style.module.scss +161 -0
  129. package/src/components/checkout/style.module.scss +366 -0
  130. package/src/components/checkout/styles/common.module.scss +59 -0
  131. package/src/components/checkout/styles/variables.scss +40 -0
  132. package/src/components/image/index.tsx +43 -0
  133. package/src/components/index.ts +5 -0
  134. package/src/components/link/index.tsx +26 -0
  135. package/src/components/page/ThemeComponent.tsx +108 -0
  136. package/src/components/page/head.tsx +358 -0
  137. package/src/components/page/index.tsx +219 -0
  138. package/src/components/page-editor/ThemeComponentEditor.tsx +270 -0
  139. package/src/components/page-editor/error/index.tsx +18 -0
  140. package/src/components/page-editor/index.tsx +194 -0
  141. package/src/components/page-editor/loader/index.tsx +18 -0
  142. package/src/components/page-editor/loader/style.module.scss +59 -0
  143. package/src/components/page-editor/model.ts +847 -0
  144. package/src/index.ts +6 -0
  145. package/src/models/data/base/index.ts +15 -0
  146. package/src/models/data/blog/category/index.ts +36 -0
  147. package/src/models/data/blog/content/index.ts +16 -0
  148. package/src/models/data/blog/index.ts +75 -0
  149. package/src/models/data/blog/meta-data/index.ts +39 -0
  150. package/src/models/data/blog/tag/index.ts +16 -0
  151. package/src/models/data/blog/writer/index.ts +17 -0
  152. package/src/models/data/brand/index.ts +58 -0
  153. package/src/models/data/brand/translation/index.ts +16 -0
  154. package/src/models/data/campaign-offer/index.ts +79 -0
  155. package/src/models/data/campaign-offer/product/index.ts +69 -0
  156. package/src/models/data/cart/available-shipping-method/index.ts +25 -0
  157. package/src/models/data/cart/campaign-offer/index.ts +43 -0
  158. package/src/models/data/cart/index.ts +38 -0
  159. package/src/models/data/category/index.ts +69 -0
  160. package/src/models/data/category/init.ts +33 -0
  161. package/src/models/data/category/path-item/index.ts +42 -0
  162. package/src/models/data/category/translations/index.ts +16 -0
  163. package/src/models/data/checkout/index.ts +55 -0
  164. package/src/models/data/checkout-settings/index.ts +63 -0
  165. package/src/models/data/checkout-settings/option/index.ts +14 -0
  166. package/src/models/data/checkout-settings/price/index.ts +14 -0
  167. package/src/models/data/city/index.ts +34 -0
  168. package/src/models/data/contact-form/index.ts +20 -0
  169. package/src/models/data/country/index.ts +46 -0
  170. package/src/models/data/customer/address/city/index.ts +16 -0
  171. package/src/models/data/customer/address/country/index.ts +20 -0
  172. package/src/models/data/customer/address/district/index.ts +16 -0
  173. package/src/models/data/customer/address/index.tsx +136 -0
  174. package/src/models/data/customer/address/state/index.ts +16 -0
  175. package/src/models/data/customer/attribute/index.ts +61 -0
  176. package/src/models/data/customer/attribute/option/index.ts +20 -0
  177. package/src/models/data/customer/attribute/sales-channel/index.ts +24 -0
  178. package/src/models/data/customer/attribute/translation/index.ts +23 -0
  179. package/src/models/data/customer/attribute/translation/option/index.ts +16 -0
  180. package/src/models/data/customer/attribute/value/index.ts +29 -0
  181. package/src/models/data/customer/index.ts +122 -0
  182. package/src/models/data/customer/review/index.ts +70 -0
  183. package/src/models/data/customer/review/settings/index.ts +14 -0
  184. package/src/models/data/customer/review/summary/index.ts +29 -0
  185. package/src/models/data/customer/review/summary/star/index.ts +16 -0
  186. package/src/models/data/district/index.ts +36 -0
  187. package/src/models/data/favorite-product/index.ts +23 -0
  188. package/src/models/data/filter-category/index.ts +30 -0
  189. package/src/models/data/html-meta-data/index.ts +69 -0
  190. package/src/models/data/html-meta-data/translations/index.ts +16 -0
  191. package/src/models/data/image/index.ts +33 -0
  192. package/src/models/data/index.ts +192 -0
  193. package/src/models/data/last-viewed-product/index.ts +14 -0
  194. package/src/models/data/merchant-settings/index.ts +26 -0
  195. package/src/models/data/order/address/city/index.ts +16 -0
  196. package/src/models/data/order/address/country/index.ts +20 -0
  197. package/src/models/data/order/address/district/index.ts +16 -0
  198. package/src/models/data/order/address/index.ts +96 -0
  199. package/src/models/data/order/address/state/index.ts +16 -0
  200. package/src/models/data/order/adjustment/applied-order-line/index.ts +20 -0
  201. package/src/models/data/order/adjustment/index.ts +39 -0
  202. package/src/models/data/order/customer/index.ts +24 -0
  203. package/src/models/data/order/gift-line/index.ts +14 -0
  204. package/src/models/data/order/index.ts +241 -0
  205. package/src/models/data/order/invoice/index.ts +29 -0
  206. package/src/models/data/order/line-item/discount/index.ts +23 -0
  207. package/src/models/data/order/line-item/index.ts +153 -0
  208. package/src/models/data/order/line-item/option/index.ts +24 -0
  209. package/src/models/data/order/line-item/option/value/index.ts +16 -0
  210. package/src/models/data/order/line-item/variant/brand/index.ts +14 -0
  211. package/src/models/data/order/line-item/variant/category/index.ts +36 -0
  212. package/src/models/data/order/line-item/variant/index.ts +62 -0
  213. package/src/models/data/order/line-item/variant/price/index.ts +20 -0
  214. package/src/models/data/order/line-item/variant/value/index.ts +31 -0
  215. package/src/models/data/order/package/index.ts +41 -0
  216. package/src/models/data/order/package/tracking-info/index.ts +20 -0
  217. package/src/models/data/order/payment-method/index.ts +23 -0
  218. package/src/models/data/order/refund/index.ts +17 -0
  219. package/src/models/data/order/refund/line-item/index.ts +16 -0
  220. package/src/models/data/order/refund/settings/index.ts +16 -0
  221. package/src/models/data/order/shipping-line/index.ts +29 -0
  222. package/src/models/data/order/tax-line/index.ts +14 -0
  223. package/src/models/data/order/transaction/error/index.ts +16 -0
  224. package/src/models/data/order/transaction/index.ts +58 -0
  225. package/src/models/data/order/transaction/payment-method-detail/index.ts +33 -0
  226. package/src/models/data/order/transaction/payment-method-detail/installment-price/index.ts +22 -0
  227. package/src/models/data/payment-gateway/additional-price/index.ts +29 -0
  228. package/src/models/data/payment-gateway/index.ts +90 -0
  229. package/src/models/data/payment-gateway/settings/index.ts +21 -0
  230. package/src/models/data/payment-gateway/translation/index.ts +18 -0
  231. package/src/models/data/product/attribute/index.ts +37 -0
  232. package/src/models/data/product/attribute/option/index.ts +14 -0
  233. package/src/models/data/product/attribute/table-cell/index.ts +16 -0
  234. package/src/models/data/product/attribute/table-template/index.ts +19 -0
  235. package/src/models/data/product/attribute/translation/index.ts +39 -0
  236. package/src/models/data/product/attribute-value/index.ts +69 -0
  237. package/src/models/data/product/back-in-stock-settings/index.ts +14 -0
  238. package/src/models/data/product/campaign/data/index.ts +70 -0
  239. package/src/models/data/product/campaign/filter/index.ts +19 -0
  240. package/src/models/data/product/campaign/index.ts +15 -0
  241. package/src/models/data/product/campaign/product-buyx-then-gety/index.ts +57 -0
  242. package/src/models/data/product/campaign/product-campaign-date-range-field/index.ts +16 -0
  243. package/src/models/data/product/campaign/product-fixed-discount/index.ts +40 -0
  244. package/src/models/data/product/filter/index.ts +285 -0
  245. package/src/models/data/product/image/index.ts +22 -0
  246. package/src/models/data/product/index.ts +298 -0
  247. package/src/models/data/product/option-set/index.ts +94 -0
  248. package/src/models/data/product/option-set/option/index.ts +245 -0
  249. package/src/models/data/product/tag/index.ts +14 -0
  250. package/src/models/data/product/variant/index.ts +104 -0
  251. package/src/models/data/product/variant/price/index.ts +58 -0
  252. package/src/models/data/product/variant-type/index.ts +17 -0
  253. package/src/models/data/product/variant-type/init.ts +15 -0
  254. package/src/models/data/raffle/index.ts +155 -0
  255. package/src/models/data/sales-channel/index.ts +56 -0
  256. package/src/models/data/state/index.ts +18 -0
  257. package/src/models/data/stock-location/address/city/index.ts +16 -0
  258. package/src/models/data/stock-location/address/country/index.ts +18 -0
  259. package/src/models/data/stock-location/address/district/index.ts +18 -0
  260. package/src/models/data/stock-location/address/index.ts +34 -0
  261. package/src/models/data/stock-location/address/state/index.ts +18 -0
  262. package/src/models/data/stock-location/available/index.ts +22 -0
  263. package/src/models/data/stock-location/index.ts +35 -0
  264. package/src/models/data/storefront/domain/index.ts +20 -0
  265. package/src/models/data/storefront/index.ts +65 -0
  266. package/src/models/data/storefront/localization/index.tsx +18 -0
  267. package/src/models/data/storefront/routing/dynamic-currency/index.ts +16 -0
  268. package/src/models/data/storefront/routing/index.tsx +25 -0
  269. package/src/models/data/storefront/theme/index.tsx +25 -0
  270. package/src/models/data/storefront/theme-localization/index.tsx +31 -0
  271. package/src/models/data/theme-json/component/index.ts +41 -0
  272. package/src/models/data/theme-json/component/prop/index.ts +55 -0
  273. package/src/models/data/theme-json/custom-data/index.ts +132 -0
  274. package/src/models/data/theme-json/index.ts +210 -0
  275. package/src/models/data/theme-json/page/component/index.ts +22 -0
  276. package/src/models/data/theme-json/page/index.ts +54 -0
  277. package/src/models/data/theme-json/settings/color/index.ts +35 -0
  278. package/src/models/data/theme-json/settings/favicon/index.ts +12 -0
  279. package/src/models/data/theme-json/settings/font-family/index.ts +14 -0
  280. package/src/models/data/theme-json/settings/index.ts +30 -0
  281. package/src/models/data/variant-type/index.ts +44 -0
  282. package/src/models/data/variant-type/variant-value/index.ts +32 -0
  283. package/src/models/index.ts +2 -0
  284. package/src/models/ui/blog-category-list/index.ts +169 -0
  285. package/src/models/ui/blog-list/index.ts +175 -0
  286. package/src/models/ui/brand-list/index.ts +237 -0
  287. package/src/models/ui/category-list/index.ts +237 -0
  288. package/src/models/ui/component-renderer/index.ts +9 -0
  289. package/src/models/ui/customer-review-list/index.ts +173 -0
  290. package/src/models/ui/customer-review-summary-list/index.ts +175 -0
  291. package/src/models/ui/index.ts +40 -0
  292. package/src/models/ui/navigation-link/index.ts +23 -0
  293. package/src/models/ui/product-attribute-detail/index.ts +29 -0
  294. package/src/models/ui/product-attribute-list/index.ts +52 -0
  295. package/src/models/ui/product-list/index.ts +998 -0
  296. package/src/models/ui/raffle-list/index.ts +178 -0
  297. package/src/models/ui/validator/form/account-info.ts +167 -0
  298. package/src/models/ui/validator/form/address.ts +490 -0
  299. package/src/models/ui/validator/form/contact-form.ts +177 -0
  300. package/src/models/ui/validator/form/customer-review.ts +132 -0
  301. package/src/models/ui/validator/form/forgot-password.ts +96 -0
  302. package/src/models/ui/validator/form/login.ts +128 -0
  303. package/src/models/ui/validator/form/raffle-form.ts +276 -0
  304. package/src/models/ui/validator/form/recover-password.ts +148 -0
  305. package/src/models/ui/validator/form/register.ts +206 -0
  306. package/src/models/ui/validator/index.ts +121 -0
  307. package/src/models/ui/validator/rules/index.ts +310 -0
  308. package/src/page-data-init/index.ts +904 -0
  309. package/src/pages/404.tsx +10 -0
  310. package/src/pages/[slug]/index.tsx +9 -0
  311. package/src/pages/account/addresses.tsx +10 -0
  312. package/src/pages/account/favorite-products.tsx +9 -0
  313. package/src/pages/account/forgot-password.tsx +9 -0
  314. package/src/pages/account/index.tsx +9 -0
  315. package/src/pages/account/login.tsx +9 -0
  316. package/src/pages/account/orders/[id].tsx +9 -0
  317. package/src/pages/account/orders/index.tsx +9 -0
  318. package/src/pages/account/raffles.tsx +9 -0
  319. package/src/pages/account/recover-password.tsx +9 -0
  320. package/src/pages/account/register.tsx +9 -0
  321. package/src/pages/blog/[slug].tsx +9 -0
  322. package/src/pages/blog/index.tsx +9 -0
  323. package/src/pages/cart.tsx +9 -0
  324. package/src/pages/checkout.tsx +163 -0
  325. package/src/pages/editor.tsx +30 -0
  326. package/src/pages/home.tsx +10 -0
  327. package/src/pages/index.ts +22 -0
  328. package/src/pages/pages/[slug].tsx +9 -0
  329. package/src/pages/raffle/[slug].tsx +9 -0
  330. package/src/pages/raffle/index.tsx +9 -0
  331. package/src/pages/search.tsx +9 -0
  332. package/src/store/base.ts +238 -0
  333. package/src/store/blog/index.ts +49 -0
  334. package/src/store/brand/index.ts +16 -0
  335. package/src/store/cart/api.ts +58 -0
  336. package/src/store/cart/index.ts +311 -0
  337. package/src/store/category/index.ts +16 -0
  338. package/src/store/checkout/index.ts +92 -0
  339. package/src/store/customer/api.ts +273 -0
  340. package/src/store/customer/index.ts +658 -0
  341. package/src/store/html-meta-data/index.ts +16 -0
  342. package/src/store/index.ts +1 -0
  343. package/src/store/location/index.ts +56 -0
  344. package/src/store/merchant/index.ts +16 -0
  345. package/src/store/product/index.ts +113 -0
  346. package/src/store/raffle/index.ts +58 -0
  347. package/src/store/storefront/index.ts +18 -0
  348. package/src/typings/global.d.ts +7 -0
  349. package/src/utils/constants.ts +2 -0
  350. package/src/utils/currency.ts +250 -0
  351. package/src/utils/google-fonts.ts +52 -0
  352. package/src/utils/helper.ts +77 -0
  353. package/src/utils/i18n.ts +126 -0
  354. package/src/utils/index.ts +3 -0
  355. package/build/_virtual/_commonjsHelpers.js +0 -1
  356. package/build/_virtual/axios.js +0 -1
  357. package/build/_virtual/index.js +0 -1
  358. package/build/_virtual/index2.js +0 -1
  359. package/build/_virtual/index3.js +0 -1
  360. package/build/_virtual/react-is.development.js +0 -1
  361. package/build/_virtual/react-is.production.min.js +0 -1
  362. package/build/_virtual/react-stripe.umd.js +0 -1
  363. package/build/analytics/analytics.d.ts +0 -37
  364. package/build/analytics/analytics.js +0 -1
  365. package/build/analytics/events.d.ts +0 -37
  366. package/build/analytics/events.js +0 -1
  367. package/build/analytics/facebookPixel.d.ts +0 -15
  368. package/build/analytics/facebookPixel.js +0 -1
  369. package/build/analytics/googleAnalytics.d.ts +0 -13
  370. package/build/analytics/googleAnalytics.js +0 -1
  371. package/build/analytics/googleTagManager.d.ts +0 -203
  372. package/build/analytics/googleTagManager.js +0 -1
  373. package/build/analytics/googleUniversal.d.ts +0 -9
  374. package/build/analytics/googleUniversal.js +0 -1
  375. package/build/analytics/head/index.d.ts +0 -7
  376. package/build/analytics/head/index.js +0 -1
  377. package/build/analytics/ikas.d.ts +0 -134
  378. package/build/analytics/ikas.js +0 -1
  379. package/build/analytics/index.d.ts +0 -2
  380. package/build/analytics/tiktokPixel.d.ts +0 -13
  381. package/build/analytics/tiktokPixel.js +0 -1
  382. package/build/components/checkout/components/address-form/index.d.ts +0 -3
  383. package/build/components/checkout/components/address-form/index.js +0 -1
  384. package/build/components/checkout/components/address-form/model.d.ts +0 -87
  385. package/build/components/checkout/components/address-form/model.js +0 -1
  386. package/build/components/checkout/components/button/index.d.ts +0 -13
  387. package/build/components/checkout/components/button/index.js +0 -1
  388. package/build/components/checkout/components/button/style.module.scss.js +0 -1
  389. package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +0 -10
  390. package/build/components/checkout/components/cart-summary/cart-item/index.js +0 -1
  391. package/build/components/checkout/components/cart-summary/cart-item/style.module.scss.js +0 -1
  392. package/build/components/checkout/components/cart-summary/index.d.ts +0 -8
  393. package/build/components/checkout/components/cart-summary/index.js +0 -1
  394. package/build/components/checkout/components/cart-summary/style.module.scss.js +0 -1
  395. package/build/components/checkout/components/checkbox/check.d.ts +0 -6
  396. package/build/components/checkout/components/checkbox/check.js +0 -1
  397. package/build/components/checkout/components/checkbox/index.d.ts +0 -10
  398. package/build/components/checkout/components/checkbox/index.js +0 -1
  399. package/build/components/checkout/components/checkbox/style.module.scss.js +0 -1
  400. package/build/components/checkout/components/credit-card-form/index.d.ts +0 -7
  401. package/build/components/checkout/components/credit-card-form/index.js +0 -1
  402. package/build/components/checkout/components/credit-card-form/model.d.ts +0 -26
  403. package/build/components/checkout/components/credit-card-form/model.js +0 -1
  404. package/build/components/checkout/components/credit-card-form/style.module.scss.js +0 -1
  405. package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +0 -6
  406. package/build/components/checkout/components/credit-card-form/svg/amex.js +0 -1
  407. package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +0 -6
  408. package/build/components/checkout/components/credit-card-form/svg/master-card.js +0 -1
  409. package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +0 -6
  410. package/build/components/checkout/components/credit-card-form/svg/troy.js +0 -1
  411. package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +0 -6
  412. package/build/components/checkout/components/credit-card-form/svg/visa.js +0 -1
  413. package/build/components/checkout/components/customer-addresses/index.d.ts +0 -19
  414. package/build/components/checkout/components/customer-addresses/index.js +0 -1
  415. package/build/components/checkout/components/customer-addresses/model.d.ts +0 -21
  416. package/build/components/checkout/components/customer-addresses/model.js +0 -1
  417. package/build/components/checkout/components/customer-addresses/style.module.scss.js +0 -1
  418. package/build/components/checkout/components/delivery-methods/icon-button/index.d.ts +0 -10
  419. package/build/components/checkout/components/delivery-methods/icon-button/index.js +0 -1
  420. package/build/components/checkout/components/delivery-methods/icon-button/style.module.scss.js +0 -1
  421. package/build/components/checkout/components/delivery-methods/icons/box.d.ts +0 -6
  422. package/build/components/checkout/components/delivery-methods/icons/box.js +0 -1
  423. package/build/components/checkout/components/delivery-methods/icons/store.d.ts +0 -6
  424. package/build/components/checkout/components/delivery-methods/icons/store.js +0 -1
  425. package/build/components/checkout/components/delivery-methods/index.d.ts +0 -7
  426. package/build/components/checkout/components/delivery-methods/index.js +0 -1
  427. package/build/components/checkout/components/delivery-methods/style.module.scss.js +0 -1
  428. package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +0 -8
  429. package/build/components/checkout/components/error/customer-login-required-error/index.js +0 -1
  430. package/build/components/checkout/components/error/index.d.ts +0 -7
  431. package/build/components/checkout/components/error/index.js +0 -1
  432. package/build/components/checkout/components/error/no-shipping-error/index.d.ts +0 -3
  433. package/build/components/checkout/components/error/no-shipping-error/index.js +0 -1
  434. package/build/components/checkout/components/error/payment-error/index.d.ts +0 -8
  435. package/build/components/checkout/components/error/payment-error/index.js +0 -1
  436. package/build/components/checkout/components/error/stock-error/index.d.ts +0 -8
  437. package/build/components/checkout/components/error/stock-error/index.js +0 -1
  438. package/build/components/checkout/components/error/stock-error/style.module.scss.js +0 -1
  439. package/build/components/checkout/components/error/unknown-error/index.d.ts +0 -8
  440. package/build/components/checkout/components/error/unknown-error/index.js +0 -1
  441. package/build/components/checkout/components/expandable-section/index.d.ts +0 -6
  442. package/build/components/checkout/components/expandable-section/index.js +0 -1
  443. package/build/components/checkout/components/expandable-section/style.module.scss.js +0 -1
  444. package/build/components/checkout/components/form-item/caret-down.d.ts +0 -6
  445. package/build/components/checkout/components/form-item/caret-down.js +0 -1
  446. package/build/components/checkout/components/form-item/index.d.ts +0 -3
  447. package/build/components/checkout/components/form-item/index.js +0 -1
  448. package/build/components/checkout/components/form-item/model.d.ts +0 -61
  449. package/build/components/checkout/components/form-item/model.js +0 -1
  450. package/build/components/checkout/components/form-item/style.module.scss.js +0 -1
  451. package/build/components/checkout/components/fullscreen-loading/index.d.ts +0 -2
  452. package/build/components/checkout/components/fullscreen-loading/index.js +0 -1
  453. package/build/components/checkout/components/fullscreen-loading/style.module.scss.js +0 -1
  454. package/build/components/checkout/components/input-with-button/index.d.ts +0 -11
  455. package/build/components/checkout/components/input-with-button/index.js +0 -1
  456. package/build/components/checkout/components/input-with-button/style.module.scss.js +0 -1
  457. package/build/components/checkout/components/klarna/index.d.ts +0 -7
  458. package/build/components/checkout/components/klarna/index.js +0 -1
  459. package/build/components/checkout/components/master-pass/credit-card-form/index.d.ts +0 -8
  460. package/build/components/checkout/components/master-pass/credit-card-form/index.js +0 -1
  461. package/build/components/checkout/components/master-pass/credit-card-form/style.module.scss.js +0 -1
  462. package/build/components/checkout/components/master-pass/modal/index.d.ts +0 -11
  463. package/build/components/checkout/components/master-pass/modal/index.js +0 -1
  464. package/build/components/checkout/components/master-pass/modal/style.module.scss.js +0 -1
  465. package/build/components/checkout/components/master-pass/modal/svg/modal-close.d.ts +0 -2
  466. package/build/components/checkout/components/master-pass/modal/svg/modal-close.js +0 -1
  467. package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.d.ts +0 -10
  468. package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.js +0 -1
  469. package/build/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss.js +0 -1
  470. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.d.ts +0 -2
  471. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.js +0 -1
  472. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.d.ts +0 -2
  473. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.js +0 -1
  474. package/build/components/checkout/components/master-pass/modal-otp/index.d.ts +0 -10
  475. package/build/components/checkout/components/master-pass/modal-otp/index.js +0 -1
  476. package/build/components/checkout/components/master-pass/modal-otp/style.module.scss.js +0 -1
  477. package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.d.ts +0 -2
  478. package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.js +0 -1
  479. package/build/components/checkout/components/master-pass/modal-response/index.d.ts +0 -9
  480. package/build/components/checkout/components/master-pass/modal-response/index.js +0 -1
  481. package/build/components/checkout/components/master-pass/modal-response/style.module.scss.js +0 -1
  482. package/build/components/checkout/components/master-pass/modal-success/index.d.ts +0 -10
  483. package/build/components/checkout/components/master-pass/modal-success/index.js +0 -1
  484. package/build/components/checkout/components/master-pass/modal-success/style.module.scss.js +0 -1
  485. package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.d.ts +0 -2
  486. package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.js +0 -1
  487. package/build/components/checkout/components/master-pass/modal-success/svg/success.d.ts +0 -2
  488. package/build/components/checkout/components/master-pass/modal-success/svg/success.js +0 -1
  489. package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.d.ts +0 -2
  490. package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.js +0 -1
  491. package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.d.ts +0 -3
  492. package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.js +0 -1
  493. package/build/components/checkout/components/modal/index.d.ts +0 -8
  494. package/build/components/checkout/components/modal/index.js +0 -1
  495. package/build/components/checkout/components/modal/style.module.scss.js +0 -1
  496. package/build/components/checkout/components/modal/useEscape.d.ts +0 -5
  497. package/build/components/checkout/components/modal/useEscape.js +0 -1
  498. package/build/components/checkout/components/notification-box/index.d.ts +0 -9
  499. package/build/components/checkout/components/notification-box/index.js +0 -1
  500. package/build/components/checkout/components/notification-box/style.module.scss.js +0 -1
  501. package/build/components/checkout/components/offer-product/index.d.ts +0 -8
  502. package/build/components/checkout/components/offer-product/index.js +0 -1
  503. package/build/components/checkout/components/offer-product/select/arrows.d.ts +0 -6
  504. package/build/components/checkout/components/offer-product/select/arrows.js +0 -1
  505. package/build/components/checkout/components/offer-product/select/index.d.ts +0 -11
  506. package/build/components/checkout/components/offer-product/select/index.js +0 -1
  507. package/build/components/checkout/components/offer-product/select/style.module.scss.js +0 -1
  508. package/build/components/checkout/components/offer-product/style.module.scss.js +0 -1
  509. package/build/components/checkout/components/phone-number-input/compare-strings.d.ts +0 -2
  510. package/build/components/checkout/components/phone-number-input/compare-strings.js +0 -1
  511. package/build/components/checkout/components/phone-number-input/get-countries.d.ts +0 -7
  512. package/build/components/checkout/components/phone-number-input/get-countries.js +0 -1
  513. package/build/components/checkout/components/phone-number-input/index.d.ts +0 -10
  514. package/build/components/checkout/components/phone-number-input/index.js +0 -1
  515. package/build/components/checkout/components/phone-number-input/style.module.scss.js +0 -1
  516. package/build/components/checkout/components/select-box/index.d.ts +0 -13
  517. package/build/components/checkout/components/select-box/index.js +0 -1
  518. package/build/components/checkout/components/select-box/style.module.scss.js +0 -1
  519. package/build/components/checkout/components/step-container/index.d.ts +0 -15
  520. package/build/components/checkout/components/step-container/index.js +0 -1
  521. package/build/components/checkout/components/step-container/style.module.scss.js +0 -1
  522. package/build/components/checkout/components/stripe/checkout-form.d.ts +0 -8
  523. package/build/components/checkout/components/stripe/checkout-form.js +0 -1
  524. package/build/components/checkout/components/stripe/index.d.ts +0 -9
  525. package/build/components/checkout/components/stripe/index.js +0 -1
  526. package/build/components/checkout/components/stripe/style.module.scss.js +0 -1
  527. package/build/components/checkout/components/svg/arrow-down.d.ts +0 -6
  528. package/build/components/checkout/components/svg/arrow-down.js +0 -1
  529. package/build/components/checkout/components/svg/arrow-left.d.ts +0 -6
  530. package/build/components/checkout/components/svg/arrow-right.d.ts +0 -6
  531. package/build/components/checkout/components/svg/cross.d.ts +0 -6
  532. package/build/components/checkout/components/svg/cross.js +0 -1
  533. package/build/components/checkout/components/svg/discount.d.ts +0 -6
  534. package/build/components/checkout/components/svg/external.d.ts +0 -6
  535. package/build/components/checkout/components/svg/external.js +0 -1
  536. package/build/components/checkout/components/svg/gift.d.ts +0 -7
  537. package/build/components/checkout/components/svg/gift.js +0 -1
  538. package/build/components/checkout/components/svg/ikas.d.ts +0 -6
  539. package/build/components/checkout/components/svg/ikas.js +0 -1
  540. package/build/components/checkout/components/svg/lock.d.ts +0 -6
  541. package/build/components/checkout/components/svg/lock.js +0 -1
  542. package/build/components/checkout/components/svg/shopping-cart.d.ts +0 -6
  543. package/build/components/checkout/components/svg/success-circle.d.ts +0 -6
  544. package/build/components/checkout/components/svg/success-circle.js +0 -1
  545. package/build/components/checkout/components/svg/tag.d.ts +0 -6
  546. package/build/components/checkout/components/svg/warning.d.ts +0 -6
  547. package/build/components/checkout/components/svg/warning.js +0 -1
  548. package/build/components/checkout/components/toggle/index.d.ts +0 -10
  549. package/build/components/checkout/components/toggle/index.js +0 -1
  550. package/build/components/checkout/components/toggle/style.module.scss.js +0 -1
  551. package/build/components/checkout/components/tooltip/index.d.ts +0 -8
  552. package/build/components/checkout/components/tooltip/index.js +0 -1
  553. package/build/components/checkout/components/tooltip/style.module.scss.js +0 -1
  554. package/build/components/checkout/index.d.ts +0 -34
  555. package/build/components/checkout/index.js +0 -1
  556. package/build/components/checkout/model.d.ts +0 -173
  557. package/build/components/checkout/model.js +0 -1
  558. package/build/components/checkout/modelMasterPass.d.ts +0 -201
  559. package/build/components/checkout/modelMasterPass.js +0 -1
  560. package/build/components/checkout/steps/step-info/index.d.ts +0 -7
  561. package/build/components/checkout/steps/step-info/index.js +0 -1
  562. package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +0 -7
  563. package/build/components/checkout/steps/step-payment/billing-address/index.js +0 -1
  564. package/build/components/checkout/steps/step-payment/index.d.ts +0 -7
  565. package/build/components/checkout/steps/step-payment/index.js +0 -1
  566. package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +0 -7
  567. package/build/components/checkout/steps/step-payment/payment-gateways/index.js +0 -1
  568. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +0 -7
  569. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.js +0 -1
  570. package/build/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss.js +0 -1
  571. package/build/components/checkout/steps/step-payment/payment-gateways/style.module.scss.js +0 -1
  572. package/build/components/checkout/steps/step-payment/style.module.scss.js +0 -1
  573. package/build/components/checkout/steps/step-shipping/index.d.ts +0 -7
  574. package/build/components/checkout/steps/step-shipping/index.js +0 -1
  575. package/build/components/checkout/steps/step-shipping/style.module.scss.js +0 -1
  576. package/build/components/checkout/steps/step-success/index.d.ts +0 -7
  577. package/build/components/checkout/steps/step-success/index.js +0 -1
  578. package/build/components/checkout/steps/step-success/style.module.scss.js +0 -1
  579. package/build/components/checkout/style.module.scss.js +0 -1
  580. package/build/components/checkout/styles/common.module.scss.js +0 -1
  581. package/build/components/google-captcha/index.d.ts +0 -9
  582. package/build/components/google-captcha/index.js +0 -1
  583. package/build/components/image/index.d.ts +0 -10
  584. package/build/components/image/index.js +0 -1
  585. package/build/components/index.d.ts +0 -6
  586. package/build/components/link/index.d.ts +0 -16
  587. package/build/components/link/index.js +0 -1
  588. package/build/components/page/ThemeComponent.d.ts +0 -21
  589. package/build/components/page/ThemeComponent.js +0 -1
  590. package/build/components/page/head.d.ts +0 -15
  591. package/build/components/page/head.js +0 -1
  592. package/build/components/page/index.d.ts +0 -23
  593. package/build/components/page/index.js +0 -1
  594. package/build/components/page-editor/ThemeComponentEditor.d.ts +0 -32
  595. package/build/components/page-editor/ThemeComponentEditor.js +0 -1
  596. package/build/components/page-editor/error/index.d.ts +0 -4
  597. package/build/components/page-editor/error/index.js +0 -1
  598. package/build/components/page-editor/index.d.ts +0 -4
  599. package/build/components/page-editor/index.js +0 -1
  600. package/build/components/page-editor/loader/index.d.ts +0 -6
  601. package/build/components/page-editor/loader/index.js +0 -1
  602. package/build/components/page-editor/loader/style.module.scss.js +0 -1
  603. package/build/components/page-editor/model.d.ts +0 -75
  604. package/build/components/page-editor/model.js +0 -1
  605. package/build/ext/@ikas/fe-api-client/build/_virtual/_commonjsHelpers.js +0 -1
  606. package/build/ext/@ikas/fe-api-client/build/_virtual/axios-error-format.js +0 -1
  607. package/build/ext/@ikas/fe-api-client/build/_virtual/core.js +0 -1
  608. package/build/ext/@ikas/fe-api-client/build/_virtual/index.js +0 -1
  609. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/axios-error-format.js +0 -1
  610. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/core.js +0 -1
  611. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.js +0 -1
  612. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.mjs.js +0 -1
  613. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Hash.js +0 -1
  614. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_ListCache.js +0 -1
  615. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Map.js +0 -1
  616. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_MapCache.js +0 -1
  617. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Symbol.js +0 -1
  618. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_assocIndexOf.js +0 -1
  619. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseGetTag.js +0 -1
  620. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseIsNative.js +0 -1
  621. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseToString.js +0 -1
  622. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_coreJsData.js +0 -1
  623. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_defineProperty.js +0 -1
  624. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_freeGlobal.js +0 -1
  625. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getMapData.js +0 -1
  626. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getNative.js +0 -1
  627. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getRawTag.js +0 -1
  628. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getValue.js +0 -1
  629. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashClear.js +0 -1
  630. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashDelete.js +0 -1
  631. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashGet.js +0 -1
  632. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashHas.js +0 -1
  633. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashSet.js +0 -1
  634. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isKeyable.js +0 -1
  635. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isMasked.js +0 -1
  636. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheClear.js +0 -1
  637. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheDelete.js +0 -1
  638. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheGet.js +0 -1
  639. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheHas.js +0 -1
  640. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheSet.js +0 -1
  641. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheClear.js +0 -1
  642. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheDelete.js +0 -1
  643. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheGet.js +0 -1
  644. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheHas.js +0 -1
  645. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheSet.js +0 -1
  646. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_memoizeCapped.js +0 -1
  647. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_nativeCreate.js +0 -1
  648. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_objectToString.js +0 -1
  649. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_root.js +0 -1
  650. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_stringToPath.js +0 -1
  651. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_toSource.js +0 -1
  652. package/build/ext/@ikas/fe-api-client/build/ext/lodash/eq.js +0 -1
  653. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isFunction.js +0 -1
  654. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isObject.js +0 -1
  655. package/build/ext/@ikas/fe-api-client/build/ext/lodash/memoize.js +0 -1
  656. package/build/ext/@ikas/fe-api-client/build/utils/api.js +0 -1
  657. package/build/ext/@stripe/react-stripe-js/dist/react-stripe.umd.js +0 -1
  658. package/build/ext/@stripe/stripe-js/dist/stripe.esm.js +0 -1
  659. package/build/ext/axios/index.js +0 -1
  660. package/build/ext/axios/lib/adapters/xhr.js +0 -1
  661. package/build/ext/axios/lib/axios.js +0 -1
  662. package/build/ext/axios/lib/cancel/Cancel.js +0 -1
  663. package/build/ext/axios/lib/cancel/CancelToken.js +0 -1
  664. package/build/ext/axios/lib/cancel/isCancel.js +0 -1
  665. package/build/ext/axios/lib/core/Axios.js +0 -1
  666. package/build/ext/axios/lib/core/InterceptorManager.js +0 -1
  667. package/build/ext/axios/lib/core/buildFullPath.js +0 -1
  668. package/build/ext/axios/lib/core/createError.js +0 -1
  669. package/build/ext/axios/lib/core/dispatchRequest.js +0 -1
  670. package/build/ext/axios/lib/core/enhanceError.js +0 -1
  671. package/build/ext/axios/lib/core/mergeConfig.js +0 -1
  672. package/build/ext/axios/lib/core/settle.js +0 -1
  673. package/build/ext/axios/lib/core/transformData.js +0 -1
  674. package/build/ext/axios/lib/defaults/index.js +0 -1
  675. package/build/ext/axios/lib/defaults/transitional.js +0 -1
  676. package/build/ext/axios/lib/env/data.js +0 -1
  677. package/build/ext/axios/lib/helpers/bind.js +0 -1
  678. package/build/ext/axios/lib/helpers/buildURL.js +0 -1
  679. package/build/ext/axios/lib/helpers/combineURLs.js +0 -1
  680. package/build/ext/axios/lib/helpers/cookies.js +0 -1
  681. package/build/ext/axios/lib/helpers/isAbsoluteURL.js +0 -1
  682. package/build/ext/axios/lib/helpers/isAxiosError.js +0 -1
  683. package/build/ext/axios/lib/helpers/isURLSameOrigin.js +0 -1
  684. package/build/ext/axios/lib/helpers/normalizeHeaderName.js +0 -1
  685. package/build/ext/axios/lib/helpers/parseHeaders.js +0 -1
  686. package/build/ext/axios/lib/helpers/spread.js +0 -1
  687. package/build/ext/axios/lib/helpers/validator.js +0 -1
  688. package/build/ext/axios/lib/utils.js +0 -1
  689. package/build/ext/libphonenumber-js/es6/AsYouType.js +0 -1
  690. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +0 -1
  691. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +0 -1
  692. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.js +0 -1
  693. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.util.js +0 -1
  694. package/build/ext/libphonenumber-js/es6/AsYouTypeParser.js +0 -1
  695. package/build/ext/libphonenumber-js/es6/AsYouTypeState.js +0 -1
  696. package/build/ext/libphonenumber-js/es6/ParseError.js +0 -1
  697. package/build/ext/libphonenumber-js/es6/PhoneNumber.js +0 -1
  698. package/build/ext/libphonenumber-js/es6/PhoneNumberMatcher.js +0 -1
  699. package/build/ext/libphonenumber-js/es6/constants.js +0 -1
  700. package/build/ext/libphonenumber-js/es6/findNumbers/LRUCache.js +0 -1
  701. package/build/ext/libphonenumber-js/es6/findNumbers/Leniency.js +0 -1
  702. package/build/ext/libphonenumber-js/es6/findNumbers/RegExpCache.js +0 -1
  703. package/build/ext/libphonenumber-js/es6/findNumbers/isValidCandidate.js +0 -1
  704. package/build/ext/libphonenumber-js/es6/findNumbers/isValidPreCandidate.js +0 -1
  705. package/build/ext/libphonenumber-js/es6/findNumbers/parsePreCandidate.js +0 -1
  706. package/build/ext/libphonenumber-js/es6/findNumbers/utf-8.js +0 -1
  707. package/build/ext/libphonenumber-js/es6/findNumbers/util.js +0 -1
  708. package/build/ext/libphonenumber-js/es6/findPhoneNumbers_.js +0 -1
  709. package/build/ext/libphonenumber-js/es6/formatIncompletePhoneNumber.js +0 -1
  710. package/build/ext/libphonenumber-js/es6/format_.js +0 -1
  711. package/build/ext/libphonenumber-js/es6/getCountries.js +0 -1
  712. package/build/ext/libphonenumber-js/es6/helpers/RFC3966.js +0 -1
  713. package/build/ext/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +0 -1
  714. package/build/ext/libphonenumber-js/es6/helpers/checkNumberLength.js +0 -1
  715. package/build/ext/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +0 -1
  716. package/build/ext/libphonenumber-js/es6/helpers/extension/extractExtension.js +0 -1
  717. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +0 -1
  718. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +0 -1
  719. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumber.js +0 -1
  720. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +0 -1
  721. package/build/ext/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +0 -1
  722. package/build/ext/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +0 -1
  723. package/build/ext/libphonenumber-js/es6/helpers/getIddPrefix.js +0 -1
  724. package/build/ext/libphonenumber-js/es6/helpers/getNumberType.js +0 -1
  725. package/build/ext/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +0 -1
  726. package/build/ext/libphonenumber-js/es6/helpers/matchesEntirely.js +0 -1
  727. package/build/ext/libphonenumber-js/es6/helpers/mergeArrays.js +0 -1
  728. package/build/ext/libphonenumber-js/es6/helpers/parseDigits.js +0 -1
  729. package/build/ext/libphonenumber-js/es6/helpers/stripIddPrefix.js +0 -1
  730. package/build/ext/libphonenumber-js/es6/isPossibleNumber_.js +0 -1
  731. package/build/ext/libphonenumber-js/es6/metadata.js +0 -1
  732. package/build/ext/libphonenumber-js/es6/parseIncompletePhoneNumber.js +0 -1
  733. package/build/ext/libphonenumber-js/es6/parsePhoneNumber.js +0 -1
  734. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString.js +0 -1
  735. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString_.js +0 -1
  736. package/build/ext/libphonenumber-js/es6/parsePhoneNumber_.js +0 -1
  737. package/build/ext/libphonenumber-js/es6/parse_.js +0 -1
  738. package/build/ext/libphonenumber-js/es6/tools/semver-compare.js +0 -1
  739. package/build/ext/libphonenumber-js/es6/validate_.js +0 -1
  740. package/build/ext/libphonenumber-js/index.es6.exports/PhoneNumberSearch.js +0 -1
  741. package/build/ext/libphonenumber-js/metadata.min.json.js +0 -1
  742. package/build/ext/libphonenumber-js/min/exports/AsYouType.js +0 -1
  743. package/build/ext/libphonenumber-js/min/exports/Metadata.js +0 -1
  744. package/build/ext/libphonenumber-js/min/exports/PhoneNumberMatcher.js +0 -1
  745. package/build/ext/libphonenumber-js/min/exports/formatIncompletePhoneNumber.js +0 -1
  746. package/build/ext/libphonenumber-js/min/exports/getCountries.js +0 -1
  747. package/build/ext/libphonenumber-js/min/exports/getCountryCallingCode.js +0 -1
  748. package/build/ext/libphonenumber-js/min/exports/parsePhoneNumberFromString.js +0 -1
  749. package/build/ext/libphonenumber-js/min/exports/withMetadataArgument.js +0 -1
  750. package/build/ext/object-assign/index.js +0 -6
  751. package/build/ext/prop-types/checkPropTypes.js +0 -1
  752. package/build/ext/prop-types/factoryWithThrowingShims.js +0 -1
  753. package/build/ext/prop-types/factoryWithTypeCheckers.js +0 -1
  754. package/build/ext/prop-types/index.js +0 -1
  755. package/build/ext/prop-types/lib/ReactPropTypesSecret.js +0 -1
  756. package/build/ext/prop-types/lib/has.js +0 -1
  757. package/build/ext/react-is/cjs/react-is.development.js +0 -9
  758. package/build/ext/react-is/cjs/react-is.production.min.js +0 -9
  759. package/build/ext/react-is/index.js +0 -1
  760. package/build/ext/react-tooltip/dist/index.es.js +0 -1
  761. package/build/ext/style-inject/dist/style-inject.es.js +0 -1
  762. package/build/ext/tslib/tslib.es6.js +0 -1
  763. package/build/ext/uuid/dist/esm-browser/bytesToUuid.js +0 -1
  764. package/build/ext/uuid/dist/esm-browser/md5.js +0 -1
  765. package/build/ext/uuid/dist/esm-browser/rng.js +0 -1
  766. package/build/ext/uuid/dist/esm-browser/sha1.js +0 -1
  767. package/build/ext/uuid/dist/esm-browser/v3.js +0 -1
  768. package/build/ext/uuid/dist/esm-browser/v35.js +0 -1
  769. package/build/ext/uuid/dist/esm-browser/v4.js +0 -1
  770. package/build/ext/uuid/dist/esm-browser/v5.js +0 -1
  771. package/build/index.d.ts +0 -6
  772. package/build/index.js +0 -1
  773. package/build/models/data/base/index.d.ts +0 -8
  774. package/build/models/data/base/index.js +0 -1
  775. package/build/models/data/blog/category/index.d.ts +0 -12
  776. package/build/models/data/blog/category/index.js +0 -1
  777. package/build/models/data/blog/content/index.d.ts +0 -6
  778. package/build/models/data/blog/content/index.js +0 -1
  779. package/build/models/data/blog/index.d.ts +0 -27
  780. package/build/models/data/blog/index.js +0 -1
  781. package/build/models/data/blog/meta-data/index.d.ts +0 -16
  782. package/build/models/data/blog/meta-data/index.js +0 -1
  783. package/build/models/data/blog/tag/index.d.ts +0 -6
  784. package/build/models/data/blog/tag/index.js +0 -1
  785. package/build/models/data/blog/writer/index.d.ts +0 -6
  786. package/build/models/data/blog/writer/index.js +0 -1
  787. package/build/models/data/brand/index.d.ts +0 -26
  788. package/build/models/data/brand/index.js +0 -1
  789. package/build/models/data/brand/translation/index.d.ts +0 -7
  790. package/build/models/data/brand/translation/index.js +0 -1
  791. package/build/models/data/campaign-offer/index.d.ts +0 -21
  792. package/build/models/data/campaign-offer/index.js +0 -1
  793. package/build/models/data/campaign-offer/product/index.d.ts +0 -24
  794. package/build/models/data/campaign-offer/product/index.js +0 -1
  795. package/build/models/data/cart/available-shipping-method/index.d.ts +0 -10
  796. package/build/models/data/cart/available-shipping-method/index.js +0 -1
  797. package/build/models/data/cart/campaign-offer/index.d.ts +0 -16
  798. package/build/models/data/cart/campaign-offer/index.js +0 -1
  799. package/build/models/data/cart/index.d.ts +0 -13
  800. package/build/models/data/cart/index.js +0 -1
  801. package/build/models/data/category/index.d.ts +0 -22
  802. package/build/models/data/category/index.js +0 -1
  803. package/build/models/data/category/path-item/index.d.ts +0 -14
  804. package/build/models/data/category/path-item/index.js +0 -1
  805. package/build/models/data/category/translations/index.d.ts +0 -7
  806. package/build/models/data/category/translations/index.js +0 -1
  807. package/build/models/data/checkout/index.d.ts +0 -22
  808. package/build/models/data/checkout/index.js +0 -1
  809. package/build/models/data/checkout-settings/index.d.ts +0 -20
  810. package/build/models/data/checkout-settings/index.js +0 -1
  811. package/build/models/data/checkout-settings/option/index.d.ts +0 -6
  812. package/build/models/data/checkout-settings/option/index.js +0 -1
  813. package/build/models/data/checkout-settings/price/index.d.ts +0 -7
  814. package/build/models/data/checkout-settings/price/index.js +0 -1
  815. package/build/models/data/city/index.d.ts +0 -12
  816. package/build/models/data/city/index.js +0 -1
  817. package/build/models/data/contact-form/index.d.ts +0 -9
  818. package/build/models/data/contact-form/index.js +0 -1
  819. package/build/models/data/country/index.d.ts +0 -18
  820. package/build/models/data/country/index.js +0 -1
  821. package/build/models/data/country/location-translations/index.d.ts +0 -7
  822. package/build/models/data/customer/address/city/index.d.ts +0 -7
  823. package/build/models/data/customer/address/city/index.js +0 -1
  824. package/build/models/data/customer/address/country/index.d.ts +0 -9
  825. package/build/models/data/customer/address/country/index.js +0 -1
  826. package/build/models/data/customer/address/district/index.d.ts +0 -7
  827. package/build/models/data/customer/address/district/index.js +0 -1
  828. package/build/models/data/customer/address/index.d.ts +0 -40
  829. package/build/models/data/customer/address/index.js +0 -1
  830. package/build/models/data/customer/address/state/index.d.ts +0 -7
  831. package/build/models/data/customer/address/state/index.js +0 -1
  832. package/build/models/data/customer/attribute/index.d.ts +0 -17
  833. package/build/models/data/customer/attribute/index.js +0 -1
  834. package/build/models/data/customer/attribute/option/index.d.ts +0 -9
  835. package/build/models/data/customer/attribute/option/index.js +0 -1
  836. package/build/models/data/customer/attribute/sales-channel/index.d.ts +0 -8
  837. package/build/models/data/customer/attribute/sales-channel/index.js +0 -1
  838. package/build/models/data/customer/attribute/translation/index.d.ts +0 -9
  839. package/build/models/data/customer/attribute/translation/index.js +0 -1
  840. package/build/models/data/customer/attribute/translation/option/index.d.ts +0 -6
  841. package/build/models/data/customer/attribute/translation/option/index.js +0 -1
  842. package/build/models/data/customer/attribute/value/index.d.ts +0 -11
  843. package/build/models/data/customer/attribute/value/index.js +0 -1
  844. package/build/models/data/customer/index.d.ts +0 -38
  845. package/build/models/data/customer/index.js +0 -1
  846. package/build/models/data/customer/review/index.d.ts +0 -22
  847. package/build/models/data/customer/review/index.js +0 -1
  848. package/build/models/data/customer/review/settings/index.d.ts +0 -6
  849. package/build/models/data/customer/review/settings/index.js +0 -1
  850. package/build/models/data/customer/review/summary/index.d.ts +0 -10
  851. package/build/models/data/customer/review/summary/index.js +0 -1
  852. package/build/models/data/customer/review/summary/star/index.d.ts +0 -6
  853. package/build/models/data/customer/review/summary/star/index.js +0 -1
  854. package/build/models/data/district/index.d.ts +0 -12
  855. package/build/models/data/district/index.js +0 -1
  856. package/build/models/data/favorite-product/index.d.ts +0 -7
  857. package/build/models/data/favorite-product/index.js +0 -1
  858. package/build/models/data/filter-category/index.d.ts +0 -12
  859. package/build/models/data/filter-category/index.js +0 -1
  860. package/build/models/data/html-meta-data/index.d.ts +0 -28
  861. package/build/models/data/html-meta-data/index.js +0 -1
  862. package/build/models/data/html-meta-data/translations/index.d.ts +0 -7
  863. package/build/models/data/html-meta-data/translations/index.js +0 -1
  864. package/build/models/data/image/index.d.ts +0 -9
  865. package/build/models/data/image/index.js +0 -1
  866. package/build/models/data/index.d.ts +0 -136
  867. package/build/models/data/last-viewed-product/index.d.ts +0 -6
  868. package/build/models/data/last-viewed-product/index.js +0 -1
  869. package/build/models/data/merchant-settings/index.d.ts +0 -12
  870. package/build/models/data/merchant-settings/index.js +0 -1
  871. package/build/models/data/order/address/city/index.d.ts +0 -7
  872. package/build/models/data/order/address/city/index.js +0 -1
  873. package/build/models/data/order/address/country/index.d.ts +0 -9
  874. package/build/models/data/order/address/country/index.js +0 -1
  875. package/build/models/data/order/address/district/index.d.ts +0 -7
  876. package/build/models/data/order/address/district/index.js +0 -1
  877. package/build/models/data/order/address/index.d.ts +0 -37
  878. package/build/models/data/order/address/index.js +0 -1
  879. package/build/models/data/order/address/state/index.d.ts +0 -7
  880. package/build/models/data/order/address/state/index.js +0 -1
  881. package/build/models/data/order/adjustment/applied-order-line/index.d.ts +0 -8
  882. package/build/models/data/order/adjustment/applied-order-line/index.js +0 -1
  883. package/build/models/data/order/adjustment/index.d.ts +0 -15
  884. package/build/models/data/order/adjustment/index.js +0 -1
  885. package/build/models/data/order/customer/index.d.ts +0 -11
  886. package/build/models/data/order/customer/index.js +0 -1
  887. package/build/models/data/order/gift-line/index.d.ts +0 -6
  888. package/build/models/data/order/gift-line/index.js +0 -1
  889. package/build/models/data/order/index.d.ts +0 -68
  890. package/build/models/data/order/index.js +0 -1
  891. package/build/models/data/order/invoice/index.d.ts +0 -12
  892. package/build/models/data/order/invoice/index.js +0 -1
  893. package/build/models/data/order/line-item/base-unit/index.d.ts +0 -9
  894. package/build/models/data/order/line-item/base-unit/index.js +0 -1
  895. package/build/models/data/order/line-item/base-unit/unit-type/index.d.ts +0 -6
  896. package/build/models/data/order/line-item/base-unit/unit-type/index.js +0 -1
  897. package/build/models/data/order/line-item/discount/index.d.ts +0 -11
  898. package/build/models/data/order/line-item/discount/index.js +0 -1
  899. package/build/models/data/order/line-item/index.d.ts +0 -45
  900. package/build/models/data/order/line-item/index.js +0 -1
  901. package/build/models/data/order/line-item/option/index.d.ts +0 -10
  902. package/build/models/data/order/line-item/option/index.js +0 -1
  903. package/build/models/data/order/line-item/option/value/index.d.ts +0 -7
  904. package/build/models/data/order/line-item/option/value/index.js +0 -1
  905. package/build/models/data/order/line-item/variant/brand/index.d.ts +0 -6
  906. package/build/models/data/order/line-item/variant/brand/index.js +0 -1
  907. package/build/models/data/order/line-item/variant/category/index.d.ts +0 -12
  908. package/build/models/data/order/line-item/variant/category/index.js +0 -1
  909. package/build/models/data/order/line-item/variant/index.d.ts +0 -30
  910. package/build/models/data/order/line-item/variant/index.js +0 -1
  911. package/build/models/data/order/line-item/variant/price/index.d.ts +0 -10
  912. package/build/models/data/order/line-item/variant/price/index.js +0 -1
  913. package/build/models/data/order/line-item/variant/unit/index.d.ts +0 -6
  914. package/build/models/data/order/line-item/variant/unit/index.js +0 -1
  915. package/build/models/data/order/line-item/variant/value/index.d.ts +0 -11
  916. package/build/models/data/order/line-item/variant/value/index.js +0 -1
  917. package/build/models/data/order/package/index.d.ts +0 -14
  918. package/build/models/data/order/package/index.js +0 -1
  919. package/build/models/data/order/package/tracking-info/index.d.ts +0 -9
  920. package/build/models/data/order/package/tracking-info/index.js +0 -1
  921. package/build/models/data/order/payment-method/index.d.ts +0 -9
  922. package/build/models/data/order/payment-method/index.js +0 -1
  923. package/build/models/data/order/refund/index.d.ts +0 -7
  924. package/build/models/data/order/refund/index.js +0 -1
  925. package/build/models/data/order/refund/line-item/index.d.ts +0 -6
  926. package/build/models/data/order/refund/line-item/index.js +0 -1
  927. package/build/models/data/order/refund/settings/index.d.ts +0 -7
  928. package/build/models/data/order/refund/settings/index.js +0 -1
  929. package/build/models/data/order/shipping-line/index.d.ts +0 -12
  930. package/build/models/data/order/shipping-line/index.js +0 -1
  931. package/build/models/data/order/tax-line/index.d.ts +0 -6
  932. package/build/models/data/order/tax-line/index.js +0 -1
  933. package/build/models/data/order/transaction/error/index.d.ts +0 -7
  934. package/build/models/data/order/transaction/error/index.js +0 -1
  935. package/build/models/data/order/transaction/index.d.ts +0 -25
  936. package/build/models/data/order/transaction/index.js +0 -1
  937. package/build/models/data/order/transaction/payment-method-detail/index.d.ts +0 -13
  938. package/build/models/data/order/transaction/payment-method-detail/index.js +0 -1
  939. package/build/models/data/order/transaction/payment-method-detail/installment-price/index.d.ts +0 -9
  940. package/build/models/data/order/transaction/payment-method-detail/installment-price/index.js +0 -1
  941. package/build/models/data/payment-gateway/additional-price/index.d.ts +0 -9
  942. package/build/models/data/payment-gateway/additional-price/index.js +0 -1
  943. package/build/models/data/payment-gateway/index.d.ts +0 -31
  944. package/build/models/data/payment-gateway/index.js +0 -1
  945. package/build/models/data/payment-gateway/settings/index.d.ts +0 -10
  946. package/build/models/data/payment-gateway/settings/index.js +0 -1
  947. package/build/models/data/payment-gateway/translation/index.d.ts +0 -7
  948. package/build/models/data/payment-gateway/translation/index.js +0 -1
  949. package/build/models/data/product/attribute/index.d.ts +0 -15
  950. package/build/models/data/product/attribute/index.js +0 -1
  951. package/build/models/data/product/attribute/option/index.d.ts +0 -6
  952. package/build/models/data/product/attribute/option/index.js +0 -1
  953. package/build/models/data/product/attribute/table-cell/index.d.ts +0 -6
  954. package/build/models/data/product/attribute/table-cell/index.js +0 -1
  955. package/build/models/data/product/attribute/table-template/index.d.ts +0 -7
  956. package/build/models/data/product/attribute/table-template/index.js +0 -1
  957. package/build/models/data/product/attribute/translation/index.d.ts +0 -13
  958. package/build/models/data/product/attribute/translation/index.js +0 -1
  959. package/build/models/data/product/attribute-value/index.d.ts +0 -28
  960. package/build/models/data/product/attribute-value/index.js +0 -1
  961. package/build/models/data/product/back-in-stock-settings/index.d.ts +0 -5
  962. package/build/models/data/product/back-in-stock-settings/index.js +0 -1
  963. package/build/models/data/product/base-unit/index.d.ts +0 -12
  964. package/build/models/data/product/base-unit/index.js +0 -1
  965. package/build/models/data/product/campaign/data/index.d.ts +0 -27
  966. package/build/models/data/product/campaign/data/index.js +0 -1
  967. package/build/models/data/product/campaign/filter/index.d.ts +0 -7
  968. package/build/models/data/product/campaign/filter/index.js +0 -1
  969. package/build/models/data/product/campaign/index.d.ts +0 -7
  970. package/build/models/data/product/campaign/index.js +0 -1
  971. package/build/models/data/product/campaign/product-buyx-then-gety/index.d.ts +0 -20
  972. package/build/models/data/product/campaign/product-buyx-then-gety/index.js +0 -1
  973. package/build/models/data/product/campaign/product-campaign-date-range-field/index.d.ts +0 -6
  974. package/build/models/data/product/campaign/product-campaign-date-range-field/index.js +0 -1
  975. package/build/models/data/product/campaign/product-fixed-discount/index.d.ts +0 -14
  976. package/build/models/data/product/campaign/product-fixed-discount/index.js +0 -1
  977. package/build/models/data/product/filter/index.d.ts +0 -84
  978. package/build/models/data/product/filter/index.js +0 -1
  979. package/build/models/data/product/image/index.d.ts +0 -10
  980. package/build/models/data/product/image/index.js +0 -1
  981. package/build/models/data/product/index.d.ts +0 -62
  982. package/build/models/data/product/index.js +0 -1
  983. package/build/models/data/product/option-set/index.d.ts +0 -29
  984. package/build/models/data/product/option-set/index.js +0 -1
  985. package/build/models/data/product/option-set/option/index.d.ts +0 -72
  986. package/build/models/data/product/option-set/option/index.js +0 -1
  987. package/build/models/data/product/tag/index.d.ts +0 -6
  988. package/build/models/data/product/tag/index.js +0 -1
  989. package/build/models/data/product/variant/index.d.ts +0 -31
  990. package/build/models/data/product/variant/index.js +0 -1
  991. package/build/models/data/product/variant/price/index.d.ts +0 -19
  992. package/build/models/data/product/variant/price/index.js +0 -1
  993. package/build/models/data/product/variant/unit/index.d.ts +0 -6
  994. package/build/models/data/product/variant/unit/index.js +0 -1
  995. package/build/models/data/product/variant-type/index.d.ts +0 -8
  996. package/build/models/data/product/variant-type/index.js +0 -1
  997. package/build/models/data/product/variant-type/init.d.ts +0 -2
  998. package/build/models/data/raffle/index.d.ts +0 -63
  999. package/build/models/data/raffle/index.js +0 -1
  1000. package/build/models/data/sales-channel/index.d.ts +0 -19
  1001. package/build/models/data/sales-channel/index.js +0 -1
  1002. package/build/models/data/state/index.d.ts +0 -8
  1003. package/build/models/data/state/index.js +0 -1
  1004. package/build/models/data/stock-location/address/city/index.d.ts +0 -7
  1005. package/build/models/data/stock-location/address/city/index.js +0 -1
  1006. package/build/models/data/stock-location/address/country/index.d.ts +0 -7
  1007. package/build/models/data/stock-location/address/country/index.js +0 -1
  1008. package/build/models/data/stock-location/address/district/index.d.ts +0 -7
  1009. package/build/models/data/stock-location/address/district/index.js +0 -1
  1010. package/build/models/data/stock-location/address/index.d.ts +0 -15
  1011. package/build/models/data/stock-location/address/index.js +0 -1
  1012. package/build/models/data/stock-location/address/state/index.d.ts +0 -7
  1013. package/build/models/data/stock-location/address/state/index.js +0 -1
  1014. package/build/models/data/stock-location/available/index.d.ts +0 -10
  1015. package/build/models/data/stock-location/available/index.js +0 -1
  1016. package/build/models/data/stock-location/index.d.ts +0 -14
  1017. package/build/models/data/stock-location/index.js +0 -1
  1018. package/build/models/data/storefront/domain/index.d.ts +0 -9
  1019. package/build/models/data/storefront/domain/index.js +0 -1
  1020. package/build/models/data/storefront/index.d.ts +0 -30
  1021. package/build/models/data/storefront/index.js +0 -1
  1022. package/build/models/data/storefront/localization/index.d.ts +0 -8
  1023. package/build/models/data/storefront/localization/index.js +0 -1
  1024. package/build/models/data/storefront/meta-templates/index.d.ts +0 -8
  1025. package/build/models/data/storefront/meta-templates/index.js +0 -1
  1026. package/build/models/data/storefront/routing/dynamic-currency/index.d.ts +0 -6
  1027. package/build/models/data/storefront/routing/dynamic-currency/index.js +0 -1
  1028. package/build/models/data/storefront/routing/index.d.ts +0 -14
  1029. package/build/models/data/storefront/routing/index.js +0 -1
  1030. package/build/models/data/storefront/theme/index.d.ts +0 -10
  1031. package/build/models/data/storefront/theme/index.js +0 -1
  1032. package/build/models/data/storefront/theme-localization/index.d.ts +0 -15
  1033. package/build/models/data/storefront/theme-localization/index.js +0 -1
  1034. package/build/models/data/theme-json/component/index.d.ts +0 -20
  1035. package/build/models/data/theme-json/component/index.js +0 -1
  1036. package/build/models/data/theme-json/component/prop/index.d.ts +0 -26
  1037. package/build/models/data/theme-json/component/prop/index.js +0 -1
  1038. package/build/models/data/theme-json/custom-data/index.d.ts +0 -43
  1039. package/build/models/data/theme-json/custom-data/index.js +0 -1
  1040. package/build/models/data/theme-json/index.d.ts +0 -16
  1041. package/build/models/data/theme-json/index.js +0 -1
  1042. package/build/models/data/theme-json/page/component/index.d.ts +0 -7
  1043. package/build/models/data/theme-json/page/component/index.js +0 -1
  1044. package/build/models/data/theme-json/page/index.d.ts +0 -21
  1045. package/build/models/data/theme-json/page/index.js +0 -1
  1046. package/build/models/data/theme-json/settings/color/index.d.ts +0 -15
  1047. package/build/models/data/theme-json/settings/color/index.js +0 -1
  1048. package/build/models/data/theme-json/settings/favicon/index.d.ts +0 -5
  1049. package/build/models/data/theme-json/settings/favicon/index.js +0 -1
  1050. package/build/models/data/theme-json/settings/font-family/index.d.ts +0 -6
  1051. package/build/models/data/theme-json/settings/font-family/index.js +0 -1
  1052. package/build/models/data/theme-json/settings/index.d.ts +0 -13
  1053. package/build/models/data/theme-json/settings/index.js +0 -1
  1054. package/build/models/data/variant-type/index.d.ts +0 -13
  1055. package/build/models/data/variant-type/index.js +0 -1
  1056. package/build/models/data/variant-type/variant-value/index.d.ts +0 -12
  1057. package/build/models/data/variant-type/variant-value/index.js +0 -1
  1058. package/build/models/index.d.ts +0 -2
  1059. package/build/models/ui/blog-category-list/index.d.ts +0 -51
  1060. package/build/models/ui/blog-category-list/index.js +0 -1
  1061. package/build/models/ui/blog-list/index.d.ts +0 -55
  1062. package/build/models/ui/blog-list/index.js +0 -1
  1063. package/build/models/ui/brand-list/index.d.ts +0 -61
  1064. package/build/models/ui/brand-list/index.js +0 -1
  1065. package/build/models/ui/category-list/index.d.ts +0 -61
  1066. package/build/models/ui/category-list/index.js +0 -1
  1067. package/build/models/ui/component-renderer/index.d.ts +0 -7
  1068. package/build/models/ui/component-renderer/index.js +0 -1
  1069. package/build/models/ui/customer-review-list/index.d.ts +0 -43
  1070. package/build/models/ui/customer-review-list/index.js +0 -1
  1071. package/build/models/ui/customer-review-summary-list/index.d.ts +0 -43
  1072. package/build/models/ui/customer-review-summary-list/index.js +0 -1
  1073. package/build/models/ui/index.d.ts +0 -25
  1074. package/build/models/ui/navigation-link/index.d.ts +0 -8
  1075. package/build/models/ui/navigation-link/index.js +0 -1
  1076. package/build/models/ui/product-attribute-detail/index.d.ts +0 -8
  1077. package/build/models/ui/product-attribute-detail/index.js +0 -1
  1078. package/build/models/ui/product-attribute-list/index.d.ts +0 -8
  1079. package/build/models/ui/product-attribute-list/index.js +0 -1
  1080. package/build/models/ui/product-list/index.d.ts +0 -138
  1081. package/build/models/ui/product-list/index.js +0 -1
  1082. package/build/models/ui/raffle-list/index.d.ts +0 -53
  1083. package/build/models/ui/raffle-list/index.js +0 -1
  1084. package/build/models/ui/validator/form/account-info.d.ts +0 -39
  1085. package/build/models/ui/validator/form/account-info.js +0 -1
  1086. package/build/models/ui/validator/form/address.d.ts +0 -75
  1087. package/build/models/ui/validator/form/address.js +0 -1
  1088. package/build/models/ui/validator/form/contact-form.d.ts +0 -42
  1089. package/build/models/ui/validator/form/contact-form.js +0 -1
  1090. package/build/models/ui/validator/form/customer-review.d.ts +0 -34
  1091. package/build/models/ui/validator/form/customer-review.js +0 -1
  1092. package/build/models/ui/validator/form/forgot-password.d.ts +0 -26
  1093. package/build/models/ui/validator/form/forgot-password.js +0 -1
  1094. package/build/models/ui/validator/form/login.d.ts +0 -32
  1095. package/build/models/ui/validator/form/login.js +0 -1
  1096. package/build/models/ui/validator/form/raffle-form.d.ts +0 -62
  1097. package/build/models/ui/validator/form/raffle-form.js +0 -1
  1098. package/build/models/ui/validator/form/recover-password.d.ts +0 -33
  1099. package/build/models/ui/validator/form/recover-password.js +0 -1
  1100. package/build/models/ui/validator/form/register.d.ts +0 -49
  1101. package/build/models/ui/validator/form/register.js +0 -1
  1102. package/build/models/ui/validator/index.d.ts +0 -27
  1103. package/build/models/ui/validator/index.js +0 -1
  1104. package/build/models/ui/validator/rules/index.d.ts +0 -101
  1105. package/build/models/ui/validator/rules/index.js +0 -1
  1106. package/build/page-data-init/index.d.ts +0 -40
  1107. package/build/page-data-init/index.js +0 -1
  1108. package/build/pages/404.d.ts +0 -4
  1109. package/build/pages/404.js +0 -1
  1110. package/build/pages/[slug]/index.d.ts +0 -4
  1111. package/build/pages/_slug_/index.js +0 -1
  1112. package/build/pages/account/addresses.d.ts +0 -4
  1113. package/build/pages/account/addresses.js +0 -1
  1114. package/build/pages/account/favorite-products.d.ts +0 -4
  1115. package/build/pages/account/favorite-products.js +0 -1
  1116. package/build/pages/account/forgot-password.d.ts +0 -4
  1117. package/build/pages/account/forgot-password.js +0 -1
  1118. package/build/pages/account/index.d.ts +0 -4
  1119. package/build/pages/account/index.js +0 -1
  1120. package/build/pages/account/login.d.ts +0 -4
  1121. package/build/pages/account/login.js +0 -1
  1122. package/build/pages/account/orders/[id].d.ts +0 -4
  1123. package/build/pages/account/orders/_id_.js +0 -1
  1124. package/build/pages/account/orders/index.d.ts +0 -4
  1125. package/build/pages/account/orders/index.js +0 -1
  1126. package/build/pages/account/raffles.d.ts +0 -4
  1127. package/build/pages/account/raffles.js +0 -1
  1128. package/build/pages/account/recover-password.d.ts +0 -4
  1129. package/build/pages/account/recover-password.js +0 -1
  1130. package/build/pages/account/register.d.ts +0 -4
  1131. package/build/pages/account/register.js +0 -1
  1132. package/build/pages/blog/[slug].d.ts +0 -4
  1133. package/build/pages/blog/_slug_.js +0 -1
  1134. package/build/pages/blog/index.d.ts +0 -4
  1135. package/build/pages/blog/index.js +0 -1
  1136. package/build/pages/cart.d.ts +0 -4
  1137. package/build/pages/cart.js +0 -1
  1138. package/build/pages/checkout.d.ts +0 -18
  1139. package/build/pages/checkout.js +0 -1
  1140. package/build/pages/editor.d.ts +0 -10
  1141. package/build/pages/editor.js +0 -1
  1142. package/build/pages/home.d.ts +0 -4
  1143. package/build/pages/home.js +0 -1
  1144. package/build/pages/index.d.ts +0 -22
  1145. package/build/pages/pages/[slug].d.ts +0 -4
  1146. package/build/pages/pages/_slug_.js +0 -1
  1147. package/build/pages/raffle/[slug].d.ts +0 -4
  1148. package/build/pages/raffle/_slug_.js +0 -1
  1149. package/build/pages/raffle/index.d.ts +0 -4
  1150. package/build/pages/raffle/index.js +0 -1
  1151. package/build/pages/search.d.ts +0 -4
  1152. package/build/pages/search.js +0 -1
  1153. package/build/store/base.d.ts +0 -44
  1154. package/build/store/base.js +0 -1
  1155. package/build/store/blog/index.d.ts +0 -26
  1156. package/build/store/blog/index.js +0 -1
  1157. package/build/store/brand/index.d.ts +0 -12
  1158. package/build/store/brand/index.js +0 -1
  1159. package/build/store/cart/api.d.ts +0 -10
  1160. package/build/store/cart/api.js +0 -1
  1161. package/build/store/cart/index.d.ts +0 -27
  1162. package/build/store/cart/index.js +0 -1
  1163. package/build/store/category/index.d.ts +0 -12
  1164. package/build/store/category/index.js +0 -1
  1165. package/build/store/checkout/index.d.ts +0 -15
  1166. package/build/store/checkout/index.js +0 -1
  1167. package/build/store/customer/api.d.ts +0 -54
  1168. package/build/store/customer/api.js +0 -1
  1169. package/build/store/customer/index.d.ts +0 -79
  1170. package/build/store/customer/index.js +0 -1
  1171. package/build/store/html-meta-data/index.d.ts +0 -6
  1172. package/build/store/html-meta-data/index.js +0 -1
  1173. package/build/store/index.d.ts +0 -3
  1174. package/build/store/location/index.d.ts +0 -9
  1175. package/build/store/location/index.js +0 -1
  1176. package/build/store/merchant/index.d.ts +0 -6
  1177. package/build/store/product/index.d.ts +0 -37
  1178. package/build/store/product/index.js +0 -1
  1179. package/build/store/raffle/index.d.ts +0 -15
  1180. package/build/store/raffle/index.js +0 -1
  1181. package/build/store/storefront/index.d.ts +0 -5
  1182. package/build/utils/constants.d.ts +0 -2
  1183. package/build/utils/constants.js +0 -1
  1184. package/build/utils/currency.d.ts +0 -7
  1185. package/build/utils/currency.js +0 -1
  1186. package/build/utils/google-fonts.d.ts +0 -2
  1187. package/build/utils/google-fonts.js +0 -1
  1188. package/build/utils/helper.d.ts +0 -4
  1189. package/build/utils/helper.js +0 -1
  1190. package/build/utils/i18n.d.ts +0 -11
  1191. package/build/utils/i18n.js +0 -1
  1192. package/build/utils/index.d.ts +0 -3
@@ -1 +0,0 @@
1
- var d={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,"1|([457]\\d{6})$","268$1",0,"268"],AI:["1","011","(?:264|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"1|([2457]\\d{6})$","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,"1|([267]\\d{6})$","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(?: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,"0|(183[12])",0,0,0,[["(?:(?: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]))\\d{3}|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]))|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[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}",[9]],["4(?:83[0-38]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[06-9]|7[02-9]|8[0-24-9]|9[0-27-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,"1|([2-9]\\d{6})$","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(?:28|4[14]|5)|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]|22"],"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","[025-7]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[025-7]"]]]],BG:["359","00","[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}",[6,7,8,9],[["(\\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[047]"]]]],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","(?:[25689]\\d|40)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-689]"]]]],BL:["590","00","(?:590|(?:69|80)\\d|976)\\d{6}",[9],0,"0",0,0,0,0,0,[["590(?:2[7-9]|5[12]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["976[01]\\d{5}"]]],BM:["1","011","(?:441|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"1|([2-8]\\d{6})$","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)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|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-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-24679]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}",[8,9,10,11],[["(\\d{4})(\\d{4})","$1-$2",["300|4(?:0[02]|37)","4(?:02|37)0|[34]00"]],["(\\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,"1|([3-8]\\d{6})$","242$1",0,"242"],BT:["975","00","[17]\\d{7}|[2-8]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[2-68]|7[246]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[67]|7"]]]],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-79]"]],["(\\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-8]\\d|90)\\d{8}",[10],0,"1",0,0,0,0,0,[["(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|6[578])|4(?:03|1[68]|3[178]|50|68|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|13|39|47|72)|7(?:0[59]|78|8[02])|8(?:[06]7|19|25|73)|90[25])[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-7]|33|44|66|77|88)|622)[2-9]\\d{6}"],0,0,0,["600[2-9]\\d{6}"]]],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,"0|([59]\\d{7})$","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(?:83[0-38]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[06-9]|7[02-9]|8[0-24-9]|9[0-27-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]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\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{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"0$1"]],"0"],CF:["236","00","(?:[27]\\d{3}|8776)\\d{4}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[278]"]]]],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],[["(\\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{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[2-9]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[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[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","(?:10|2[0-57-9])(?:100|9[56])"],"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,"0|(1(?:[12]\\d|79)\\d\\d)",0,0,0,0,"00"],CO:["57","00(?:4(?:[14]4|56)|[579])","(?:(?:1\\d|[36])\\d{3}|9101)\\d{6}|[124-8]\\d{7}",[8,10,11],[["(\\d)(\\d{7})","$1 $2",["[146][2-9]|[2578]"],"($1)"],["(\\d{3})(\\d{7})","$1 $2",["6"],"($1)"],["(\\d{3})(\\d{7})","$1 $2",["[39]"]],["(\\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","[27]\\d{6,7}|[34]\\d{5,7}|(?:5|8\\d\\d)\\d{7}",[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",["5"],"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,"0|([59]\\d{7})$","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(?:83[0-38]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[06-9]|7[02-9]|8[0-24-9]|9[0-27-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],[["(\\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(?:1\\d|2[02-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[05]\\d|[23]1|[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{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"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,"1|([2-7]\\d{6})$","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",["[189]"],"0$1"]],"0"],EH:["212","00","[5-8]\\d{8}",[9],0,"0",0,0,0,0,"528[89]"],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-59]\\d)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-59]"],"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)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"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,0,0,0,[["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0359])|(?:5[0-26-9]|[78][0-49])\\d\\d|6(?:[0-4]\\d\\d|50[0-24-69]))|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\\d|1(?:[0-7]\\d\\d|8(?:[02]\\d|1[0-27-9])))|(?: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-2]|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,"1|([2-9]\\d{6})$","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","(?:[56]94|80\\d|976)\\d{6}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],GG:["44","00","(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?",[7,9,10],0,"0",0,"0|([25-9]\\d{5})$","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-2]|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{3}|800)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[235]"],"0$1"]],"0"],GI:["350","00","(?:[25]\\d\\d|606)\\d{5}",[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","(?:590|(?:69|80)\\d|976)\\d{6}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0",0,0,0,0,0,[["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1289]|5[3-579]|6[0189]|7[08]|8[0-689]|9\\d)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["976[01]\\d{5}"]]],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","(?:1\\d{3}|[2-7])\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],GU:["1","011","(?:[58]\\d\\d|671|900)\\d{7}",[10],0,"1",0,"1|([3-9]\\d{6})$","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","9008\\d{3}|(?:[2-467]\\d\\d|862)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-46-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","(?:[24-69]\\d|3[0-79])\\d{7}|80\\d{5,7}|[1-79]\\d{7}|6\\d{5,6}",[6,7,8,9],[["(\\d{2})(\\d{2})(\\d{2,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",["[67]"],"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-5]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"]],"0"],HT:["509","00","[2-489]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[2-489]"]]]],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]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\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,"0|([25-8]\\d{5})$","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|83)|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]|8[124-6])\\d|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",["[6-9]"],"0$1",1],["(\\d{4})(\\d{2,4})(\\d{4})","$1 $2 $3",["1(?:6|8[06])","1(?:6|8[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,10}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|55\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\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])|[38]"]],["(\\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",["3"]]],0,0,0,0,0,0,[["0669[0-79]\\d{1,6}|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[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[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]],0,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|([0-24-8]\\d{5})$","1534$1",0,0,[["1534[0-24-8]\\d{5}"],["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97[7-9]))\\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-2]|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|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",["7"],"0$1"]],"0"],JP:["81","010","00[1-9]\\d{6,14}|[257-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|63)|9(?:49|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]|636)|9(?:496|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]|636[457-9])|9(?:496|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",["[36]|4(?:2[09]|7[01])","[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"],"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[045]|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[27-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])|5(?:2|3[045]|4[0-369]|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])|49|51|6(?:[0-24]|36|5[0-3589]|72|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]))|(?:49|55|83)[29]|(?: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]|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]|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[23]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|72|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]","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]|7[015-9]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17|3[015-9]))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3[045]|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(?:[019]|4[1-3]|6(?:[0-47-9]|5[01346-9])))|3(?:[29]|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[23]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|72|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|829(?:2|66)|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",["[257-9]"],"0$1"]],"0"],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-8]\\d|99)\\d{7}",[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,"1|([2-7]\\d{6})$","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",["60|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,"1|([2-9]\\d{6})$","345$1",0,"345"],KZ:["7","810","(?:33622|8\\d{8})\\d{5}|[78]\\d{9}",[10,14],0,"8",0,0,0,0,"33|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",["30[013-9]"],"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-7]|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,"1|([2-8]\\d{6})$","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,"0|(1001)"],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","(?:2|33|5\\d|77|88)\\d{7}|[4-6]\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3578]"],"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]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",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",["2(?:[0367]|4[3-8])"]],["(\\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",["2(?:[0367]|4[3-8])"]],["(\\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]"]]],0,0,"(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"],LV:["371","00","(?:[268]\\d|90)\\d{6}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[269]|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{5})(\\d{4})","$1-$2",["5(?:29|38)","5(?:29|38)[89]","5(?:29|38)[89]0"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5[45]"],"0$1"],["(\\d{4})(\\d{5})","$1-$2",["5(?:2[2-489]|3[5-9]|9)|892","5(?:2(?:[2-49]|8[235-9])|3[5-9]|9)|892"],"0$1"],["(\\d{2})(\\d{7})","$1-$2",["8"],"0$1"],["(\\d{3})(\\d{6})","$1-$2",["[5-7]"],"0$1"]],"0",0,0,0,0,0,[["5(?:29(?:[189][05]|2[29]|3[01])|38(?:8[057]|9[05]))\\d{4}|5(?:2(?:[0-25-7]\\d|3[1-578]|4[02-46-8]|8[0235-7]|90)|3(?:[0-47]\\d|5[02-9]|6[02-8]|80|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"],["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[017]\\d|6[0-367]))\\d{6}"],["80\\d{7}"],["89\\d{7}"],0,0,0,0,["592(?:4[0-2]|93)\\d{4}"]]],MC:["377","00","(?:[3489]|6\\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",["6"],"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","(?:590|(?:69|80)\\d|976)\\d{6}",[9],0,"0",0,0,0,0,0,[["590(?:0[079]|[14]3|[27][79]|30|5[0-268]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["976[01]\\d{5}"]]],MG:["261","00","[23]\\d{8}",[9],[["(\\d{2})(\\d{2})(\\d{3})(\\d{2})","$1 $2 $3 $4",["[23]"],"0$1"]],"0",0,"0|([24-9]\\d{6})$","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",["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]"],"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}|[57-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",["[57-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,"1|([2-9]\\d{6})$","670$1",0,"670"],MQ:["596","00","(?:69|80)\\d{7}|(?:59|97)6\\d{6}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"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,"1|([34]\\d{6})$","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])","(?:5|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",["5"]],["(\\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",["[3467]|9[13-9]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"]]],0,0,0,0,0,0,0,"00"],MW:["265","00","(?:[129]\\d|31|77|88)\\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]","1(?:(?:44|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[017]\\d|[235][1-9]|4[0-35-9]|6[0-46-9]|8[1-79]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",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])|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[36-8]"]],["(\\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[04]"]]]],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","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"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",["[489]|59"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-7]"]]],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-579]|6[2-6])"],"0$1"],["(\\d{3})(\\d{7})","$1-$2",["9"]]],"0"],NR:["674","00","(?:444|(?:55|8\\d)\\d|666)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[4-68]"]]]],NU:["683","00","(?:[47]|888\\d)\\d{3}",[4,7],[["(\\d{3})(\\d{4})","$1 $2",["8"]]]],NZ:["64","0(?:0|161)","[29]\\d{7,9}|50\\d{5}(?:\\d{2,3})?|6[0-35-9]\\d{6}|7\\d{7,8}|8\\d{4,9}|(?:11\\d|[34])\\d{7}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,8})","$1 $2",["8[1-579]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["50[036-8]|[89]0","50(?:[0367]|88)|[89]0"],"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)|[59]|80"],"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|86"],"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","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,0," 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\\d{5}(?:\\d{2})?|8\\d{9}|[1-9]\\d{6}(?:\\d{2})?",[6,7,8,9,10],[["(\\d{5})","$1",["19"]],["(\\d{3})(\\d{3})","$1 $2",["11|64"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["(?: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","(?: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","(?:[45]|80\\d\\d)\\d{5}",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[45]"],"0$1"],["(\\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","59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,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",["[26]1|3[289]|4[1246-8]|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-6])"],"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","[2-7]\\d{7}|800\\d{4}(?:\\d{2})?|2\\d{6}",[7,8,9],[["(\\d{3})(\\d{4})","$1 $2",["2[126]|8"]],["(\\d{4})(\\d{4})","$1 $2",["[2-7]"]]]],RE:["262","00","9769\\d{5}|(?:26|[68]\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2689]"],"0$1"]],"0",0,0,0,0,"26[23]|69|[89]"],RO:["40","00","(?:[2378]\\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",["[237-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-6]2|7|8[27])|2(?:1[23]|[2-9]2))","7(?:1(?:[0-6]2|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,"3[04-689]|[489]",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",["[7-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"]]],"0"],SA:["966","00","92\\d{7}|(?:[15]|8\\d)\\d{8}",[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{3,4})","$1 $2 $3",["81"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]],"0"],SB:["677","0[01]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\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],[["(\\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-5]|[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|[57]9)\\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",["24|[67]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[3478]|64|90"]],["(\\d{2})(\\d{5,7})","$1 $2",["1|28|6(?:0[5-7]|[1-35-9])|9[2-9]"]]],"0"],SR:["597","00","(?:[2-5]|68|[78]\\d)\\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-8]"]]]],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","[267]\\d{7}|[89]00\\d{4}(?:\\d{4})?",[7,8,11],[["(\\d{3})(\\d{4})","$1 $2",["[89]"]],["(\\d{4})(\\d{4})","$1 $2",["[267]"]],["(\\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,"1|(5\\d{6})$","721$1",0,"721"],SY:["963","00","[1-39]\\d{8}|[1-5]\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-5]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"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,"1|([2-479]\\d{6})$","649$1",0,"649"],TD:["235","00|16","(?:22|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],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","(?:00|[1-57-9]\\d)\\d{7}",[9],[["(\\d{6})(\\d)(\\d{2})","$1 $2 $3",["331","3317"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[34]7|91[78]"]],["(\\d{4})(\\d)(\\d{4})","$1 $2 $3",["3[1-5]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[0-57-9]"]]],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{7}",[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",["6"],"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-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"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,"1|([2-46-8]\\d{6})$","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]","(?:[26-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{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{2})(\\d{3})(\\d{4})","$1 $2 $3",["4[45][0-5]|5(?:0|6[37])|6(?:[12][018]|[36-8])|7|89|9[1-9]|(?:48|57)[0137-9]","4[45][0-5]|5(?:0|6(?:3[14-7]|7))|6(?:[12][018]|[36-8])|7|89|9[1-9]|(?:48|57)[0137-9]"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["[3-6]"],"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}",[10],[["(\\d{3})(\\d{3})(\\d{4})","($1) $2-$3",["[2-9]"],0,1,"$1-$2-$3"]],"1",0,0,0,0,0,[["5(?:05(?:[2-57-9]\\d\\d|6(?:[0-35-9]\\d|44))|82(?:2(?:0[0-3]|[268]2)|3(?:0[02]|22|33)|4(?:00|4[24]|65|82)|5(?:00|29|58|83)|6(?:00|66|82)|7(?:58|77)|8(?:00|42|88)|9(?:00|9[89])))\\d{4}|(?:2(?:0[1-35-9]|1[02-9]|2[03-589]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[01356]|3[0-24679]|4[167]|5[12]|6[014]|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-47-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-47]|7[0-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[08]|3[0-289]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[0157-9]|5[12469]|7[0-389]|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-7]|33|44|66|77|88)[2-9]\\d{6}"]]],UY:["598","0(?:0|1[3-9]\\d)","4\\d{9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["405|8|90"],"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{4})","$1 $2 $3",["4"],"0$1"]],"0",0,0,0,0,0,0,"00"," int. "],UZ:["998","810","(?:33|55|[679]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[35-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],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],0,0,0,0,0,0,"06698"],VC:["1","011","(?:[58]\\d\\d|784|900)\\d{7}",[10],0,"1",0,"1|([2-7]\\d{6})$","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,"1|([2-578]\\d{6})$","284$1",0,"284"],VI:["1","011","[58]\\d{9}|(?:34|90)0\\d{7}",[10],0,"1",0,"1|([2-9]\\d{6})$","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",["[69]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[3578]"],"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)\\d{4}|8\\d{5}(?:\\d{3})?",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[478]"]],["(\\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","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\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",["[23]"],"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-68]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"],"0$1"]],"0"],YT:["262","00","80\\d{7}|(?:26|63)9\\d{6}",[9],0,"0",0,0,0,0,"269|63"],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|63|[79]\\d)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[28]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[79]"],"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,"(?:005|[1-9]\\d\\d)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["\\d"]]],0,0,0,0,0,0,[0,0,["(?:005|[1-9]\\d\\d)\\d{5}"]]],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}|[35-7]\\d{8}",[9,12],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[35-7]"]]],0,0,0,0,0,0,[0,["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]],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,"[0-36-9]\\d{8}",[9],[["(\\d)(\\d{3})(\\d{5})","$1 $2 $3",["[0-36-9]"]]],0,0,0,0,0,0,[0,["[0-36-9]\\d{8}"]]],882:["882",0,"[13]\\d{6}(?:\\d{2,5})?|285\\d{9}|(?:[19]\\d|49)\\d{6}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5})","$1 $2",["16|342"]],["(\\d{2})(\\d{6})","$1 $2",["4"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[19]"]],["(\\d{2})(\\d{4})(\\d{3})","$1 $2 $3",["3[23]"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["1"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["34[57]"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["34"]],["(\\d{2})(\\d{4,5})(\\d{5})","$1 $2 $3",["[1-3]"]]],0,0,0,0,0,0,[0,["342\\d{4}|(?:337|49)\\d{6}|3(?:2|47|7\\d{3})\\d{7}",[7,8,9,10,12]],0,0,0,0,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})|(?:(?:285\\d\\d|3(?:45|[69]\\d{3}))\\d|9[89])\\d{6}"]]],883:["883",0,"(?:210|370\\d\\d)\\d{7}|51\\d{7}(?:\\d{3})?",[9,10,12],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["510"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["2"]],["(\\d{4})(\\d{4})(\\d{4})","$1 $2 $3",["51[13]"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[35]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["(?:210|(?:370[1-9]|51[013]0)\\d)\\d{7}|5100\\d{5}"]]],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}"]]]}};export{d as default};
@@ -1 +0,0 @@
1
- import t from"../../metadata.min.json.js";import"../../es6/PhoneNumberMatcher.js";import o from"../../es6/AsYouType.js";import"../../es6/AsYouTypeFormatter.js";function r(r){return o.call(this,r,t)}r.prototype=Object.create(o.prototype,{}),r.prototype.constructor=r;export{r as AsYouType};
@@ -1 +0,0 @@
1
- import t from"../../metadata.min.json.js";import o from"../../es6/metadata.js";import"../../es6/PhoneNumberMatcher.js";import"../../es6/AsYouTypeFormatter.js";function r(){return o.call(this,t)}r.prototype=Object.create(o.prototype,{}),r.prototype.constructor=r;export{r as Metadata};
@@ -1 +0,0 @@
1
- import t from"../../metadata.min.json.js";import o from"../../es6/PhoneNumberMatcher.js";import"../../es6/AsYouTypeFormatter.js";function r(r,e){return o.call(this,r,e,t)}r.prototype=Object.create(o.prototype,{}),r.prototype.constructor=r;export{r as PhoneNumberMatcher};
@@ -1 +0,0 @@
1
- import e from"./withMetadataArgument.js";import"../../es6/PhoneNumberMatcher.js";import"../../es6/AsYouTypeFormatter.js";import r from"../../es6/formatIncompletePhoneNumber.js";function t(){return e(r,arguments)}export{t as formatIncompletePhoneNumber};
@@ -1 +0,0 @@
1
- import t from"./withMetadataArgument.js";import"../../es6/PhoneNumberMatcher.js";import"../../es6/AsYouTypeFormatter.js";import r from"../../es6/getCountries.js";function e(){return t(r,arguments)}export{e as getCountries};
@@ -1 +0,0 @@
1
- import t from"./withMetadataArgument.js";import{getCountryCallingCode as e}from"../../es6/metadata.js";import"../../es6/PhoneNumberMatcher.js";import"../../es6/AsYouTypeFormatter.js";function r(){return t(e,arguments)}export{r as getCountryCallingCode};
@@ -1 +0,0 @@
1
- import r from"./withMetadataArgument.js";import e from"../../es6/parsePhoneNumberFromString.js";import"../../es6/PhoneNumberMatcher.js";import"../../es6/AsYouTypeFormatter.js";function t(){return r(e,arguments)}export{t as parsePhoneNumberFromString};
@@ -1 +0,0 @@
1
- import t from"../../metadata.min.json.js";function a(a,r){var o=Array.prototype.slice.call(r);return o.push(t),a.apply(this,o)}export{a as default};
@@ -1,6 +0,0 @@
1
- /*
2
- object-assign
3
- (c) Sindre Sorhus
4
- @license MIT
5
- */
6
- var r,e;function t(){if(e)return r;e=1;var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(r){if(null==r)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(r)}return r=function(){try{if(!Object.assign)return!1;var r=new String("abc");if(r[5]="de","5"===Object.getOwnPropertyNames(r)[0])return!1;for(var e={},t=0;t<10;t++)e["_"+String.fromCharCode(t)]=t;if("0123456789"!==Object.getOwnPropertyNames(e).map((function(r){return e[r]})).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach((function(r){n[r]=r})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(r){return!1}}()?Object.assign:function(r,e){for(var c,i,f=a(r),u=1;u<arguments.length;u++){for(var b in c=Object(arguments[u]))n.call(c,b)&&(f[b]=c[b]);if(t){i=t(c);for(var s=0;s<i.length;s++)o.call(c,i[s])&&(f[i[s]]=c[i[s]])}}return f},r}export{t as __require};
@@ -1 +0,0 @@
1
- import{__require as e}from"./lib/ReactPropTypesSecret.js";import{__require as r}from"./lib/has.js";var n,o;function t(){if(o)return n;o=1;var t=function(){};if("production"!==process.env.NODE_ENV){var a=e(),i={},s=r();t=function(e){var r="Warning: "+e;"undefined"!=typeof console&&console.error(r);try{throw new Error(r)}catch(e){}}}function c(e,r,n,o,c){if("production"!==process.env.NODE_ENV)for(var f in e)if(s(e,f)){var u;try{if("function"!=typeof e[f]){var p=Error((o||"React class")+": "+n+" type `"+f+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[f]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw p.name="Invariant Violation",p}u=e[f](r,f,o,n,null,a)}catch(e){u=e}if(!u||u instanceof Error||t((o||"React class")+": type specification of "+n+" `"+f+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof u+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),u instanceof Error&&!(u.message in i)){i[u.message]=!0;var l=c?c():"";t("Failed "+n+" type: "+u.message+(null!=l?l:""))}}}return c.resetWarningCache=function(){"production"!==process.env.NODE_ENV&&(i={})},n=c}export{t as __require};
@@ -1 +0,0 @@
1
- import{__require as e}from"./lib/ReactPropTypesSecret.js";var r,n;function t(){if(n)return r;n=1;var t=e();function o(){}function a(){}return a.resetWarningCache=o,r=function(){function e(e,r,n,o,a,i){if(i!==t){var p=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw p.name="Invariant Violation",p}}function r(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:r,element:e,elementType:e,instanceOf:r,node:e,objectOf:r,oneOf:r,oneOfType:r,shape:r,exact:r,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}}export{t as __require};
@@ -1 +0,0 @@
1
- import{__require as e}from"../react-is/index.js";import{__require as n}from"../object-assign/index.js";import{__require as r}from"./lib/ReactPropTypesSecret.js";import{__require as t}from"./lib/has.js";import{__require as o}from"./checkPropTypes.js";var i,a;function u(){if(a)return i;a=1;var u=e(),c=n(),f=r(),p=t(),s=o(),l=function(){};function d(){return null}return"production"!==process.env.NODE_ENV&&(l=function(e){var n="Warning: "+e;"undefined"!=typeof console&&console.error(n);try{throw new Error(n)}catch(e){}}),i=function(e,n){var r="function"==typeof Symbol&&Symbol.iterator;var t="<<anonymous>>",o={array:v("array"),bigint:v("bigint"),bool:v("boolean"),func:v("function"),number:v("number"),object:v("object"),string:v("string"),symbol:v("symbol"),any:y(d),arrayOf:function(e){return y((function(n,r,t,o,i){if("function"!=typeof e)return new a("Property `"+i+"` of component `"+t+"` has invalid PropType notation inside arrayOf.");var u=n[r];if(!Array.isArray(u))return new a("Invalid "+o+" `"+i+"` of type `"+g(u)+"` supplied to `"+t+"`, expected an array.");for(var c=0;c<u.length;c++){var p=e(u,c,t,o,i+"["+c+"]",f);if(p instanceof Error)return p}return null}))},element:y((function(n,r,t,o,i){var u=n[r];return e(u)?null:new a("Invalid "+o+" `"+i+"` of type `"+g(u)+"` supplied to `"+t+"`, expected a single ReactElement.")})),elementType:y((function(e,n,r,t,o){var i=e[n];return u.isValidElementType(i)?null:new a("Invalid "+t+" `"+o+"` of type `"+g(i)+"` supplied to `"+r+"`, expected a single ReactElement type.")})),instanceOf:function(e){return y((function(n,r,o,i,u){if(!(n[r]instanceof e)){var c=e.name||t;return new a("Invalid "+i+" `"+u+"` of type `"+(((f=n[r]).constructor&&f.constructor.name?f.constructor.name:t)+"` supplied to `")+o+"`, expected instance of `"+c+"`.")}var f;return null}))},node:y((function(e,n,r,t,o){return b(e[n])?null:new a("Invalid "+t+" `"+o+"` supplied to `"+r+"`, expected a ReactNode.")})),objectOf:function(e){return y((function(n,r,t,o,i){if("function"!=typeof e)return new a("Property `"+i+"` of component `"+t+"` has invalid PropType notation inside objectOf.");var u=n[r],c=g(u);if("object"!==c)return new a("Invalid "+o+" `"+i+"` of type `"+c+"` supplied to `"+t+"`, expected an object.");for(var s in u)if(p(u,s)){var l=e(u,s,t,o,i+"."+s,f);if(l instanceof Error)return l}return null}))},oneOf:function(e){if(!Array.isArray(e))return"production"!==process.env.NODE_ENV&&l(arguments.length>1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),d;function n(n,r,t,o,u){for(var c=n[r],f=0;f<e.length;f++)if(i(c,e[f]))return null;var p=JSON.stringify(e,(function(e,n){return"symbol"===h(n)?String(n):n}));return new a("Invalid "+o+" `"+u+"` of value `"+String(c)+"` supplied to `"+t+"`, expected one of "+p+".")}return y(n)},oneOfType:function(e){if(!Array.isArray(e))return"production"!==process.env.NODE_ENV&&l("Invalid argument supplied to oneOfType, expected an instance of array."),d;for(var n=0;n<e.length;n++){var r=e[n];if("function"!=typeof r)return l("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+x(r)+" at index "+n+"."),d}return y((function(n,r,t,o,i){for(var u=[],c=0;c<e.length;c++){var s=(0,e[c])(n,r,t,o,i,f);if(null==s)return null;s.data&&p(s.data,"expectedType")&&u.push(s.data.expectedType)}return new a("Invalid "+o+" `"+i+"` supplied to `"+t+"`"+(u.length>0?", expected one of type ["+u.join(", ")+"]":"")+".")}))},shape:function(e){return y((function(n,r,t,o,i){var u=n[r],c=g(u);if("object"!==c)return new a("Invalid "+o+" `"+i+"` of type `"+c+"` supplied to `"+t+"`, expected `object`.");for(var p in e){var s=e[p];if("function"!=typeof s)return m(t,o,i,p,h(s));var l=s(u,p,t,o,i+"."+p,f);if(l)return l}return null}))},exact:function(e){return y((function(n,r,t,o,i){var u=n[r],s=g(u);if("object"!==s)return new a("Invalid "+o+" `"+i+"` of type `"+s+"` supplied to `"+t+"`, expected `object`.");var l=c({},n[r],e);for(var d in l){var y=e[d];if(p(e,d)&&"function"!=typeof y)return m(t,o,i,d,h(y));if(!y)return new a("Invalid "+o+" `"+i+"` key `"+d+"` supplied to `"+t+"`.\nBad object: "+JSON.stringify(n[r],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var v=y(u,d,t,o,i+"."+d,f);if(v)return v}return null}))}};function i(e,n){return e===n?0!==e||1/e==1/n:e!=e&&n!=n}function a(e,n){this.message=e,this.data=n&&"object"==typeof n?n:{},this.stack=""}function y(e){if("production"!==process.env.NODE_ENV)var r={},o=0;function i(i,u,c,p,s,d,y){if(p=p||t,d=d||c,y!==f){if(n){var v=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw v.name="Invariant Violation",v}if("production"!==process.env.NODE_ENV&&"undefined"!=typeof console){var m=p+":"+c;!r[m]&&o<3&&(l("You are manually calling a React.PropTypes validation function for the `"+d+"` prop on `"+p+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),r[m]=!0,o++)}}return null==u[c]?i?null===u[c]?new a("The "+s+" `"+d+"` is marked as required in `"+p+"`, but its value is `null`."):new a("The "+s+" `"+d+"` is marked as required in `"+p+"`, but its value is `undefined`."):null:e(u,c,p,s,d)}var u=i.bind(null,!1);return u.isRequired=i.bind(null,!0),u}function v(e){return y((function(n,r,t,o,i,u){var c=n[r];return g(c)!==e?new a("Invalid "+o+" `"+i+"` of type `"+h(c)+"` supplied to `"+t+"`, expected `"+e+"`.",{expectedType:e}):null}))}function m(e,n,r,t,o){return new a((e||"React class")+": "+n+" type `"+r+"."+t+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+o+"`.")}function b(n){switch(typeof n){case"number":case"string":case"undefined":return!0;case"boolean":return!n;case"object":if(Array.isArray(n))return n.every(b);if(null===n||e(n))return!0;var t=function(e){var n=e&&(r&&e[r]||e["@@iterator"]);if("function"==typeof n)return n}(n);if(!t)return!1;var o,i=t.call(n);if(t!==n.entries){for(;!(o=i.next()).done;)if(!b(o.value))return!1}else for(;!(o=i.next()).done;){var a=o.value;if(a&&!b(a[1]))return!1}return!0;default:return!1}}function g(e){var n=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,n){return"symbol"===e||!!n&&("Symbol"===n["@@toStringTag"]||"function"==typeof Symbol&&n instanceof Symbol)}(n,e)?"symbol":n}function h(e){if(null==e)return""+e;var n=g(e);if("object"===n){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return n}function x(e){var n=h(e);switch(n){case"array":case"object":return"an "+n;case"boolean":case"date":case"regexp":return"a "+n;default:return n}}return a.prototype=Error.prototype,o.checkPropTypes=s,o.resetWarningCache=s.resetWarningCache,o.PropTypes=o,o},i}export{u as __require};
@@ -1 +0,0 @@
1
- import{p as r}from"../../_virtual/index.js";import{__require as e}from"../react-is/index.js";import{__require as s}from"./factoryWithTypeCheckers.js";import{__require as i}from"./factoryWithThrowingShims.js";if("production"!==process.env.NODE_ENV){var o=e();r.exports=s()(o.isElement,!0)}else r.exports=i()();var t=r.exports;export{t as default};
@@ -1 +0,0 @@
1
- var _,r;function e(){if(r)return _;r=1;return _="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"}export{e as __require};
@@ -1 +0,0 @@
1
- var r,t;function e(){return t?r:(t=1,r=Function.call.bind(Object.prototype.hasOwnProperty))}export{e as __require};
@@ -1,9 +0,0 @@
1
- import{__exports as e}from"../../../_virtual/react-is.development.js";
2
- /** @license React v16.13.1
3
- * react-is.development.js
4
- *
5
- * Copyright (c) Facebook, Inc. and its affiliates.
6
- *
7
- * This source code is licensed under the MIT license found in the
8
- * LICENSE file in the root directory of this source tree.
9
- */var r;function t(){return r||(r=1,"production"!==process.env.NODE_ENV&&function(){var r="function"==typeof Symbol&&Symbol.for,t=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,n=r?Symbol.for("react.fragment"):60107,c=r?Symbol.for("react.strict_mode"):60108,a=r?Symbol.for("react.profiler"):60114,f=r?Symbol.for("react.provider"):60109,s=r?Symbol.for("react.context"):60110,i=r?Symbol.for("react.async_mode"):60111,u=r?Symbol.for("react.concurrent_mode"):60111,l=r?Symbol.for("react.forward_ref"):60112,y=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,p=r?Symbol.for("react.memo"):60115,d=r?Symbol.for("react.lazy"):60116,b=r?Symbol.for("react.block"):60121,S=r?Symbol.for("react.fundamental"):60117,$=r?Symbol.for("react.responder"):60118,v=r?Symbol.for("react.scope"):60119;function _(e){if("object"==typeof e&&null!==e){var r=e.$$typeof;switch(r){case t:var m=e.type;switch(m){case i:case u:case n:case a:case c:case y:return m;default:var b=m&&m.$$typeof;switch(b){case s:case l:case d:case p:case f:return b;default:return r}}case o:return r}}}var M=i,C=u,w=s,x=f,h=t,P=l,E=n,R=d,g=p,j=o,A=a,F=c,I=y,z=!1;function L(e){return _(e)===u}e.AsyncMode=M,e.ConcurrentMode=C,e.ContextConsumer=w,e.ContextProvider=x,e.Element=h,e.ForwardRef=P,e.Fragment=E,e.Lazy=R,e.Memo=g,e.Portal=j,e.Profiler=A,e.StrictMode=F,e.Suspense=I,e.isAsyncMode=function(e){return z||(z=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),L(e)||_(e)===i},e.isConcurrentMode=L,e.isContextConsumer=function(e){return _(e)===s},e.isContextProvider=function(e){return _(e)===f},e.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===t},e.isForwardRef=function(e){return _(e)===l},e.isFragment=function(e){return _(e)===n},e.isLazy=function(e){return _(e)===d},e.isMemo=function(e){return _(e)===p},e.isPortal=function(e){return _(e)===o},e.isProfiler=function(e){return _(e)===a},e.isStrictMode=function(e){return _(e)===c},e.isSuspense=function(e){return _(e)===y},e.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===u||e===a||e===c||e===y||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===d||e.$$typeof===p||e.$$typeof===f||e.$$typeof===s||e.$$typeof===l||e.$$typeof===S||e.$$typeof===$||e.$$typeof===v||e.$$typeof===b)},e.typeOf=_}()),e}export{t as __require};
@@ -1,9 +0,0 @@
1
- import{__exports as e}from"../../../_virtual/react-is.production.min.js";
2
- /** @license React v16.13.1
3
- * react-is.production.min.js
4
- *
5
- * Copyright (c) Facebook, Inc. and its affiliates.
6
- *
7
- * This source code is licensed under the MIT license found in the
8
- * LICENSE file in the root directory of this source tree.
9
- */var r;function t(){if(r)return e;r=1;var t="function"==typeof Symbol&&Symbol.for,o=t?Symbol.for("react.element"):60103,n=t?Symbol.for("react.portal"):60106,c=t?Symbol.for("react.fragment"):60107,f=t?Symbol.for("react.strict_mode"):60108,a=t?Symbol.for("react.profiler"):60114,u=t?Symbol.for("react.provider"):60109,i=t?Symbol.for("react.context"):60110,s=t?Symbol.for("react.async_mode"):60111,y=t?Symbol.for("react.concurrent_mode"):60111,l=t?Symbol.for("react.forward_ref"):60112,m=t?Symbol.for("react.suspense"):60113,p=t?Symbol.for("react.suspense_list"):60120,b=t?Symbol.for("react.memo"):60115,S=t?Symbol.for("react.lazy"):60116,$=t?Symbol.for("react.block"):60121,d=t?Symbol.for("react.fundamental"):60117,_=t?Symbol.for("react.responder"):60118,C=t?Symbol.for("react.scope"):60119;function M(e){if("object"==typeof e&&null!==e){var r=e.$$typeof;switch(r){case o:switch(e=e.type){case s:case y:case c:case a:case f:case m:return e;default:switch(e=e&&e.$$typeof){case i:case l:case S:case b:case u:return e;default:return r}}case n:return r}}}function v(e){return M(e)===y}return e.AsyncMode=s,e.ConcurrentMode=y,e.ContextConsumer=i,e.ContextProvider=u,e.Element=o,e.ForwardRef=l,e.Fragment=c,e.Lazy=S,e.Memo=b,e.Portal=n,e.Profiler=a,e.StrictMode=f,e.Suspense=m,e.isAsyncMode=function(e){return v(e)||M(e)===s},e.isConcurrentMode=v,e.isContextConsumer=function(e){return M(e)===i},e.isContextProvider=function(e){return M(e)===u},e.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},e.isForwardRef=function(e){return M(e)===l},e.isFragment=function(e){return M(e)===c},e.isLazy=function(e){return M(e)===S},e.isMemo=function(e){return M(e)===b},e.isPortal=function(e){return M(e)===n},e.isProfiler=function(e){return M(e)===a},e.isStrictMode=function(e){return M(e)===f},e.isSuspense=function(e){return M(e)===m},e.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===c||e===y||e===a||e===f||e===m||e===p||"object"==typeof e&&null!==e&&(e.$$typeof===S||e.$$typeof===b||e.$$typeof===u||e.$$typeof===i||e.$$typeof===l||e.$$typeof===d||e.$$typeof===_||e.$$typeof===C||e.$$typeof===$)},e.typeOf=M,e}export{t as __require};
@@ -1 +0,0 @@
1
- import{r}from"../../_virtual/index2.js";import{__require as e}from"./cjs/react-is.production.min.js";import{__require as o}from"./cjs/react-is.development.js";var s;function t(){return s||(s=1,t=r,"production"===process.env.NODE_ENV?t.exports=e():t.exports=o()),r.exports;var t}export{t as __require};
@@ -1 +0,0 @@
1
- import t from"react";import"../../prop-types/index.js";import"../../uuid/dist/esm-browser/rng.js";import"../../uuid/dist/esm-browser/bytesToUuid.js";import"../../uuid/dist/esm-browser/v3.js";import e from"../../uuid/dist/esm-browser/v4.js";import"../../uuid/dist/esm-browser/v5.js";import{p as r}from"../../../_virtual/index.js";function n(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function o(t,e,r){return e&&n(t.prototype,e),r&&n(t,r),t}function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function a(){return a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},a.apply(this,arguments)}function s(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function u(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?s(Object(r),!0).forEach((function(e){i(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):s(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function l(t){return l=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},l(t)}function c(t,e){return c=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},c(t,e)}function p(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}var f={HIDE:"__react_tooltip_hide_event",REBUILD:"__react_tooltip_rebuild_event",SHOW:"__react_tooltip_show_event"},d=function(t,e){var r;"function"==typeof window.CustomEvent?r=new window.CustomEvent(t,{detail:e}):(r=document.createEvent("Event")).initEvent(t,!1,!0,e),window.dispatchEvent(r)};var h=function(t,e){var r=this.state.show,n=this.props.id,o=this.isCapture(e.currentTarget),i=e.currentTarget.getAttribute("currentItem");o||e.stopPropagation(),r&&"true"===i?t||this.hideTooltip(e):(e.currentTarget.setAttribute("currentItem","true"),b(e.currentTarget,this.getTargetArray(n)),this.showTooltip(e))},b=function(t,e){for(var r=0;r<e.length;r++)t!==e[r]?e[r].setAttribute("currentItem","false"):e[r].setAttribute("currentItem","true")},v={id:"9b69f92e-d3fe-498b-b1b4-c5e63a51b0cf",set:function(t,e,r){this.id in t?t[this.id][e]=r:Object.defineProperty(t,this.id,{configurable:!0,value:i({},e,r)})},get:function(t,e){var r=t[this.id];if(void 0!==r)return r[e]}};var g=function(t,e,r){var n=e.respectEffect,o=void 0!==n&&n,i=e.customEvent,a=void 0!==i&&i,s=this.props.id,u=r.target.getAttribute("data-tip")||null,l=r.target.getAttribute("data-for")||null,c=r.target;if(!this.isCustomEvent(c)||a){var p=null==s&&null==l||l===s;if(null!=u&&(!o||"float"===this.getEffect(c))&&p){var f=function(t){var e={};for(var r in t)"function"==typeof t[r]?e[r]=t[r].bind(t):e[r]=t[r];return e}(r);f.currentTarget=c,t(f)}}},m=function(t,e){var r={};return t.forEach((function(t){var n=t.getAttribute(e);n&&n.split(" ").forEach((function(t){return r[t]=!0}))})),r},y=function(){return document.getElementsByTagName("body")[0]};function w(t,e,r,n,o,i,a){for(var s=T(r),u=s.width,l=s.height,c=T(e),p=c.width,f=c.height,d=E(t,e,i),h=d.mouseX,b=d.mouseY,v=x(i,p,f,u,l),g=O(a),m=g.extraOffsetX,y=g.extraOffsetY,w=window.innerWidth,_=window.innerHeight,L=S(r),A=L.parentTop,k=L.parentLeft,C=function(t){var e=v[t].l;return h+e+m},j=function(t){var e=v[t].t;return b+e+y},P=function(t){return function(t){var e=v[t].r;return h+e+m}(t)>w},R=function(t){return function(t){var e=v[t].b;return b+e+y}(t)>_},I=function(t){return function(t){return C(t)<0}(t)||P(t)||function(t){return j(t)<0}(t)||R(t)},H=function(t){return!I(t)},M=["top","bottom","left","right"],B=[],D=0;D<4;D++){var N=M[D];H(N)&&B.push(N)}var W,z=!1,U=o!==n;return H(o)&&U?(z=!0,W=o):B.length>0&&I(o)&&I(n)&&(z=!0,W=B[0]),z?{isNewState:!0,newState:{place:W}}:{isNewState:!1,position:{left:parseInt(C(n)-k,10),top:parseInt(j(n)-A,10)}}}var T=function(t){var e=t.getBoundingClientRect(),r=e.height,n=e.width;return{height:parseInt(r,10),width:parseInt(n,10)}},E=function(t,e,r){var n=e.getBoundingClientRect(),o=n.top,i=n.left,a=T(e),s=a.width,u=a.height;return"float"===r?{mouseX:t.clientX,mouseY:t.clientY}:{mouseX:i+s/2,mouseY:o+u/2}},x=function(t,e,r,n,o){var i,a,s,u;return"float"===t?(i={l:-n/2,r:n/2,t:-(o+3+2),b:-3},s={l:-n/2,r:n/2,t:15,b:o+3+2+12},u={l:-(n+3+2),r:-3,t:-o/2,b:o/2},a={l:3,r:n+3+2,t:-o/2,b:o/2}):"solid"===t&&(i={l:-n/2,r:n/2,t:-(r/2+o+2),b:-r/2},s={l:-n/2,r:n/2,t:r/2,b:r/2+o+2},u={l:-(n+e/2+2),r:-e/2,t:-o/2,b:o/2},a={l:e/2,r:n+e/2+2,t:-o/2,b:o/2}),{top:i,bottom:s,left:u,right:a}},O=function(t){var e=0,r=0;for(var n in"[object String]"===Object.prototype.toString.apply(t)&&(t=JSON.parse(t.toString().replace(/'/g,'"'))),t)"top"===n?r-=parseInt(t[n],10):"bottom"===n?r+=parseInt(t[n],10):"left"===n?e-=parseInt(t[n],10):"right"===n&&(e+=parseInt(t[n],10));return{extraOffsetX:e,extraOffsetY:r}},S=function(t){for(var e=t;e;){var r=window.getComputedStyle(e);if("none"!==r.getPropertyValue("transform")||"transform"===r.getPropertyValue("will-change"))break;e=e.parentElement}return{parentTop:e&&e.getBoundingClientRect().top||0,parentLeft:e&&e.getBoundingClientRect().left||0}};function _(e,r,n,o){if(r)return r;if(null!=n)return n;if(null===n)return null;var i=/<br\s*\/?>/;return o&&"false"!==o&&i.test(e)?e.split(i).map((function(e,r){return t.createElement("span",{key:r,className:"multi-line"},e)})):e}function L(t){var e={};return Object.keys(t).filter((function(t){return/(^aria-\w+$|^role$)/.test(t)})).forEach((function(r){e[r]=t[r]})),e}function A(t){var e=t.length;return t.hasOwnProperty?Array.prototype.slice.call(t):new Array(e).fill().map((function(e){return t[e]}))}var k={dark:{text:"#fff",background:"#222",border:"transparent",arrow:"#222"},success:{text:"#fff",background:"#8DC572",border:"transparent",arrow:"#8DC572"},warning:{text:"#fff",background:"#F0AD4E",border:"transparent",arrow:"#F0AD4E"},error:{text:"#fff",background:"#BE6464",border:"transparent",arrow:"#BE6464"},info:{text:"#fff",background:"#337AB7",border:"transparent",arrow:"#337AB7"},light:{text:"#222",background:"#fff",border:"transparent",arrow:"#fff"}};function C(t,e,r,n){return function(t,e){var r=e.text,n=e.background,o=e.border,i=e.arrow;return"\n \t.".concat(t," {\n\t color: ").concat(r,";\n\t background: ").concat(n,";\n\t border: 1px solid ").concat(o,";\n \t}\n\n \t.").concat(t,".place-top {\n margin-top: -10px;\n }\n .").concat(t,".place-top::before {\n border-top: 8px solid ").concat(o,";\n }\n .").concat(t,".place-top::after {\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n bottom: -6px;\n left: 50%;\n margin-left: -8px;\n border-top-color: ").concat(i,";\n border-top-style: solid;\n border-top-width: 6px;\n }\n\n .").concat(t,".place-bottom {\n margin-top: 10px;\n }\n .").concat(t,".place-bottom::before {\n border-bottom: 8px solid ").concat(o,";\n }\n .").concat(t,".place-bottom::after {\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n top: -6px;\n left: 50%;\n margin-left: -8px;\n border-bottom-color: ").concat(i,";\n border-bottom-style: solid;\n border-bottom-width: 6px;\n }\n\n .").concat(t,".place-left {\n margin-left: -10px;\n }\n .").concat(t,".place-left::before {\n border-left: 8px solid ").concat(o,";\n }\n .").concat(t,".place-left::after {\n border-top: 5px solid transparent;\n border-bottom: 5px solid transparent;\n right: -6px;\n top: 50%;\n margin-top: -4px;\n border-left-color: ").concat(i,";\n border-left-style: solid;\n border-left-width: 6px;\n }\n\n .").concat(t,".place-right {\n margin-left: 10px;\n }\n .").concat(t,".place-right::before {\n border-right: 8px solid ").concat(o,";\n }\n .").concat(t,".place-right::after {\n border-top: 5px solid transparent;\n border-bottom: 5px solid transparent;\n left: -6px;\n top: 50%;\n margin-top: -4px;\n border-right-color: ").concat(i,";\n border-right-style: solid;\n border-right-width: 6px;\n }\n ")}(t,function(t,e,r){var n=t.text,o=t.background,i=t.border,a=t.arrow?t.arrow:t.background,s=function(t){return k[t]?u({},k[t]):void 0}(e);n&&(s.text=n);o&&(s.background=o);r&&(s.border=i||("light"===e?"black":"white"));a&&(s.arrow=a);return s}(e,r,n))}var j="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function P(t,e){return t(e={exports:{}},e.exports),e.exports}var R=function(t){return t&&t.Math==Math&&t},I=R("object"==typeof globalThis&&globalThis)||R("object"==typeof window&&window)||R("object"==typeof self&&self)||R("object"==typeof j&&j)||function(){return this}()||Function("return this")(),H=function(t){try{return!!t()}catch(t){return!0}},M=!H((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),B={}.propertyIsEnumerable,D=Object.getOwnPropertyDescriptor,N={f:D&&!B.call({1:2},1)?function(t){var e=D(this,t);return!!e&&e.enumerable}:B},W=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},z={}.toString,U=function(t){return z.call(t).slice(8,-1)},F="".split,X=H((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==U(t)?F.call(t,""):Object(t)}:Object,Y=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},q=function(t){return X(Y(t))},V=function(t){return"object"==typeof t?null!==t:"function"==typeof t},G=function(t,e){if(!V(t))return t;var r,n;if(e&&"function"==typeof(r=t.toString)&&!V(n=r.call(t)))return n;if("function"==typeof(r=t.valueOf)&&!V(n=r.call(t)))return n;if(!e&&"function"==typeof(r=t.toString)&&!V(n=r.call(t)))return n;throw TypeError("Can't convert object to primitive value")},K=function(t){return Object(Y(t))},$={}.hasOwnProperty,J=function(t,e){return $.call(K(t),e)},Q=I.document,Z=V(Q)&&V(Q.createElement),tt=function(t){return Z?Q.createElement(t):{}},et=!M&&!H((function(){return 7!=Object.defineProperty(tt("div"),"a",{get:function(){return 7}}).a})),rt=Object.getOwnPropertyDescriptor,nt={f:M?rt:function(t,e){if(t=q(t),e=G(e,!0),et)try{return rt(t,e)}catch(t){}if(J(t,e))return W(!N.f.call(t,e),t[e])}},ot=function(t){if(!V(t))throw TypeError(String(t)+" is not an object");return t},it=Object.defineProperty,at={f:M?it:function(t,e,r){if(ot(t),e=G(e,!0),ot(r),et)try{return it(t,e,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},st=M?function(t,e,r){return at.f(t,e,W(1,r))}:function(t,e,r){return t[e]=r,t},ut=function(t,e){try{st(I,t,e)}catch(r){I[t]=e}return e},lt=I["__core-js_shared__"]||ut("__core-js_shared__",{}),ct=Function.toString;"function"!=typeof lt.inspectSource&&(lt.inspectSource=function(t){return ct.call(t)});var pt,ft,dt,ht=lt.inspectSource,bt=I.WeakMap,vt="function"==typeof bt&&/native code/.test(ht(bt)),gt=P((function(t){(t.exports=function(t,e){return lt[t]||(lt[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.12.1",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})})),mt=0,yt=Math.random(),wt=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++mt+yt).toString(36)},Tt=gt("keys"),Et=function(t){return Tt[t]||(Tt[t]=wt(t))},xt={},Ot=I.WeakMap;if(vt||lt.state){var St=lt.state||(lt.state=new Ot),_t=St.get,Lt=St.has,At=St.set;pt=function(t,e){if(Lt.call(St,t))throw new TypeError("Object already initialized");return e.facade=t,At.call(St,t,e),e},ft=function(t){return _t.call(St,t)||{}},dt=function(t){return Lt.call(St,t)}}else{var kt=Et("state");xt[kt]=!0,pt=function(t,e){if(J(t,kt))throw new TypeError("Object already initialized");return e.facade=t,st(t,kt,e),e},ft=function(t){return J(t,kt)?t[kt]:{}},dt=function(t){return J(t,kt)}}var Ct,jt,Pt={set:pt,get:ft,has:dt,enforce:function(t){return dt(t)?ft(t):pt(t,{})},getterFor:function(t){return function(e){var r;if(!V(e)||(r=ft(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return r}}},Rt=P((function(t){var e=Pt.get,r=Pt.enforce,n=String(String).split("String");(t.exports=function(t,e,o,i){var a,s=!!i&&!!i.unsafe,u=!!i&&!!i.enumerable,l=!!i&&!!i.noTargetGet;"function"==typeof o&&("string"!=typeof e||J(o,"name")||st(o,"name",e),(a=r(o)).source||(a.source=n.join("string"==typeof e?e:""))),t!==I?(s?!l&&t[e]&&(u=!0):delete t[e],u?t[e]=o:st(t,e,o)):u?t[e]=o:ut(e,o)})(Function.prototype,"toString",(function(){return"function"==typeof this&&e(this).source||ht(this)}))})),It=I,Ht=function(t){return"function"==typeof t?t:void 0},Mt=function(t,e){return arguments.length<2?Ht(It[t])||Ht(I[t]):It[t]&&It[t][e]||I[t]&&I[t][e]},Bt=Math.ceil,Dt=Math.floor,Nt=function(t){return isNaN(t=+t)?0:(t>0?Dt:Bt)(t)},Wt=Math.min,zt=function(t){return t>0?Wt(Nt(t),9007199254740991):0},Ut=Math.max,Ft=Math.min,Xt=function(t){return function(e,r,n){var o,i=q(e),a=zt(i.length),s=function(t,e){var r=Nt(t);return r<0?Ut(r+e,0):Ft(r,e)}(n,a);if(t&&r!=r){for(;a>s;)if((o=i[s++])!=o)return!0}else for(;a>s;s++)if((t||s in i)&&i[s]===r)return t||s||0;return!t&&-1}},Yt={includes:Xt(!0),indexOf:Xt(!1)}.indexOf,qt=function(t,e){var r,n=q(t),o=0,i=[];for(r in n)!J(xt,r)&&J(n,r)&&i.push(r);for(;e.length>o;)J(n,r=e[o++])&&(~Yt(i,r)||i.push(r));return i},Vt=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Gt=Vt.concat("length","prototype"),Kt={f:Object.getOwnPropertyNames||function(t){return qt(t,Gt)}},$t={f:Object.getOwnPropertySymbols},Jt=Mt("Reflect","ownKeys")||function(t){var e=Kt.f(ot(t)),r=$t.f;return r?e.concat(r(t)):e},Qt=function(t,e){for(var r=Jt(e),n=at.f,o=nt.f,i=0;i<r.length;i++){var a=r[i];J(t,a)||n(t,a,o(e,a))}},Zt=/#|\.prototype\./,te=function(t,e){var r=re[ee(t)];return r==oe||r!=ne&&("function"==typeof e?H(e):!!e)},ee=te.normalize=function(t){return String(t).replace(Zt,".").toLowerCase()},re=te.data={},ne=te.NATIVE="N",oe=te.POLYFILL="P",ie=te,ae=nt.f,se=function(t,e,r){if(function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function")}(t),void 0===e)return t;switch(r){case 0:return function(){return t.call(e)};case 1:return function(r){return t.call(e,r)};case 2:return function(r,n){return t.call(e,r,n)};case 3:return function(r,n,o){return t.call(e,r,n,o)}}return function(){return t.apply(e,arguments)}},ue=Array.isArray||function(t){return"Array"==U(t)},le=Mt("navigator","userAgent")||"",ce=I.process,pe=ce&&ce.versions,fe=pe&&pe.v8;fe?jt=(Ct=fe.split("."))[0]<4?1:Ct[0]+Ct[1]:le&&(!(Ct=le.match(/Edge\/(\d+)/))||Ct[1]>=74)&&(Ct=le.match(/Chrome\/(\d+)/))&&(jt=Ct[1]);var de,he=jt&&+jt,be=!!Object.getOwnPropertySymbols&&!H((function(){return!String(Symbol())||!Symbol.sham&&he&&he<41})),ve=be&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,ge=gt("wks"),me=I.Symbol,ye=ve?me:me&&me.withoutSetter||wt,we=function(t){return J(ge,t)&&(be||"string"==typeof ge[t])||(be&&J(me,t)?ge[t]=me[t]:ge[t]=ye("Symbol."+t)),ge[t]},Te=we("species"),Ee=function(t,e){var r;return ue(t)&&("function"!=typeof(r=t.constructor)||r!==Array&&!ue(r.prototype)?V(r)&&null===(r=r[Te])&&(r=void 0):r=void 0),new(void 0===r?Array:r)(0===e?0:e)},xe=[].push,Oe=function(t){var e=1==t,r=2==t,n=3==t,o=4==t,i=6==t,a=7==t,s=5==t||i;return function(u,l,c,p){for(var f,d,h=K(u),b=X(h),v=se(l,c,3),g=zt(b.length),m=0,y=p||Ee,w=e?y(u,g):r||a?y(u,0):void 0;g>m;m++)if((s||m in b)&&(d=v(f=b[m],m,h),t))if(e)w[m]=d;else if(d)switch(t){case 3:return!0;case 5:return f;case 6:return m;case 2:xe.call(w,f)}else switch(t){case 4:return!1;case 7:xe.call(w,f)}return i?-1:n||o?o:w}},Se={forEach:Oe(0),map:Oe(1),filter:Oe(2),some:Oe(3),every:Oe(4),find:Oe(5),findIndex:Oe(6),filterOut:Oe(7)},_e=Object.keys||function(t){return qt(t,Vt)},Le=M?Object.defineProperties:function(t,e){ot(t);for(var r,n=_e(e),o=n.length,i=0;o>i;)at.f(t,r=n[i++],e[r]);return t},Ae=Mt("document","documentElement"),ke=Et("IE_PROTO"),Ce=function(){},je=function(t){return"<script>"+t+"<\/script>"},Pe=function(){try{de=document.domain&&new ActiveXObject("htmlfile")}catch(t){}var t,e;Pe=de?function(t){t.write(je("")),t.close();var e=t.parentWindow.Object;return t=null,e}(de):((e=tt("iframe")).style.display="none",Ae.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(je("document.F=Object")),t.close(),t.F);for(var r=Vt.length;r--;)delete Pe.prototype[Vt[r]];return Pe()};xt[ke]=!0;var Re=Object.create||function(t,e){var r;return null!==t?(Ce.prototype=ot(t),r=new Ce,Ce.prototype=null,r[ke]=t):r=Pe(),void 0===e?r:Le(r,e)},Ie=we("unscopables"),He=Array.prototype;null==He[Ie]&&at.f(He,Ie,{configurable:!0,value:Re(null)});var Me,Be,De,Ne,We=Se.find,ze=!0;"find"in[]&&Array(1).find((function(){ze=!1})),function(t,e){var r,n,o,i,a,s=t.target,u=t.global,l=t.stat;if(r=u?I:l?I[s]||ut(s,{}):(I[s]||{}).prototype)for(n in e){if(i=e[n],o=t.noTargetGet?(a=ae(r,n))&&a.value:r[n],!ie(u?n:s+(l?".":"#")+n,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;Qt(i,o)}(t.sham||o&&o.sham)&&st(i,"sham",!0),Rt(r,n,i,t)}}({target:"Array",proto:!0,forced:ze},{find:function(t){return We(this,t,arguments.length>1?arguments[1]:void 0)}}),Me="find",He[Ie][Me]=!0;var Ue,Fe=function(t){t.hide=function(t){d(f.HIDE,{target:t})},t.rebuild=function(){d(f.REBUILD)},t.show=function(t){d(f.SHOW,{target:t})},t.prototype.globalRebuild=function(){this.mount&&(this.unbindListener(),this.bindListener())},t.prototype.globalShow=function(t){if(this.mount){var e=!!(t&&t.detail&&t.detail.target);this.showTooltip({currentTarget:e&&t.detail.target},!0)}},t.prototype.globalHide=function(t){if(this.mount){var e=!!(t&&t.detail&&t.detail.target);this.hideTooltip({currentTarget:e&&t.detail.target},e)}}}(Be=function(t){t.prototype.bindWindowEvents=function(t){window.removeEventListener(f.HIDE,this.globalHide),window.addEventListener(f.HIDE,this.globalHide,!1),window.removeEventListener(f.REBUILD,this.globalRebuild),window.addEventListener(f.REBUILD,this.globalRebuild,!1),window.removeEventListener(f.SHOW,this.globalShow),window.addEventListener(f.SHOW,this.globalShow,!1),t&&(window.removeEventListener("resize",this.onWindowResize),window.addEventListener("resize",this.onWindowResize,!1))},t.prototype.unbindWindowEvents=function(){window.removeEventListener(f.HIDE,this.globalHide),window.removeEventListener(f.REBUILD,this.globalRebuild),window.removeEventListener(f.SHOW,this.globalShow),window.removeEventListener("resize",this.onWindowResize)},t.prototype.onWindowResize=function(){this.mount&&this.hideTooltip()}}(Be=function(t){t.prototype.isCustomEvent=function(t){return this.state.event||!!t.getAttribute("data-event")},t.prototype.customBindListener=function(t){var e=this,r=this.state,n=r.event,o=r.eventOff,i=t.getAttribute("data-event")||n,a=t.getAttribute("data-event-off")||o;i.split(" ").forEach((function(r){t.removeEventListener(r,v.get(t,r));var n=h.bind(e,a);v.set(t,r,n),t.addEventListener(r,n,!1)})),a&&a.split(" ").forEach((function(r){t.removeEventListener(r,e.hideTooltip),t.addEventListener(r,e.hideTooltip,!1)}))},t.prototype.customUnbindListener=function(t){var e=this.state,r=e.event,n=e.eventOff,o=r||t.getAttribute("data-event"),i=n||t.getAttribute("data-event-off");t.removeEventListener(o,v.get(t,r)),i&&t.removeEventListener(i,this.hideTooltip)}}(Be=function(t){t.prototype.isCapture=function(t){return t&&"true"===t.getAttribute("data-iscapture")||this.props.isCapture||!1}}(Be=function(t){t.prototype.getEffect=function(t){return t.getAttribute("data-effect")||this.props.effect||"float"}}(Be=function(t){t.prototype.isBodyMode=function(){return!!this.props.bodyMode},t.prototype.bindBodyListener=function(t){var e=this,r=this.state,n=r.event,o=r.eventOff,i=r.possibleCustomEvents,a=r.possibleCustomEventsOff,s=y(),u=m(t,"data-event"),l=m(t,"data-event-off");null!=n&&(u[n]=!0),null!=o&&(l[o]=!0),i.split(" ").forEach((function(t){return u[t]=!0})),a.split(" ").forEach((function(t){return l[t]=!0})),this.unbindBodyListener(s);var c=this.bodyModeListeners={};for(var p in null==n&&(c.mouseover=g.bind(this,this.showTooltip,{}),c.mousemove=g.bind(this,this.updateTooltip,{respectEffect:!0}),c.mouseout=g.bind(this,this.hideTooltip,{})),u)c[p]=g.bind(this,(function(t){var r=t.currentTarget.getAttribute("data-event-off")||o;h.call(e,r,t)}),{customEvent:!0});for(var f in l)c[f]=g.bind(this,this.hideTooltip,{customEvent:!0});for(var d in c)s.addEventListener(d,c[d])},t.prototype.unbindBodyListener=function(t){t=t||y();var e=this.bodyModeListeners;for(var r in e)t.removeEventListener(r,e[r])}}((Ne=De=function(n){function i(t){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,i),(r=p(this,l(i).call(this,t))).state={uuid:t.uuid||"t"+e(),place:t.place||"top",desiredPlace:t.place||"top",type:"dark",effect:"float",show:!1,border:!1,customColors:{},offset:{},extraClass:"",html:!1,delayHide:0,delayShow:0,event:t.event||null,eventOff:t.eventOff||null,currentEvent:null,currentTarget:null,ariaProps:L(t),isEmptyTip:!1,disable:!1,possibleCustomEvents:t.possibleCustomEvents||"",possibleCustomEventsOff:t.possibleCustomEventsOff||"",originTooltip:null,isMultiline:!1},r.bind(["showTooltip","updateTooltip","hideTooltip","hideTooltipOnScroll","getTooltipContent","globalRebuild","globalShow","globalHide","onWindowResize","mouseOnToolTip"]),r.mount=!0,r.delayShowLoop=null,r.delayHideLoop=null,r.delayReshow=null,r.intervalUpdateContent=null,r}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&c(t,e)}(i,t.Component),o(i,null,[{key:"propTypes",get:function(){return{uuid:r.exports.string,children:r.exports.any,place:r.exports.string,type:r.exports.string,effect:r.exports.string,offset:r.exports.object,multiline:r.exports.bool,border:r.exports.bool,textColor:r.exports.string,backgroundColor:r.exports.string,borderColor:r.exports.string,arrowColor:r.exports.string,insecure:r.exports.bool,class:r.exports.string,className:r.exports.string,id:r.exports.string,html:r.exports.bool,delayHide:r.exports.number,delayUpdate:r.exports.number,delayShow:r.exports.number,event:r.exports.string,eventOff:r.exports.string,isCapture:r.exports.bool,globalEventOff:r.exports.string,getContent:r.exports.any,afterShow:r.exports.func,afterHide:r.exports.func,overridePosition:r.exports.func,disable:r.exports.bool,scrollHide:r.exports.bool,resizeHide:r.exports.bool,wrapper:r.exports.string,bodyMode:r.exports.bool,possibleCustomEvents:r.exports.string,possibleCustomEventsOff:r.exports.string,clickable:r.exports.bool}}}]),o(i,[{key:"bind",value:function(t){var e=this;t.forEach((function(t){e[t]=e[t].bind(e)}))}},{key:"componentDidMount",value:function(){var t=this.props;t.insecure;var e=t.resizeHide;this.bindListener(),this.bindWindowEvents(e),this.injectStyles()}},{key:"componentWillUnmount",value:function(){this.mount=!1,this.clearTimer(),this.unbindListener(),this.removeScrollListener(this.state.currentTarget),this.unbindWindowEvents()}},{key:"injectStyles",value:function(){var t=this.tooltipRef;if(t){for(var e,r=t.parentNode;r.parentNode;)r=r.parentNode;switch(r.constructor.name){case"Document":case"HTMLDocument":case void 0:e=r.head;break;default:e=r}if(!e.querySelector("style[data-react-tooltip]")){var n=document.createElement("style");n.textContent='.__react_component_tooltip {\n border-radius: 3px;\n display: inline-block;\n font-size: 13px;\n left: -999em;\n opacity: 0;\n padding: 8px 21px;\n position: fixed;\n pointer-events: none;\n transition: opacity 0.3s ease-out;\n top: -999em;\n visibility: hidden;\n z-index: 999;\n}\n.__react_component_tooltip.allow_hover, .__react_component_tooltip.allow_click {\n pointer-events: auto;\n}\n.__react_component_tooltip::before, .__react_component_tooltip::after {\n content: "";\n width: 0;\n height: 0;\n position: absolute;\n}\n.__react_component_tooltip.show {\n opacity: 0.9;\n margin-top: 0;\n margin-left: 0;\n visibility: visible;\n}\n.__react_component_tooltip.place-top::before {\n border-left: 10px solid transparent;\n border-right: 10px solid transparent;\n bottom: -8px;\n left: 50%;\n margin-left: -10px;\n}\n.__react_component_tooltip.place-bottom::before {\n border-left: 10px solid transparent;\n border-right: 10px solid transparent;\n top: -8px;\n left: 50%;\n margin-left: -10px;\n}\n.__react_component_tooltip.place-left::before {\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n right: -8px;\n top: 50%;\n margin-top: -5px;\n}\n.__react_component_tooltip.place-right::before {\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n left: -8px;\n top: 50%;\n margin-top: -5px;\n}\n.__react_component_tooltip .multi-line {\n display: block;\n padding: 2px 0;\n text-align: center;\n}',n.setAttribute("data-react-tooltip","true"),e.appendChild(n)}}}},{key:"mouseOnToolTip",value:function(){return!(!this.state.show||!this.tooltipRef)&&(this.tooltipRef.matches||(this.tooltipRef.msMatchesSelector?this.tooltipRef.matches=this.tooltipRef.msMatchesSelector:this.tooltipRef.matches=this.tooltipRef.mozMatchesSelector),this.tooltipRef.matches(":hover"))}},{key:"getTargetArray",value:function(t){var e,r=[];if(t){var n=t.replace(/\\/g,"\\\\").replace(/"/g,'\\"');e='[data-tip][data-for="'.concat(n,'"]')}else e="[data-tip]:not([data-for])";return A(document.getElementsByTagName("*")).filter((function(t){return t.shadowRoot})).forEach((function(t){r=r.concat(A(t.shadowRoot.querySelectorAll(e)))})),r.concat(A(document.querySelectorAll(e)))}},{key:"bindListener",value:function(){var t=this,e=this.props,r=e.id,n=e.globalEventOff,o=e.isCapture,i=this.getTargetArray(r);i.forEach((function(e){null===e.getAttribute("currentItem")&&e.setAttribute("currentItem","false"),t.unbindBasicListener(e),t.isCustomEvent(e)&&t.customUnbindListener(e)})),this.isBodyMode()?this.bindBodyListener(i):i.forEach((function(e){var r=t.isCapture(e),n=t.getEffect(e);t.isCustomEvent(e)?t.customBindListener(e):(e.addEventListener("mouseenter",t.showTooltip,r),e.addEventListener("focus",t.showTooltip,r),"float"===n&&e.addEventListener("mousemove",t.updateTooltip,r),e.addEventListener("mouseleave",t.hideTooltip,r),e.addEventListener("blur",t.hideTooltip,r))})),n&&(window.removeEventListener(n,this.hideTooltip),window.addEventListener(n,this.hideTooltip,o)),this.bindRemovalTracker()}},{key:"unbindListener",value:function(){var t=this,e=this.props,r=e.id,n=e.globalEventOff;this.isBodyMode()?this.unbindBodyListener():this.getTargetArray(r).forEach((function(e){t.unbindBasicListener(e),t.isCustomEvent(e)&&t.customUnbindListener(e)})),n&&window.removeEventListener(n,this.hideTooltip),this.unbindRemovalTracker()}},{key:"unbindBasicListener",value:function(t){var e=this.isCapture(t);t.removeEventListener("mouseenter",this.showTooltip,e),t.removeEventListener("mousemove",this.updateTooltip,e),t.removeEventListener("mouseleave",this.hideTooltip,e)}},{key:"getTooltipContent",value:function(){var t,e=this.props,r=e.getContent,n=e.children;return r&&(t=Array.isArray(r)?r[0]&&r[0](this.state.originTooltip):r(this.state.originTooltip)),_(this.state.originTooltip,n,t,this.state.isMultiline)}},{key:"isEmptyTip",value:function(t){return"string"==typeof t&&""===t||null===t}},{key:"showTooltip",value:function(t,e){if(this.tooltipRef){if(e&&!this.getTargetArray(this.props.id).some((function(e){return e===t.currentTarget})))return;var r=this.props,n=r.multiline,o=r.getContent,i=t.currentTarget.getAttribute("data-tip"),a=t.currentTarget.getAttribute("data-multiline")||n||!1,s=t instanceof window.FocusEvent||e,u=!0;t.currentTarget.getAttribute("data-scroll-hide")?u="true"===t.currentTarget.getAttribute("data-scroll-hide"):null!=this.props.scrollHide&&(u=this.props.scrollHide),t&&t.currentTarget&&t.currentTarget.setAttribute&&t.currentTarget.setAttribute("aria-describedby",this.state.uuid);var l=t.currentTarget.getAttribute("data-place")||this.props.place||"top",c=s?"solid":this.getEffect(t.currentTarget),p=t.currentTarget.getAttribute("data-offset")||this.props.offset||{},f=w(t,t.currentTarget,this.tooltipRef,l,l,c,p);f.position&&this.props.overridePosition&&(f.position=this.props.overridePosition(f.position,t,t.currentTarget,this.tooltipRef,l,l,c,p));var d=f.isNewState?f.newState.place:l;this.clearTimer();var h=t.currentTarget,b=this.state.show?h.getAttribute("data-delay-update")||this.props.delayUpdate:0,v=this,g=function(){v.setState({originTooltip:i,isMultiline:a,desiredPlace:l,place:d,type:h.getAttribute("data-type")||v.props.type||"dark",customColors:{text:h.getAttribute("data-text-color")||v.props.textColor||null,background:h.getAttribute("data-background-color")||v.props.backgroundColor||null,border:h.getAttribute("data-border-color")||v.props.borderColor||null,arrow:h.getAttribute("data-arrow-color")||v.props.arrowColor||null},effect:c,offset:p,html:(h.getAttribute("data-html")?"true"===h.getAttribute("data-html"):v.props.html)||!1,delayShow:h.getAttribute("data-delay-show")||v.props.delayShow||0,delayHide:h.getAttribute("data-delay-hide")||v.props.delayHide||0,delayUpdate:h.getAttribute("data-delay-update")||v.props.delayUpdate||0,border:(h.getAttribute("data-border")?"true"===h.getAttribute("data-border"):v.props.border)||!1,extraClass:h.getAttribute("data-class")||v.props.class||v.props.className||"",disable:(h.getAttribute("data-tip-disable")?"true"===h.getAttribute("data-tip-disable"):v.props.disable)||!1,currentTarget:h},(function(){u&&v.addScrollListener(v.state.currentTarget),v.updateTooltip(t),o&&Array.isArray(o)&&(v.intervalUpdateContent=setInterval((function(){if(v.mount){var t=v.props.getContent,e=_(i,"",t[0](),a),r=v.isEmptyTip(e);v.setState({isEmptyTip:r}),v.updatePosition()}}),o[1]))}))};b?this.delayReshow=setTimeout(g,b):g()}}},{key:"updateTooltip",value:function(t){var e=this,r=this.state,n=r.delayShow,o=r.disable,i=this.props.afterShow,a=this.getTooltipContent(),s=t.currentTarget||t.target;if(!this.mouseOnToolTip()&&!this.isEmptyTip(a)&&!o){var u=this.state.show?0:parseInt(n,10),l=function(){if(Array.isArray(a)&&a.length>0||a){var r=!e.state.show;e.setState({currentEvent:t,currentTarget:s,show:!0},(function(){e.updatePosition(),r&&i&&i(t)}))}};clearTimeout(this.delayShowLoop),u?this.delayShowLoop=setTimeout(l,u):l()}}},{key:"listenForTooltipExit",value:function(){this.state.show&&this.tooltipRef&&this.tooltipRef.addEventListener("mouseleave",this.hideTooltip)}},{key:"removeListenerForTooltipExit",value:function(){this.state.show&&this.tooltipRef&&this.tooltipRef.removeEventListener("mouseleave",this.hideTooltip)}},{key:"hideTooltip",value:function(t,e){var r=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{isScroll:!1},o=this.state.disable,i=n.isScroll,a=i?0:this.state.delayHide,s=this.props.afterHide,u=this.getTooltipContent();if(this.mount&&!this.isEmptyTip(u)&&!o){if(e){var l=this.getTargetArray(this.props.id),c=l.some((function(e){return e===t.currentTarget}));if(!c||!this.state.show)return}t&&t.currentTarget&&t.currentTarget.removeAttribute&&t.currentTarget.removeAttribute("aria-describedby");var p=function(){var e=r.state.show;r.mouseOnToolTip()?r.listenForTooltipExit():(r.removeListenerForTooltipExit(),r.setState({show:!1},(function(){r.removeScrollListener(r.state.currentTarget),e&&s&&s(t)})))};this.clearTimer(),a?this.delayHideLoop=setTimeout(p,parseInt(a,10)):p()}}},{key:"hideTooltipOnScroll",value:function(t,e){this.hideTooltip(t,e,{isScroll:!0})}},{key:"addScrollListener",value:function(t){var e=this.isCapture(t);window.addEventListener("scroll",this.hideTooltipOnScroll,e)}},{key:"removeScrollListener",value:function(t){var e=this.isCapture(t);window.removeEventListener("scroll",this.hideTooltipOnScroll,e)}},{key:"updatePosition",value:function(){var t=this,e=this.state,r=e.currentEvent,n=e.currentTarget,o=e.place,i=e.desiredPlace,a=e.effect,s=e.offset,u=this.tooltipRef,l=w(r,n,u,o,i,a,s);if(l.position&&this.props.overridePosition&&(l.position=this.props.overridePosition(l.position,r,n,u,o,i,a,s)),l.isNewState)return this.setState(l.newState,(function(){t.updatePosition()}));u.style.left=l.position.left+"px",u.style.top=l.position.top+"px"}},{key:"clearTimer",value:function(){clearTimeout(this.delayShowLoop),clearTimeout(this.delayHideLoop),clearTimeout(this.delayReshow),clearInterval(this.intervalUpdateContent)}},{key:"hasCustomColors",value:function(){var t=this;return Boolean(Object.keys(this.state.customColors).find((function(e){return"border"!==e&&t.state.customColors[e]}))||this.state.border&&this.state.customColors.border)}},{key:"render",value:function(){var e=this,r=this.state,n=r.extraClass,o=r.html,s=r.ariaProps,u=r.disable,l=r.uuid,c=this.getTooltipContent(),p=this.isEmptyTip(c),f=C(this.state.uuid,this.state.customColors,this.state.type,this.state.border),d="__react_component_tooltip"+" ".concat(this.state.uuid)+(!this.state.show||u||p?"":" show")+(this.state.border?" border":"")+" place-".concat(this.state.place)+" type-".concat(this.hasCustomColors()?"custom":this.state.type)+(this.props.delayUpdate?" allow_hover":"")+(this.props.clickable?" allow_click":""),h=this.props.wrapper;i.supportedWrappers.indexOf(h)<0&&(h=i.defaultProps.wrapper);var b=[d,n].filter(Boolean).join(" ");if(o){var v="".concat(c,'\n<style aria-hidden="true">').concat(f,"</style>");return t.createElement(h,a({className:"".concat(b),id:this.props.id||l,ref:function(t){return e.tooltipRef=t}},s,{"data-id":"tooltip",dangerouslySetInnerHTML:{__html:v}}))}return t.createElement(h,a({className:"".concat(b),id:this.props.id||l},s,{ref:function(t){return e.tooltipRef=t},"data-id":"tooltip"}),t.createElement("style",{dangerouslySetInnerHTML:{__html:f},"aria-hidden":"true"}),c)}}],[{key:"getDerivedStateFromProps",value:function(t,e){var r=e.ariaProps,n=L(t);return Object.keys(n).some((function(t){return n[t]!==r[t]}))?u({},e,{ariaProps:n}):null}}]),i}(),i(De,"defaultProps",{insecure:!0,resizeHide:!0,wrapper:"div",clickable:!1}),i(De,"supportedWrappers",["div","span"]),i(De,"displayName","ReactTooltip"),(Ue=Be=Ne).prototype.bindRemovalTracker=function(){var t=this,e=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;if(null!=e){var r=new e((function(e){for(var r=0;r<e.length;r++)for(var n=e[r],o=0;o<n.removedNodes.length;o++)if(n.removedNodes[o]===t.state.currentTarget)return void t.hideTooltip()}));r.observe(window.document,{childList:!0,subtree:!0}),this.removalTracker=r}},Be=void(Ue.prototype.unbindRemovalTracker=function(){this.removalTracker&&(this.removalTracker.disconnect(),this.removalTracker=null)})||Be))||Be)||Be)||Be)||Be)||Be)||Be;export{Fe as default};
@@ -1 +0,0 @@
1
- function e(e,t){void 0===t&&(t={});var d=t.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css","top"===d&&n.firstChild?n.insertBefore(s,n.firstChild):n.appendChild(s),s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e))}}export{e as default};
@@ -1 +0,0 @@
1
- var t=function(n,r){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])},t(n,r)};function n(n,r){if("function"!=typeof r&&null!==r)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");function e(){this.constructor=n}t(n,r),n.prototype=null===r?Object.create(r):(e.prototype=r.prototype,new e)}var r=function(){return r=Object.assign||function(t){for(var n,r=1,e=arguments.length;r<e;r++)for(var o in n=arguments[r])Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o]);return t},r.apply(this,arguments)};function e(t,n){var r={};for(var e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.indexOf(e)<0&&(r[e]=t[e]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(e=Object.getOwnPropertySymbols(t);o<e.length;o++)n.indexOf(e[o])<0&&Object.prototype.propertyIsEnumerable.call(t,e[o])&&(r[e[o]]=t[e[o]])}return r}function o(t,n,r,e){return new(r||(r=Promise))((function(o,c){function a(t){try{i(e.next(t))}catch(t){c(t)}}function l(t){try{i(e.throw(t))}catch(t){c(t)}}function i(t){var n;t.done?o(t.value):(n=t.value,n instanceof r?n:new r((function(t){t(n)}))).then(a,l)}i((e=e.apply(t,n||[])).next())}))}function c(t,n){var r,e,o,c,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return c={next:l(0),throw:l(1),return:l(2)},"function"==typeof Symbol&&(c[Symbol.iterator]=function(){return this}),c;function l(c){return function(l){return function(c){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,e&&(o=2&c[0]?e.return:c[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,c[1])).done)return o;switch(e=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return a.label++,{value:c[1],done:!1};case 5:a.label++,e=c[1],c=[0];continue;case 7:c=a.ops.pop(),a.trys.pop();continue;default:if(!(o=a.trys,(o=o.length>0&&o[o.length-1])||6!==c[0]&&2!==c[0])){a=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){a.label=c[1];break}if(6===c[0]&&a.label<o[1]){a.label=o[1],o=c;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(c);break}o[2]&&a.ops.pop(),a.trys.pop();continue}c=n.call(t,a)}catch(t){c=[6,t],e=0}finally{r=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,l])}}}function a(t,n,r){if(r||2===arguments.length)for(var e,o=0,c=n.length;o<c;o++)!e&&o in n||(e||(e=Array.prototype.slice.call(n,0,o)),e[o]=n[o]);return t.concat(e||Array.prototype.slice.call(n))}export{r as __assign,o as __awaiter,n as __extends,c as __generator,e as __rest,a as __spreadArray};
@@ -1 +0,0 @@
1
- for(var r=[],t=0;t<256;++t)r[t]=(t+256).toString(16).substr(1);function n(t,n){var o=n||0,a=r;return[a[t[o++]],a[t[o++]],a[t[o++]],a[t[o++]],"-",a[t[o++]],a[t[o++]],"-",a[t[o++]],a[t[o++]],"-",a[t[o++]],a[t[o++]],"-",a[t[o++]],a[t[o++]],a[t[o++]],a[t[o++]],a[t[o++]],a[t[o++]]].join("")}export{n as default};
@@ -1 +0,0 @@
1
- function n(n){if("string"==typeof n){var t=unescape(encodeURIComponent(n));n=new Array(t.length);for(var a=0;a<t.length;a++)n[a]=t.charCodeAt(a)}return function(n){var r,t,e,u=[],o=32*n.length,f="0123456789abcdef";for(r=0;r<o;r+=8)t=n[r>>5]>>>r%32&255,e=parseInt(f.charAt(t>>>4&15)+f.charAt(15&t),16),u.push(e);return u}(function(n,t){var a,c,i,h,v;n[t>>5]|=128<<t%32,n[14+(t+64>>>9<<4)]=t;var g=1732584193,l=-271733879,p=-1732584194,d=271733878;for(a=0;a<n.length;a+=16)c=g,i=l,h=p,v=d,g=e(g,l,p,d,n[a],7,-680876936),d=e(d,g,l,p,n[a+1],12,-389564586),p=e(p,d,g,l,n[a+2],17,606105819),l=e(l,p,d,g,n[a+3],22,-1044525330),g=e(g,l,p,d,n[a+4],7,-176418897),d=e(d,g,l,p,n[a+5],12,1200080426),p=e(p,d,g,l,n[a+6],17,-1473231341),l=e(l,p,d,g,n[a+7],22,-45705983),g=e(g,l,p,d,n[a+8],7,1770035416),d=e(d,g,l,p,n[a+9],12,-1958414417),p=e(p,d,g,l,n[a+10],17,-42063),l=e(l,p,d,g,n[a+11],22,-1990404162),g=e(g,l,p,d,n[a+12],7,1804603682),d=e(d,g,l,p,n[a+13],12,-40341101),p=e(p,d,g,l,n[a+14],17,-1502002290),g=u(g,l=e(l,p,d,g,n[a+15],22,1236535329),p,d,n[a+1],5,-165796510),d=u(d,g,l,p,n[a+6],9,-1069501632),p=u(p,d,g,l,n[a+11],14,643717713),l=u(l,p,d,g,n[a],20,-373897302),g=u(g,l,p,d,n[a+5],5,-701558691),d=u(d,g,l,p,n[a+10],9,38016083),p=u(p,d,g,l,n[a+15],14,-660478335),l=u(l,p,d,g,n[a+4],20,-405537848),g=u(g,l,p,d,n[a+9],5,568446438),d=u(d,g,l,p,n[a+14],9,-1019803690),p=u(p,d,g,l,n[a+3],14,-187363961),l=u(l,p,d,g,n[a+8],20,1163531501),g=u(g,l,p,d,n[a+13],5,-1444681467),d=u(d,g,l,p,n[a+2],9,-51403784),p=u(p,d,g,l,n[a+7],14,1735328473),g=o(g,l=u(l,p,d,g,n[a+12],20,-1926607734),p,d,n[a+5],4,-378558),d=o(d,g,l,p,n[a+8],11,-2022574463),p=o(p,d,g,l,n[a+11],16,1839030562),l=o(l,p,d,g,n[a+14],23,-35309556),g=o(g,l,p,d,n[a+1],4,-1530992060),d=o(d,g,l,p,n[a+4],11,1272893353),p=o(p,d,g,l,n[a+7],16,-155497632),l=o(l,p,d,g,n[a+10],23,-1094730640),g=o(g,l,p,d,n[a+13],4,681279174),d=o(d,g,l,p,n[a],11,-358537222),p=o(p,d,g,l,n[a+3],16,-722521979),l=o(l,p,d,g,n[a+6],23,76029189),g=o(g,l,p,d,n[a+9],4,-640364487),d=o(d,g,l,p,n[a+12],11,-421815835),p=o(p,d,g,l,n[a+15],16,530742520),g=f(g,l=o(l,p,d,g,n[a+2],23,-995338651),p,d,n[a],6,-198630844),d=f(d,g,l,p,n[a+7],10,1126891415),p=f(p,d,g,l,n[a+14],15,-1416354905),l=f(l,p,d,g,n[a+5],21,-57434055),g=f(g,l,p,d,n[a+12],6,1700485571),d=f(d,g,l,p,n[a+3],10,-1894986606),p=f(p,d,g,l,n[a+10],15,-1051523),l=f(l,p,d,g,n[a+1],21,-2054922799),g=f(g,l,p,d,n[a+8],6,1873313359),d=f(d,g,l,p,n[a+15],10,-30611744),p=f(p,d,g,l,n[a+6],15,-1560198380),l=f(l,p,d,g,n[a+13],21,1309151649),g=f(g,l,p,d,n[a+4],6,-145523070),d=f(d,g,l,p,n[a+11],10,-1120210379),p=f(p,d,g,l,n[a+2],15,718787259),l=f(l,p,d,g,n[a+9],21,-343485551),g=r(g,c),l=r(l,i),p=r(p,h),d=r(d,v);return[g,l,p,d]}(function(n){var r,t=[];for(t[(n.length>>2)-1]=void 0,r=0;r<t.length;r+=1)t[r]=0;var e=8*n.length;for(r=0;r<e;r+=8)t[r>>5]|=(255&n[r/8])<<r%32;return t}(n),8*n.length))}function r(n,r){var t=(65535&n)+(65535&r);return(n>>16)+(r>>16)+(t>>16)<<16|65535&t}function t(n,t,e,u,o,f){return r((a=r(r(t,n),r(u,f)))<<(c=o)|a>>>32-c,e);var a,c}function e(n,r,e,u,o,f,a){return t(r&e|~r&u,n,r,o,f,a)}function u(n,r,e,u,o,f,a){return t(r&u|e&~u,n,r,o,f,a)}function o(n,r,e,u,o,f,a){return t(r^e^u,n,r,o,f,a)}function f(n,r,e,u,o,f,a){return t(e^(r|~u),n,r,o,f,a)}export{n as default};
@@ -1 +0,0 @@
1
- var t="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),e=new Uint8Array(16);function o(){if(!t)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return t(e)}export{o as default};
@@ -1 +0,0 @@
1
- function r(r,e,n,a){switch(r){case 0:return e&n^~e&a;case 1:case 3:return e^n^a;case 2:return e&n^e&a^n&a}}function e(r,e){return r<<e|r>>>32-e}function n(n){var a=[1518500249,1859775393,2400959708,3395469782],t=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof n){var o=unescape(encodeURIComponent(n));n=new Array(o.length);for(var f=0;f<o.length;f++)n[f]=o.charCodeAt(f)}n.push(128);var c=n.length/4+2,h=Math.ceil(c/16),u=new Array(h);for(f=0;f<h;f++){u[f]=new Array(16);for(var l=0;l<16;l++)u[f][l]=n[64*f+4*l]<<24|n[64*f+4*l+1]<<16|n[64*f+4*l+2]<<8|n[64*f+4*l+3]}u[h-1][14]=8*(n.length-1)/Math.pow(2,32),u[h-1][14]=Math.floor(u[h-1][14]),u[h-1][15]=8*(n.length-1)&4294967295;for(f=0;f<h;f++){for(var s=new Array(80),v=0;v<16;v++)s[v]=u[f][v];for(v=16;v<80;v++)s[v]=e(s[v-3]^s[v-8]^s[v-14]^s[v-16],1);var i=t[0],g=t[1],p=t[2],w=t[3],y=t[4];for(v=0;v<80;v++){var A=Math.floor(v/20),M=e(i,5)+r(A,g,p,w)+y+a[A]+s[v]>>>0;y=w,w=p,p=e(g,30)>>>0,g=i,i=M}t[0]=t[0]+i>>>0,t[1]=t[1]+g>>>0,t[2]=t[2]+p>>>0,t[3]=t[3]+w>>>0,t[4]=t[4]+y>>>0}return[t[0]>>24&255,t[0]>>16&255,t[0]>>8&255,255&t[0],t[1]>>24&255,t[1]>>16&255,t[1]>>8&255,255&t[1],t[2]>>24&255,t[2]>>16&255,t[2]>>8&255,255&t[2],t[3]>>24&255,t[3]>>16&255,t[3]>>8&255,255&t[3],t[4]>>24&255,t[4]>>16&255,t[4]>>8&255,255&t[4]]}export{n as default};
@@ -1 +0,0 @@
1
- import m from"./v35.js";import o from"./md5.js";m("v3",48,o);
@@ -1 +0,0 @@
1
- import r from"./bytesToUuid.js";var a="6ba7b810-9dad-11d1-80b4-00c04fd430c8",e="6ba7b811-9dad-11d1-80b4-00c04fd430c8";function t(t,n,o){var f=function(a,e,t,f){var u=t&&f||0;if("string"==typeof a&&(a=function(r){r=unescape(encodeURIComponent(r));for(var a=new Array(r.length),e=0;e<r.length;e++)a[e]=r.charCodeAt(e);return a}(a)),"string"==typeof e&&(e=function(r){var a=[];return r.replace(/[a-fA-F0-9]{2}/g,(function(r){a.push(parseInt(r,16))})),a}(e)),!Array.isArray(a))throw TypeError("value must be an array of bytes");if(!Array.isArray(e)||16!==e.length)throw TypeError("namespace must be uuid string or an Array of 16 byte values");var c=o(e.concat(a));if(c[6]=15&c[6]|n,c[8]=63&c[8]|128,t)for(var i=0;i<16;++i)t[u+i]=c[i];return t||r(c)};try{f.name=t}catch(r){}return f.DNS=a,f.URL=e,f}export{a as DNS,e as URL,t as default};
@@ -1 +0,0 @@
1
- import r from"./rng.js";import n from"./bytesToUuid.js";function o(o,t,a){var f=t&&a||0;"string"==typeof o&&(t="binary"===o?new Array(16):null,o=null);var i=(o=o||{}).random||(o.rng||r)();if(i[6]=15&i[6]|64,i[8]=63&i[8]|128,t)for(var e=0;e<16;++e)t[f+e]=i[e];return t||n(i)}export{o as default};
@@ -1 +0,0 @@
1
- import m from"./v35.js";import o from"./sha1.js";m("v5",80,o);
package/build/index.d.ts DELETED
@@ -1,6 +0,0 @@
1
- export * from "./analytics";
2
- export * from "./components";
3
- export * from "./models";
4
- export * from "./pages";
5
- export * from "./store";
6
- export * from "./utils";