Google Listings & Ads - Version 2.0.2

Version Description

  • 2022-07-29 =
  • Fix - Disable identifier_exists field.
  • Tweak - Propagate errors for saveSettings.
  • Tweak - Refactor SCSS variables.
  • Tweak - Remove PHP 8.0 specific code of Symfony polyfills.
  • Tweak - Revert migration applicable version value.
  • Tweak - Update change log records type.
  • Tweak - WC 6.8 compatibility.
  • Update - Google Ads library to API V11.
Download this release

Release Info

Developer automattic
Plugin Icon 128x128 Google Listings & Ads
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

Files changed (37) hide show
  1. changelog.txt +12 -3
  2. google-listings-and-ads.php +5 -5
  3. js/build/index.asset.php +1 -1
  4. js/build/index.css +2 -2
  5. js/build/index.js +3 -3
  6. languages/google-listings-and-ads.pot +20 -19
  7. readme.txt +15 -6
  8. src/API/Google/Ads.php +5 -5
  9. src/API/Google/AdsAssetGroup.php +10 -10
  10. src/API/Google/AdsCampaign.php +12 -14
  11. src/API/Google/AdsCampaignBudget.php +5 -5
  12. src/API/Google/AdsCampaignCriterion.php +6 -6
  13. src/API/Google/AdsConversionAction.php +24 -17
  14. src/API/Google/AdsReport.php +2 -2
  15. src/API/Google/BillingSetupStatus.php +1 -1
  16. src/API/Google/CampaignStatus.php +1 -1
  17. src/API/Google/CampaignType.php +1 -1
  18. src/API/Google/MerchantMetrics.php +1 -1
  19. src/API/Google/Query/AdsConversionActionQuery.php +29 -0
  20. src/API/Google/Query/AdsQuery.php +1 -1
  21. src/API/Google/Query/AdsReportQuery.php +1 -1
  22. src/DB/Migration/Migration20220524T1653383133.php +1 -1
  23. src/Google/Ads/GoogleAdsClient.php +2 -2
  24. src/Google/Ads/ServiceClientFactoryTrait.php +20 -20
  25. src/Infrastructure/GoogleListingsAndAdsPlugin.php +0 -1
  26. src/Polyfills/MBString.php +0 -281
  27. src/Polyfills/Normalizer.php +0 -328
  28. src/Polyfills/Resources/unidata/canonicalComposition.php +0 -946
  29. src/Polyfills/Resources/unidata/canonicalDecomposition.php +0 -2066
  30. src/Polyfills/Resources/unidata/combiningClass.php +0 -877
  31. src/Polyfills/Resources/unidata/compatibilityDecomposition.php +0 -3696
  32. src/Polyfills/bootstrap.php +0 -75
  33. src/Product/WCProductAdapter.php +0 -1
  34. vendor/autoload.php +1 -1
  35. vendor/autoload_packages.php +1 -1
  36. vendor/composer/InstalledVersions.php +7 -7
  37. vendor/composer/autoload_classmap.php +188 -220
changelog.txt CHANGED
@@ -1,13 +1,22 @@
1
  *** WooCommerce Google Listings and Ads Changelog ***
2
 
 
 
 
 
 
 
 
 
 
 
3
  = 2.0.1 - 2022-07-12 =
4
- * Add - A script to generate a list of hooks that defined or used in GLA.
5
- * Add - GH workflow to set PR labels.
6
  * Add - Normalizer Polyfill.
7
  * Dev - changed the changelog types list.
8
  * Fix - Compatibility with History Navigation v5.
9
  * Fix - Encoding product names in Issues Table .
10
- * Fix - Release 2.0.0.
11
  * Tweak - Remove try and catch in saveTargetAudience action.
12
 
13
  = 2.0.0 - 2022-07-05 =
1
  *** WooCommerce Google Listings and Ads Changelog ***
2
 
3
+ = 2.0.2 - 2022-07-29 =
4
+ * Fix - Disable identifier_exists field.
5
+ * Tweak - Propagate errors for saveSettings.
6
+ * Tweak - Refactor SCSS variables.
7
+ * Tweak - Remove PHP 8.0 specific code of Symfony polyfills.
8
+ * Tweak - Revert migration applicable version value.
9
+ * Tweak - Update change log records type.
10
+ * Tweak - WC 6.8 compatibility.
11
+ * Update - Google Ads library to API V11.
12
+
13
  = 2.0.1 - 2022-07-12 =
14
+ * Dev - A script to generate a list of hooks that defined or used in GLA.
15
+ * Dev - GH workflow to set PR labels.
16
  * Add - Normalizer Polyfill.
17
  * Dev - changed the changelog types list.
18
  * Fix - Compatibility with History Navigation v5.
19
  * Fix - Encoding product names in Issues Table .
 
20
  * Tweak - Remove try and catch in saveTargetAudience action.
21
 
22
  = 2.0.0 - 2022-07-05 =
google-listings-and-ads.php CHANGED
@@ -3,16 +3,16 @@
3
  * Plugin Name: Google Listings and Ads
4
  * Plugin URL: https://wordpress.org/plugins/google-listings-and-ads/
5
  * Description: Native integration with Google that allows merchants to easily display their products across Google’s network.
6
- * Version: 2.0.1
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com/
9
  * Text Domain: google-listings-and-ads
10
  * Requires at least: 5.7
11
  * Tested up to: 6.0
12
- * Requires PHP: 7.3
13
  *
14
  * WC requires at least: 6.0
15
- * WC tested up to: 6.7
16
  * Woo:
17
  *
18
  * @package WooCommerce\Admin
@@ -28,8 +28,8 @@ use Psr\Container\ContainerInterface;
28
 
29
  defined( 'ABSPATH' ) || exit;
30
 
31
- define( 'WC_GLA_VERSION', '2.0.1' ); // WRCS: DEFINED_VERSION.
32
- define( 'WC_GLA_MIN_PHP_VER', '7.3' );
33
  define( 'WC_GLA_MIN_WC_VER', '6.0' );
34
 
35
  // Load and initialize the autoloader.
3
  * Plugin Name: Google Listings and Ads
4
  * Plugin URL: https://wordpress.org/plugins/google-listings-and-ads/
5
  * Description: Native integration with Google that allows merchants to easily display their products across Google’s network.
6
+ * Version: 2.0.2
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com/
9
  * Text Domain: google-listings-and-ads
10
  * Requires at least: 5.7
11
  * Tested up to: 6.0
12
+ * Requires PHP: 7.4
13
  *
14
  * WC requires at least: 6.0
15
+ * WC tested up to: 6.8
16
  * Woo:
17
  *
18
  * @package WooCommerce\Admin
28
 
29
  defined( 'ABSPATH' ) || exit;
30
 
31
+ define( 'WC_GLA_VERSION', '2.0.2' ); // WRCS: DEFINED_VERSION.
32
+ define( 'WC_GLA_MIN_PHP_VER', '7.4' );
33
  define( 'WC_GLA_MIN_WC_VER', '6.0' );
34
 
35
  // Load and initialize the autoloader.
js/build/index.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'moment', 'react', 'wc-components', 'wc-customer-effort-score', 'wc-navigation', 'wc-settings', 'wc-store-data', 'wp-a11y', 'wp-api-fetch', 'wp-data', 'wp-data-controls', 'wp-date', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-url', 'wp-warning'), 'version' => 'b71f9c3fa0b1f529b1a7c5f08af04367');
1
+ <?php return array('dependencies' => array('lodash', 'moment', 'react', 'wc-components', 'wc-customer-effort-score', 'wc-navigation', 'wc-settings', 'wc-store-data', 'wp-a11y', 'wp-api-fetch', 'wp-data', 'wp-data-controls', 'wp-date', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-url', 'wp-warning'), 'version' => '9fc1dff7b38b84c56c78a6f0ff246e96');
js/build/index.css CHANGED
@@ -44,7 +44,7 @@
44
  .gla-setup-free-listing-hero{align-items:center;background-color:#fff;display:flex;flex-direction:column;padding:var(--large-gap);padding-bottom:0}.gla-setup-free-listing-hero .hero-text{margin-bottom:0;max-width:unset}.gla-setup-free-listing-hero .hero-text .hero-text__subtitle{font-size:16px;font-weight:600;line-height:1.5;margin:4px 0 0;padding:0}.gla-setup-free-listing-hero .hero-text .hero-text__body{font-size:14px;margin-bottom:var(--main-gap)}.gla-setup-free-listing-hero .hero-image{margin-bottom:-4px}
45
  .wcdl-radio-helper-text{color:#757575;font-size:12px;font-style:italic;font-weight:400;line-height:16px}
46
  .app-radio-content-control{column-gap:10px;display:grid;gap:8px;grid-template-columns:[input-start] auto [text-start] 1fr}.app-radio-content-control .components-base-control__field,.app-radio-content-control .components-radio-control,.app-radio-content-control .components-radio-control__option{display:contents}.app-radio-content-control .components-radio-control__input[type=radio]{margin:0}.app-radio-content-control .app-radio-content-control__content{grid-column:text-start}.app-radio-content-control .app-radio-content-control__content:empty{display:none}
47
- .woocommerce-tree-select-control{position:relative}.woocommerce-tree-select-control__label{color:#757575;display:block;font-size:16px;padding-bottom:8px}.woocommerce-tree-select-control__help{color:#757575;font-size:12px;line-height:16px;margin-top:4px}.woocommerce-tree-select-control .components-base-control{align-items:center;background:#fff;border:1px solid #949494;border-radius:3px;display:flex;flex-wrap:wrap;height:auto;padding:12px;position:relative}.woocommerce-tree-select-control .components-base-control .components-base-control__field{align-items:center;display:flex;flex:1;flex-basis:content;margin-bottom:0;max-width:100%}.woocommerce-tree-select-control .components-base-control .woocommerce-tree-select-control__control-input{background:transparent;border:0;box-shadow:none;color:#2f2f2f;font-size:16px;letter-spacing:inherit;line-height:24px;margin:0;padding-left:0;padding-right:0;text-align:left;width:100%}.woocommerce-tree-select-control .components-base-control .woocommerce-tree-select-control__control-input::-webkit-search-cancel-button{display:none}.woocommerce-tree-select-control .components-base-control .woocommerce-tree-select-control__control-input:focus{outline:none}.woocommerce-tree-select-control .components-base-control i{color:#636d75;margin-right:12px;width:24px}.woocommerce-tree-select-control .components-base-control.is-active{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.woocommerce-tree-select-control .components-base-control.has-tags .components-base-control__label,.woocommerce-tree-select-control .components-base-control.with-value .components-base-control__label{font-size:12px;margin-top:-12px}.woocommerce-tree-select-control .components-base-control.is-disabled{background:hsla(0,0%,100%,.5);border:1px solid hsla(210,4%,67%,.5)}.woocommerce-tree-select-control .components-base-control.is-disabled .components-base-control__field{visibility:hidden}.woocommerce-tree-select-control .components-base-control.is-disabled .components-base-control__label{cursor:default}.woocommerce-tree-select-control .components-base-control.is-disabled .woocommerce-tag__remove{cursor:default;pointer-events:none}.woocommerce-tree-select-control .woocommerce-tree-select-control__autofill-input{position:absolute;z-index:-1}.woocommerce-tree-select-control .woocommerce-tree-select-control__tags{margin:0;position:relative}.woocommerce-tree-select-control .woocommerce-tree-select-control__tags.has-clear{padding-right:24px}.woocommerce-tree-select-control .woocommerce-tag,.woocommerce-tree-select-control .woocommerce-tree-select-control__show-more{max-height:24px}.woocommerce-tree-select-control .woocommerce-tree-select-control__clear{position:absolute;right:10px;top:calc(50% - 10px)}.woocommerce-tree-select-control .woocommerce-tree-select-control__clear>.clear-icon{color:#ccc}.woocommerce-tree-select-control .woocommerce-tree-select-control__tree{align-items:stretch;background:#fff;border-radius:3px;box-shadow:0 3px 5px rgba(0,0,0,.2),0 1px 18px rgba(0,0,0,.12),0 6px 10px rgba(0,0,0,.14);display:flex;flex-direction:column;left:0;max-height:350px;overflow-y:auto;padding:16px;position:absolute;right:0;z-index:10}.woocommerce-tree-select-control .woocommerce-tree-select-control__tree.is-static{position:static}.woocommerce-tree-select-control .woocommerce-tree-select-control__node.has-children{border-bottom:1px solid #eee}.woocommerce-tree-select-control .woocommerce-tree-select-control__node.has-children:last-child{border-bottom:0}.woocommerce-tree-select-control .woocommerce-tree-select-control__children{padding-left:32px}.woocommerce-tree-select-control .woocommerce-tree-select-control__main{border-top:1px solid #e0e0e0;padding-left:0}.woocommerce-tree-select-control .woocommerce-tree-select-control__option{border:none;display:flex;flex:1;font-size:16px;height:auto;min-height:0;padding:0 0 0 8px;text-align:left}.woocommerce-tree-select-control .woocommerce-tree-select-control__option.is-selected,.woocommerce-tree-select-control .woocommerce-tree-select-control__option:hover{color:var(--wp-admin-theme-color)}.woocommerce-tree-select-control .woocommerce-tree-select-control__option.is-partially-checked .components-checkbox-control__input{background:var(--wp-admin-theme-color);border:4px solid #fff;box-shadow:0 0 0 1px #1e1e1e}.woocommerce-tree-select-control .woocommerce-tree-select-control__option.is-partially-checked .components-checkbox-control__input:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color)}.woocommerce-tree-select-control .woocommerce-tree-select-control__expander{background:transparent;border:none;cursor:pointer;margin-right:0;padding:4px}.woocommerce-tree-select-control .woocommerce-tree-select-control__expander.is-hidden{pointer-events:none;visibility:hidden}.woocommerce-tree-select-control .components-checkbox-control__label{align-items:center;display:flex;min-height:56px;width:100%}.woocommerce-tree-select-control.is-searchable .components-base-control__label{left:48px}.woocommerce-tree-select-control.is-searchable .components-base-control.is-active .components-base-control__label{font-size:12px;margin-top:-12px}.woocommerce-tree-select-control.is-searchable .woocommerce-tree-select-control__control-input{padding-left:12px}
48
  .gla-supported-country-select .woocommerce-tree-select-control__label{font-size:13px;padding-bottom:4px}.gla-supported-country-select .woocommerce-tree-select-control__help{font-style:italic}
49
  .gla-shipping-rate-input-control{align-items:flex-end;display:flex;flex-wrap:wrap;gap:8px}.gla-shipping-rate-input-control .label{display:flex;gap:4px;justify-content:space-between}.gla-shipping-rate-input-control .label button{height:-moz-fit-content;height:fit-content;line-height:1.4em;padding:0}.gla-shipping-rate-input-control .app-input-control{width:300px}.gla-shipping-rate-input-control .gla-input-pill-div{padding:2px 0}.gla-shipping-rate-input-control .gla-input-pill-div .woocommerce-pill{border-color:#008a20;color:#008a20}
50
  .gla-minimum-order-input-control .gla-minimum-order-input-control__label{display:flex;gap:4px;justify-content:space-between}.gla-minimum-order-input-control .gla-minimum-order-input-control__label button{height:-moz-fit-content;height:fit-content;line-height:1.4em;padding:0}
@@ -75,7 +75,7 @@
75
  .gla-setup-stepper .woocommerce-stepper__steps{align-items:center;background-color:#fff;box-shadow:inset 0 -1px 0 #ccc;height:64px;justify-content:center;margin-bottom:0}.gla-setup-stepper .woocommerce-stepper__steps .woocommerce-stepper__step-divider{align-self:auto;margin-top:0;max-width:48px}
76
  .app-tab-nav__tabs{align-items:stretch;box-shadow:inset 0 -1px 0 #ccc;display:flex;margin-bottom:var(--main-gap)}.app-tab-nav__tabs-item{background:transparent;border:none;border-radius:0;box-shadow:none;box-sizing:border-box;cursor:pointer;font-weight:500;height:48px;margin-left:0;padding:3px 16px}.app-tab-nav__tabs-item:after{speak:none;content:attr(data-label);display:block;height:0;overflow:hidden;visibility:hidden}.app-tab-nav__tabs-item:focus:not(:disabled){box-shadow:inset 0 2px var(--wp-admin-theme-color)}.app-tab-nav__tabs-item.is-active{box-shadow:inset 0 0 0 2px transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative}.app-tab-nav__tabs-item.is-active:before{border-bottom:4px solid transparent;bottom:1px;content:"";left:0;position:absolute;right:0;top:0}.app-tab-nav__tabs-item:focus{box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color)}.app-tab-nav__tabs-item.is-active:focus{box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}
77
  .gla-summary-card>div:last-child{flex:1}.gla-summary-card__body{align-items:center;background-color:#f8f9fa;border:1px solid #e0e0e0;color:#757575;display:grid;flex:1;gap:16px;grid-auto-flow:row;height:100%;justify-items:center;min-height:117px;padding:var(--main-gap);text-align:center}.gla-summary-card__body>*{margin:0}.gla-summary-card .woocommerce-summary{align-items:center;flex:1;margin:0}
78
- .gla-guide__page-content{padding:0 24px}.gla-guide__page-content__header{color:#757575;font-size:24px;font-weight:400;line-height:32px;margin:0 0 24px}.gla-guide__page-content__body{color:#757575;font-size:16px;line-height:24px}.gla-guide__page-content__body>p{font-size:inherit;line-height:inherit;margin:1.5em 0}.gla-guide__page-content__body>cite{display:block;font-size:11px;font-style:normal;line-height:18px}.gla-guide__page-content__link{text-decoration:none}
79
  @media(min-width:600px){.gla-campaign-creation-success-guide{max-width:517px}}.gla-campaign-creation-success-guide .components-modal__header{background:none;border-bottom:none;margin:0;position:absolute;width:100%}.gla-campaign-creation-success-guide .components-modal__content{padding-left:0;padding-right:0}.gla-campaign-creation-success-guide .app-modal__footer{margin:var(--main-gap) var(--main-gap) 0}.gla-campaign-creation-success-guide__header-image{background-color:#f7edf7;display:flex;justify-content:center;margin-bottom:var(--main-gap)}
80
  .app-table-card-div .components-card__header h2{margin-right:8px}.app-table-card-div .components-card__header .woocommerce-table__actions{justify-content:flex-start}.app-table-card-div .components-card__body .woocommerce-table__table .components-base-control__field{margin-bottom:0}
81
  @media(min-width:600px){.gla-remove-program-modal{max-width:360px}}
44
  .gla-setup-free-listing-hero{align-items:center;background-color:#fff;display:flex;flex-direction:column;padding:var(--large-gap);padding-bottom:0}.gla-setup-free-listing-hero .hero-text{margin-bottom:0;max-width:unset}.gla-setup-free-listing-hero .hero-text .hero-text__subtitle{font-size:16px;font-weight:600;line-height:1.5;margin:4px 0 0;padding:0}.gla-setup-free-listing-hero .hero-text .hero-text__body{font-size:14px;margin-bottom:var(--main-gap)}.gla-setup-free-listing-hero .hero-image{margin-bottom:-4px}
45
  .wcdl-radio-helper-text{color:#757575;font-size:12px;font-style:italic;font-weight:400;line-height:16px}
46
  .app-radio-content-control{column-gap:10px;display:grid;gap:8px;grid-template-columns:[input-start] auto [text-start] 1fr}.app-radio-content-control .components-base-control__field,.app-radio-content-control .components-radio-control,.app-radio-content-control .components-radio-control__option{display:contents}.app-radio-content-control .components-radio-control__input[type=radio]{margin:0}.app-radio-content-control .app-radio-content-control__content{grid-column:text-start}.app-radio-content-control .app-radio-content-control__content:empty{display:none}
47
+ .woocommerce-tree-select-control{position:relative}.woocommerce-tree-select-control__label{color:#757575;display:block;font-size:16px;padding-bottom:8px}.woocommerce-tree-select-control__help{color:#757575;font-size:12px;line-height:16px;margin-top:4px}.woocommerce-tree-select-control .components-base-control{align-items:center;background:#fff;border:1px solid #949494;border-radius:3px;display:flex;flex-wrap:wrap;height:auto;padding:12px;position:relative}.woocommerce-tree-select-control .components-base-control .components-base-control__field{align-items:center;display:flex;flex:1;flex-basis:content;margin-bottom:0;max-width:100%}.woocommerce-tree-select-control .components-base-control .woocommerce-tree-select-control__control-input{background:transparent;border:0;box-shadow:none;color:#2f2f2f;font-size:16px;letter-spacing:inherit;line-height:1.5;margin:0;padding-left:0;padding-right:0;text-align:left;width:100%}.woocommerce-tree-select-control .components-base-control .woocommerce-tree-select-control__control-input::-webkit-search-cancel-button{display:none}.woocommerce-tree-select-control .components-base-control .woocommerce-tree-select-control__control-input:focus{outline:none}.woocommerce-tree-select-control .components-base-control i{color:#636d75;margin-right:12px;width:24px}.woocommerce-tree-select-control .components-base-control.is-active{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color)}.woocommerce-tree-select-control .components-base-control.has-tags .components-base-control__label,.woocommerce-tree-select-control .components-base-control.with-value .components-base-control__label{font-size:12px;margin-top:-12px}.woocommerce-tree-select-control .components-base-control.is-disabled{background:hsla(0,0%,100%,.5);border:1px solid hsla(210,4%,67%,.5)}.woocommerce-tree-select-control .components-base-control.is-disabled .components-base-control__field{visibility:hidden}.woocommerce-tree-select-control .components-base-control.is-disabled .components-base-control__label{cursor:default}.woocommerce-tree-select-control .components-base-control.is-disabled .woocommerce-tag__remove{cursor:default;pointer-events:none}.woocommerce-tree-select-control .woocommerce-tree-select-control__autofill-input{position:absolute;z-index:-1}.woocommerce-tree-select-control .woocommerce-tree-select-control__tags{margin:0;position:relative}.woocommerce-tree-select-control .woocommerce-tree-select-control__tags.has-clear{padding-right:24px}.woocommerce-tree-select-control .woocommerce-tag,.woocommerce-tree-select-control .woocommerce-tree-select-control__show-more{max-height:24px}.woocommerce-tree-select-control .woocommerce-tree-select-control__clear{position:absolute;right:10px;top:calc(50% - 10px)}.woocommerce-tree-select-control .woocommerce-tree-select-control__clear>.clear-icon{color:#ccc}.woocommerce-tree-select-control .woocommerce-tree-select-control__tree{align-items:stretch;background:#fff;border-radius:3px;box-shadow:0 3px 5px rgba(0,0,0,.2),0 1px 18px rgba(0,0,0,.12),0 6px 10px rgba(0,0,0,.14);display:flex;flex-direction:column;left:0;max-height:350px;overflow-y:auto;padding:16px;position:absolute;right:0;z-index:10}.woocommerce-tree-select-control .woocommerce-tree-select-control__tree.is-static{position:static}.woocommerce-tree-select-control .woocommerce-tree-select-control__node.has-children{border-bottom:1px solid #eee}.woocommerce-tree-select-control .woocommerce-tree-select-control__node.has-children:last-child{border-bottom:0}.woocommerce-tree-select-control .woocommerce-tree-select-control__children{padding-left:32px}.woocommerce-tree-select-control .woocommerce-tree-select-control__main{border-top:1px solid #e0e0e0;padding-left:0}.woocommerce-tree-select-control .woocommerce-tree-select-control__option{border:none;display:flex;flex:1;font-size:16px;height:auto;min-height:0;padding:0 0 0 8px;text-align:left}.woocommerce-tree-select-control .woocommerce-tree-select-control__option.is-selected,.woocommerce-tree-select-control .woocommerce-tree-select-control__option:hover{color:var(--wp-admin-theme-color)}.woocommerce-tree-select-control .woocommerce-tree-select-control__option.is-partially-checked .components-checkbox-control__input{background:var(--wp-admin-theme-color);border:4px solid #fff;box-shadow:0 0 0 1px #1e1e1e}.woocommerce-tree-select-control .woocommerce-tree-select-control__option.is-partially-checked .components-checkbox-control__input:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color)}.woocommerce-tree-select-control .woocommerce-tree-select-control__expander{background:transparent;border:none;cursor:pointer;margin-right:0;padding:4px}.woocommerce-tree-select-control .woocommerce-tree-select-control__expander.is-hidden{pointer-events:none;visibility:hidden}.woocommerce-tree-select-control .components-checkbox-control__label{align-items:center;display:flex;min-height:56px;width:100%}.woocommerce-tree-select-control.is-searchable .components-base-control__label{left:48px}.woocommerce-tree-select-control.is-searchable .components-base-control.is-active .components-base-control__label{font-size:12px;margin-top:-12px}.woocommerce-tree-select-control.is-searchable .woocommerce-tree-select-control__control-input{padding-left:12px}
48
  .gla-supported-country-select .woocommerce-tree-select-control__label{font-size:13px;padding-bottom:4px}.gla-supported-country-select .woocommerce-tree-select-control__help{font-style:italic}
49
  .gla-shipping-rate-input-control{align-items:flex-end;display:flex;flex-wrap:wrap;gap:8px}.gla-shipping-rate-input-control .label{display:flex;gap:4px;justify-content:space-between}.gla-shipping-rate-input-control .label button{height:-moz-fit-content;height:fit-content;line-height:1.4em;padding:0}.gla-shipping-rate-input-control .app-input-control{width:300px}.gla-shipping-rate-input-control .gla-input-pill-div{padding:2px 0}.gla-shipping-rate-input-control .gla-input-pill-div .woocommerce-pill{border-color:#008a20;color:#008a20}
50
  .gla-minimum-order-input-control .gla-minimum-order-input-control__label{display:flex;gap:4px;justify-content:space-between}.gla-minimum-order-input-control .gla-minimum-order-input-control__label button{height:-moz-fit-content;height:fit-content;line-height:1.4em;padding:0}
75
  .gla-setup-stepper .woocommerce-stepper__steps{align-items:center;background-color:#fff;box-shadow:inset 0 -1px 0 #ccc;height:64px;justify-content:center;margin-bottom:0}.gla-setup-stepper .woocommerce-stepper__steps .woocommerce-stepper__step-divider{align-self:auto;margin-top:0;max-width:48px}
76
  .app-tab-nav__tabs{align-items:stretch;box-shadow:inset 0 -1px 0 #ccc;display:flex;margin-bottom:var(--main-gap)}.app-tab-nav__tabs-item{background:transparent;border:none;border-radius:0;box-shadow:none;box-sizing:border-box;cursor:pointer;font-weight:500;height:48px;margin-left:0;padding:3px 16px}.app-tab-nav__tabs-item:after{speak:none;content:attr(data-label);display:block;height:0;overflow:hidden;visibility:hidden}.app-tab-nav__tabs-item:focus:not(:disabled){box-shadow:inset 0 2px var(--wp-admin-theme-color)}.app-tab-nav__tabs-item.is-active{box-shadow:inset 0 0 0 2px transparent,inset 0 -4px 0 0 var(--wp-admin-theme-color);position:relative}.app-tab-nav__tabs-item.is-active:before{border-bottom:4px solid transparent;bottom:1px;content:"";left:0;position:absolute;right:0;top:0}.app-tab-nav__tabs-item:focus{box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color)}.app-tab-nav__tabs-item.is-active:focus{box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color),inset 0 -4px 0 0 var(--wp-admin-theme-color)}
77
  .gla-summary-card>div:last-child{flex:1}.gla-summary-card__body{align-items:center;background-color:#f8f9fa;border:1px solid #e0e0e0;color:#757575;display:grid;flex:1;gap:16px;grid-auto-flow:row;height:100%;justify-items:center;min-height:117px;padding:var(--main-gap);text-align:center}.gla-summary-card__body>*{margin:0}.gla-summary-card .woocommerce-summary{align-items:center;flex:1;margin:0}
78
+ .gla-guide__page-content{padding:0 24px}.gla-guide__page-content__header{color:#757575;font-size:24px;font-weight:400;line-height:32px;margin:0 0 24px}.gla-guide__page-content__body{color:#757575;font-size:16px;line-height:1.5}.gla-guide__page-content__body>p{font-size:inherit;line-height:inherit;margin:1.5em 0}.gla-guide__page-content__body>cite{display:block;font-size:11px;font-style:normal;line-height:18px}.gla-guide__page-content__link{text-decoration:none}
79
  @media(min-width:600px){.gla-campaign-creation-success-guide{max-width:517px}}.gla-campaign-creation-success-guide .components-modal__header{background:none;border-bottom:none;margin:0;position:absolute;width:100%}.gla-campaign-creation-success-guide .components-modal__content{padding-left:0;padding-right:0}.gla-campaign-creation-success-guide .app-modal__footer{margin:var(--main-gap) var(--main-gap) 0}.gla-campaign-creation-success-guide__header-image{background-color:#f7edf7;display:flex;justify-content:center;margin-bottom:var(--main-gap)}
80
  .app-table-card-div .components-card__header h2{margin-right:8px}.app-table-card-div .components-card__header .woocommerce-table__actions{justify-content:flex-start}.app-table-card-div .components-card__body .woocommerce-table__table .components-base-control__field{margin-bottom:0}
81
  @media(min-width:600px){.gla-remove-program-modal{max-width:360px}}
js/build/index.js CHANGED
@@ -1,5 +1,5 @@
1
  (function(){var __webpack_modules__={9171:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.validateDateInputForRange=t.dateValidationMessages=t.loadLocaleData=t.getDateFormatsForInterval=t.defaultTableDateFormat=t.weekTicksThreshold=t.dayTicksThreshold=t.getChartTypeForQuery=t.getIntervalForQuery=t.getAllowedIntervalsForQuery=t.getPreviousDate=t.getDateDifferenceInDays=t.getCurrentDates=t.getDateParamsFromQuery=t.getCurrentPeriod=t.getLastPeriod=t.getStoreTimeZoneMoment=t.getRangeLabel=t.toMoment=t.appendTimestamp=t.periods=t.presetValues=t.defaultDateTimeFormat=t.isoDateFormat=void 0;const o=r(n(6292)),a=n(2819),i=n(5736),s=n(129);function l(e,n){if(o.default.isMoment(n))return n.isValid()?n:null;if("string"==typeof n){const r=o.default(n,[t.isoDateFormat,e],!0);return r.isValid()?r:null}throw new Error("toMoment requires a string to be passed as an argument")}function c(e,t){const n=e.year()===t.year(),r=n&&e.month()===t.month(),o=n&&r&&e.isSame(t,"day"),a=i.__("MMM D, YYYY","woocommerce-admin");if(o)return e.format(a);if(r){const n=e.date();return e.format(a).replace(n,`${n} - ${t.date()}`)}if(n){const n=i.__("MMM D","woocommerce-admin");return`${e.format(n)} - ${t.format(a)}`}return`${e.format(a)} - ${t.format(a)}`}function u(){return window.wcSettings&&window.wcSettings.timeZone?["+","-"].includes(window.wcSettings.timeZone.charAt(0))?o.default().utcOffset(window.wcSettings.timeZone):o.default().tz(window.wcSettings.timeZone):o.default()}function d(e,t){const n=u().startOf(e).subtract(1,e),r=n.clone().endOf(e);let a,i;if("previous_period"===t)if("year"===e)a=o.default().startOf(e).subtract(2,e),i=a.clone().endOf(e);else{const e=r.diff(n,"days");i=n.clone().subtract(1,"days"),a=i.clone().subtract(e,"days")}else a=n.clone().subtract(1,"years"),i=r.clone().subtract(1,"years");return"month"===e&&(i=i.clone().endOf("month")),{primaryStart:n,primaryEnd:r,secondaryStart:a,secondaryEnd:i}}function g(e,t){const n=u().startOf(e),r=u(),o=r.diff(n,"days");let a,i;return"previous_period"===t?(a=n.clone().subtract(1,e),i=r.clone().subtract(1,e)):(a=n.clone().subtract(1,"years"),i=a.clone().add(o+1,"days").subtract(1,"seconds")),{primaryStart:n,primaryEnd:r,secondaryStart:a,secondaryEnd:i}}t.isoDateFormat="YYYY-MM-DD",t.defaultDateTimeFormat="YYYY-MM-DDTHH:mm:ss",t.presetValues=[{value:"today",label:i.__("Today","woocommerce-admin")},{value:"yesterday",label:i.__("Yesterday","woocommerce-admin")},{value:"week",label:i.__("Week to Date","woocommerce-admin")},{value:"last_week",label:i.__("Last Week","woocommerce-admin")},{value:"month",label:i.__("Month to Date","woocommerce-admin")},{value:"last_month",label:i.__("Last Month","woocommerce-admin")},{value:"quarter",label:i.__("Quarter to Date","woocommerce-admin")},{value:"last_quarter",label:i.__("Last Quarter","woocommerce-admin")},{value:"year",label:i.__("Year to Date","woocommerce-admin")},{value:"last_year",label:i.__("Last Year","woocommerce-admin")},{value:"custom",label:i.__("Custom","woocommerce-admin")}],t.periods=[{value:"previous_period",label:i.__("Previous Period","woocommerce-admin")},{value:"previous_year",label:i.__("Previous Year","woocommerce-admin")}],t.appendTimestamp=(e,n)=>{if("start"===n)return e.startOf("day").format(t.defaultDateTimeFormat);if("now"===n)return e.format(t.defaultDateTimeFormat);if("end"===n)return e.endOf("day").format(t.defaultDateTimeFormat);throw new Error("appendTimestamp requires second parameter to be either `start`, `now` or `end`")},t.toMoment=l,t.getRangeLabel=c,t.getStoreTimeZoneMoment=u,t.getLastPeriod=d,t.getCurrentPeriod=g;const p=a.memoize(((e,t,n,r)=>{switch(e){case"today":return g("day",t);case"yesterday":return d("day",t);case"week":return g("week",t);case"last_week":return d("week",t);case"month":return g("month",t);case"last_month":return d("month",t);case"quarter":return g("quarter",t);case"last_quarter":return d("quarter",t);case"year":return g("year",t);case"last_year":return d("year",t);case"custom":const e=r.diff(n,"days");if("previous_period"===t){const t=n.clone().subtract(1,"days");return{primaryStart:n,primaryEnd:r,secondaryStart:t.clone().subtract(e,"days"),secondaryEnd:t}}return{primaryStart:n,primaryEnd:r,secondaryStart:n.clone().subtract(1,"years"),secondaryEnd:r.clone().subtract(1,"years")}}}),((e,t,n,r)=>[e,t,n&&n.format(),r&&r.format()].join(":"))),f=a.memoize(((e,t,n,r,a)=>{if(e&&t)return{period:e,compare:t,after:n?o.default(n):null,before:r?o.default(r):null};const i=s.parse(a.replace(/&amp;/g,"&"));return{period:i.period,compare:i.compare,after:i.after?o.default(i.after):null,before:i.before?o.default(i.before):null}}),((e,t,n,r,o)=>[e,t,n,r,o].join(":")));t.getDateParamsFromQuery=(e,t="period=month&compare=previous_year")=>{const{period:n,compare:r,after:o,before:a}=e;return f(n,r,o,a,t)};const m=a.memoize(((e,n,r,o,i,s)=>({primary:{label:a.find(t.presetValues,(t=>t.value===e)).label,range:c(r,o),after:r,before:o},secondary:{label:a.find(t.periods,(e=>e.value===n)).label,range:c(i,s),after:i,before:s}})),((e,t,n,r,o,a)=>[e,t,n&&n.format(),r&&r.format(),o&&o.format(),a&&a.format()].join(":")));function h(e){let n=[];if("custom"===e.period){const{primary:r}=t.getCurrentDates(e),o=t.getDateDifferenceInDays(r.before,r.after);n=o>=365?["day","week","month","quarter","year"]:o>=90?["day","week","month","quarter"]:o>=28?["day","week","month"]:o>=7?["day","week"]:o>1&&o<7?["day"]:["hour","day"]}else switch(e.period){case"today":case"yesterday":n=["hour","day"];break;case"week":case"last_week":default:n=["day"];break;case"month":case"last_month":n=["day","week"];break;case"quarter":case"last_quarter":n=["day","week","month"];break;case"year":case"last_year":n=["day","week","month","quarter"]}return n}t.getCurrentDates=(e,n="period=month&compare=previous_year")=>{const{period:r,compare:o,after:a,before:i}=t.getDateParamsFromQuery(e,n),{primaryStart:s,primaryEnd:l,secondaryStart:c,secondaryEnd:u}=p(r,o,a,i);return m(r,o,s,l,c,u)},t.getDateDifferenceInDays=(e,t)=>{const n=o.default(e),r=o.default(t);return n.diff(r,"days")},t.getPreviousDate=(e,t,n,r,a)=>{const i=o.default(e);if("previous_year"===r)return i.clone().subtract(1,"years");const s=o.default(t),l=o.default(n),c=s.diff(l,a);return i.clone().subtract(c,a)},t.getAllowedIntervalsForQuery=h,t.getIntervalForQuery=function(e){const t=h(e),n=t[0];let r=e.interval||n;return e.interval&&!t.includes(e.interval)&&(r=n),r},t.getChartTypeForQuery=function({chartType:e}){return["line","bar"].includes(e)?e:"line"},t.dayTicksThreshold=63,t.weekTicksThreshold=9,t.defaultTableDateFormat="m/d/Y",t.getDateFormatsForInterval=function(e,n=0){let r="%B %-d, %Y",o="%B %-d, %Y",a="%Y-%m-%d",s="%b %Y",l=t.defaultTableDateFormat;switch(e){case"hour":r="%_I%p %B %-d, %Y",o="%_I%p %b %-d, %Y",a="%_I%p",s="%b %-d, %Y",l="h A";break;case"day":n<t.dayTicksThreshold?a="%-d":(a="%b",s="%Y");break;case"week":n<t.weekTicksThreshold?(a="%-d",s="%b %Y"):(a="%b",s="%Y"),r=i.__("Week of %B %-d, %Y","woocommerce-admin"),o=i.__("Week of %B %-d, %Y","woocommerce-admin");break;case"quarter":case"month":r="%B %Y",o="%B %Y",a="%b",s="%Y";break;case"year":r="%Y",o="%Y",a="%Y"}return{screenReaderFormat:r,tooltipLabelFormat:o,xFormat:a,x2Format:s,tableFormat:l}},t.loadLocaleData=function({userLocale:e,weekdaysShort:t}){"en"!==o.default.locale()&&o.default.updateLocale(e,{longDateFormat:{L:i.__("MM/DD/YYYY","woocommerce-admin"),LL:i.__("MMMM D, YYYY","woocommerce-admin"),LLL:i.__("D MMMM YYYY LT","woocommerce-admin"),LLLL:i.__("dddd, D MMMM YYYY LT","woocommerce-admin"),LT:i.__("HH:mm","woocommerce-admin")},weekdaysMin:t})},t.dateValidationMessages={invalid:i.__("Invalid date","woocommerce-admin"),future:i.__("Select a date in the past","woocommerce-admin"),startAfterEnd:i.__("Start date must be before end date","woocommerce-admin"),endBeforeStart:i.__("Start date must be before end date","woocommerce-admin")},t.validateDateInputForRange=function(e,n,r,a,i){const s=l(i,n);return s?o.default().isBefore(s,"day")?{date:null,error:t.dateValidationMessages.future}:"after"===e&&r&&s.isAfter(r,"day")?{date:null,error:t.dateValidationMessages.startAfterEnd}:"before"===e&&a&&s.isBefore(a,"day")?{date:null,error:t.dateValidationMessages.endBeforeStart}:{date:s}:{date:null,error:t.dateValidationMessages.invalid}}},4940:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.recordPageView=t.queueRecordEvent=t.recordEvent=void 0;const o=r(n(1227)).default("wc-admin:tracks");function a(e,t){if(o("recordevent %s %o","wcadmin_"+e,t,{_tqk:window._tkq,shouldRecord:!!window._tkq&&!!window.wcTracks&&!!window.wcTracks.isEnabled}),!window.wcTracks||"function"!=typeof window.wcTracks.recordEvent)return!1;window.wcTracks.recordEvent(e,t)}t.recordEvent=a;const i={localStorageKey:()=>"tracksQueue",clear(){window.localStorage&&window.localStorage.removeItem(i.localStorageKey())},get(){if(!window.localStorage)return[];let e=window.localStorage.getItem(i.localStorageKey());return e=e?JSON.parse(e):[],e=Array.isArray(e)?e:[],e},add(...e){if(!window.localStorage)return o("Unable to queue, running now",{args:e}),void a.apply(null,e||void 0);let t=i.get();const n={args:e};t.push(n),t=t.slice(-100),o("Adding new item to queue.",n),window.localStorage.setItem(i.localStorageKey(),JSON.stringify(t))},process(){if(!window.localStorage)return;const e=i.get();i.clear(),o("Processing items in queue.",e),e.forEach((e=>{"object"==typeof e&&(o("Processing item in queue.",e),a.apply(null,e.args||void 0))}))}};t.queueRecordEvent=function(e,t){i.add(e,t)},t.recordPageView=function(e,t){e&&(a("page_view",Object.assign({path:e},t)),i.process())}},4184:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)){if(n.length){var i=o.apply(null,n);i&&e.push(i)}}else if("object"===a)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},1227:function(e,t,n){var r=n(4155);t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let r=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(r++,"%c"===e&&(o=r))})),t.splice(o,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(e){}},t.load=function(){let e;try{e=t.storage.getItem("debug")}catch(e){}return!e&&void 0!==r&&"env"in r&&(e=r.env.DEBUG),e},t.useColors=function(){return!("undefined"==typeof window||!window.process||"renderer"!==window.process.type&&!window.process.__nwjs)||("undefined"==typeof navigator||!navigator.userAgent||!navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&("undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=n(2447)(t);const{formatters:o}=e.exports;o.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},2447:function(e,t,n){e.exports=function(e){function t(e){let n,o=null;function a(...e){if(!a.enabled)return;const r=a,o=Number(new Date),i=o-(n||o);r.diff=i,r.prev=n,r.curr=o,n=o,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let s=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,((n,o)=>{if("%%"===n)return"%";s++;const a=t.formatters[o];if("function"==typeof a){const t=e[s];n=a.call(r,t),e.splice(s,1),s--}return n})),t.formatArgs.call(r,e),(r.log||t.log).apply(r,e)}return a.namespace=e,a.useColors=t.useColors(),a.color=t.selectColor(e),a.extend=r,a.destroy=t.destroy,Object.defineProperty(a,"enabled",{enumerable:!0,configurable:!1,get:()=>null===o?t.enabled(e):o,set:e=>{o=e}}),"function"==typeof t.init&&t.init(a),a}function r(e,n){const r=t(this.namespace+(void 0===n?":":n)+e);return r.log=this.log,r}function o(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){return e instanceof Error?e.stack||e.message:e},t.disable=function(){const e=[...t.names.map(o),...t.skips.map(o).map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){let n;t.save(e),t.names=[],t.skips=[];const r=("string"==typeof e?e:"").split(/[\s,]+/),o=r.length;for(n=0;n<o;n++)r[n]&&("-"===(e=r[n].replace(/\*/g,".*?"))[0]?t.skips.push(new RegExp("^"+e.substr(1)+"$")):t.names.push(new RegExp("^"+e+"$")))},t.enabled=function(e){if("*"===e[e.length-1])return!0;let n,r;for(n=0,r=t.skips.length;n<r;n++)if(t.skips[n].test(e))return!1;for(n=0,r=t.names.length;n<r;n++)if(t.names[n].test(e))return!0;return!1},t.humanize=n(7824),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach((n=>{t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let n=0;for(let t=0;t<e.length;t++)n=(n<<5)-n+e.charCodeAt(t),n|=0;return t.colors[Math.abs(n)%t.colors.length]},t.enable(t.load()),t}},3836:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-checkmark-circle",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658A9.98 9.98 0 0012 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10a9.94 9.94 0 00-.966-4.266L11 17.768z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},8222:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-chevron-left",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M14 20l-8-8 8-8 1.414 1.414L8.828 12l6.586 6.586z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7188:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-credit-card",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 2v2H4V6h16zM4 18v-6h16v6H4zm2-4h7v2H6v-2zm9 0h3v2h-3v-2z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},8359:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-external",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M19 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h6v2H5v12h12v-6h2zM13 3v2h4.586l-7.793 7.793 1.414 1.414L19 6.414V11h2V3h-8z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},3119:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-gift",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M22 6h-4.8c.5-.5.8-1.2.8-2 0-1.7-1.3-3-3-3s-3 1.3-3 3c0-1.7-1.3-3-3-3S6 2.3 6 4c0 .8.3 1.5.8 2H2v6h1v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-8h1V6zm-2 4h-7V8h7v2zm-5-7c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zM9 3c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zM4 8h7v2H4V8zm1 4h6v8H5v-8zm14 8h-6v-8h6v8z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7719:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-help-outline",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M12 4c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8m0-2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm4 8a4 4 0 00-8 0h2c0-1.103.897-2 2-2s2 .897 2 2-.897 2-2 2a1 1 0 00-1 1v2h2v-1.141A3.991 3.991 0 0016 10zm-3 6h-2v2h2v-2z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7132:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-info-outline",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M13 9h-2V7h2v2zm0 2h-2v6h2v-6zm-1-7c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8m0-2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},5683:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-notice-outline",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M12 4c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8m0-2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 13h-2v2h2v-2zm-2-2h2l.5-6h-3l.5 6z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7489:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-notice",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 15h-2v-2h2v2zm0-4h-2l-.5-6h3l-.5 6z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},4886:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-phone",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M16 2H8a2 2 0 00-2 2v16a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2zm-3 19h-2v-1h2v1zm3-2H8V5h8v14z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},3115:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-plus-small",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M18 11h-5V6h-2v5H6v2h5v5h2v-5h5z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},8249:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-sync",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M23.5 13.5l-3.086 3.086L19 18l-4.5-4.5 1.414-1.414L18 14.172V12c0-3.308-2.692-6-6-6V4a8 8 0 018 8v2.172l2.086-2.086L23.5 13.5zM6 12V9.828l2.086 2.086L9.5 10.5 5 6 3.586 7.414.5 10.5l1.414 1.414L4 9.828V12a8 8 0 008 8v-2c-3.308 0-6-2.692-6-6z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},6928:function(e){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={exports:{},id:r,loaded:!1};return e[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=e,n.c=t,n.p="",n(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2);Object.defineProperty(t,"combineChunks",{enumerable:!0,get:function(){return r.combineChunks}}),Object.defineProperty(t,"fillInChunks",{enumerable:!0,get:function(){return r.fillInChunks}}),Object.defineProperty(t,"findAll",{enumerable:!0,get:function(){return r.findAll}}),Object.defineProperty(t,"findChunks",{enumerable:!0,get:function(){return r.findChunks}})},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findAll=function(e){var t=e.autoEscape,a=e.caseSensitive,i=void 0!==a&&a,s=e.findChunks,l=void 0===s?r:s,c=e.sanitize,u=e.searchWords,d=e.textToHighlight;return o({chunksToHighlight:n({chunks:l({autoEscape:t,caseSensitive:i,sanitize:c,searchWords:u,textToHighlight:d})}),totalLength:d?d.length:0})};var n=t.combineChunks=function(e){var t=e.chunks;return t.sort((function(e,t){return e.start-t.start})).reduce((function(e,t){if(0===e.length)return[t];var n=e.pop();if(t.start<=n.end){var r=Math.max(n.end,t.end);e.push({highlight:!1,start:n.start,end:r})}else e.push(n,t);return e}),[])},r=function(e){var t=e.autoEscape,n=e.caseSensitive,r=e.sanitize,o=void 0===r?a:r,i=e.searchWords,s=e.textToHighlight;return s=o(s),i.filter((function(e){return e})).reduce((function(e,r){r=o(r),t&&(r=r.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"));for(var a=new RegExp(r,n?"g":"gi"),i=void 0;i=a.exec(s);){var l=i.index,c=a.lastIndex;c>l&&e.push({highlight:!1,start:l,end:c}),i.index===a.lastIndex&&a.lastIndex++}return e}),[])};t.findChunks=r;var o=t.fillInChunks=function(e){var t=e.chunksToHighlight,n=e.totalLength,r=[],o=function(e,t,n){t-e>0&&r.push({start:e,end:t,highlight:n})};if(0===t.length)o(0,n,!1);else{var a=0;t.forEach((function(e){o(a,e.start,!1),o(e.start,e.end,!0),a=e.end})),o(a,n,!1)}return r};function a(e){return e}}])},8679:function(e,t,n){"use strict";var r=n(9864),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return r.isMemo(e)?i:s[e.$$typeof]||o}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=i;var c=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,g=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,f=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(f){var o=p(n);o&&o!==f&&e(t,o,r)}var i=u(n);d&&(i=i.concat(d(n)));for(var s=l(t),m=l(n),h=0;h<i.length;++h){var y=i[h];if(!(a[y]||r&&r[y]||m&&m[y]||s&&s[y])){var v=g(n,y);try{c(t,y,v)}catch(e){}}}}return t}},9016:function(e){"use strict";e.exports=function(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var o=isFinite(+e)?+e:0,a=isFinite(+t)?Math.abs(t):0,i=void 0===r?",":r,s=void 0===n?".":n,l="";return l=(a?function(e,t){if(-1===(""+e).indexOf("e"))return+(Math.round(e+"e+"+t)+"e-"+t);var n=(""+e).split("e"),r="";return+n[1]+t>0&&(r="+"),(+(Math.round(+n[0]+"e"+r+(+n[1]+t))+"e-"+t)).toFixed(t)}(o,a).toString():""+Math.round(o)).split("."),l[0].length>3&&(l[0]=l[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,i)),(l[1]||"").length<a&&(l[1]=l[1]||"",l[1]+=new Array(a-l[1].length+1).join("0")),l.join(s)}},9588:function(e){e.exports=function(e,t){var n,r,o=0;function a(){var a,i,s=n,l=arguments.length;e:for(;s;){if(s.args.length===arguments.length){for(i=0;i<l;i++)if(s.args[i]!==arguments[i]){s=s.next;continue e}return s!==n&&(s===r&&(r=s.prev),s.prev.next=s.next,s.next&&(s.next.prev=s.prev),s.next=n,s.prev=null,n.prev=s,n=s),s.val}s=s.next}for(a=new Array(l),i=0;i<l;i++)a[i]=arguments[i];return s={args:a,val:e.apply(null,a)},n?(n.prev=s,s.next=n):r=s,o===t.maxSize?(r=r.prev).next=null:o++,n=s,s.val}return t=t||{},a.clear=function(){n=null,r=null,o=0},a}},2441:function(e,t,n){var r;!function(o,a,i){if(o){for(var s,l={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",224:"meta"},c={106:"*",107:"+",109:"-",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},u={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"},d={option:"alt",command:"meta",return:"enter",escape:"esc",plus:"+",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"},g=1;g<20;++g)l[111+g]="f"+g;for(g=0;g<=9;++g)l[g+96]=g.toString();b.prototype.bind=function(e,t,n){var r=this;return e=e instanceof Array?e:[e],r._bindMultiple.call(r,e,t,n),r},b.prototype.unbind=function(e,t){return this.bind.call(this,e,(function(){}),t)},b.prototype.trigger=function(e,t){var n=this;return n._directMap[e+":"+t]&&n._directMap[e+":"+t]({},e),n},b.prototype.reset=function(){var e=this;return e._callbacks={},e._directMap={},e},b.prototype.stopCallback=function(e,t){if((" "+t.className+" ").indexOf(" mousetrap ")>-1)return!1;if(v(t,this.target))return!1;if("composedPath"in e&&"function"==typeof e.composedPath){var n=e.composedPath()[0];n!==e.target&&(t=n)}return"INPUT"==t.tagName||"SELECT"==t.tagName||"TEXTAREA"==t.tagName||t.isContentEditable},b.prototype.handleKey=function(){var e=this;return e._handleKey.apply(e,arguments)},b.addKeycodes=function(e){for(var t in e)e.hasOwnProperty(t)&&(l[t]=e[t]);s=null},b.init=function(){var e=b(a);for(var t in e)"_"!==t.charAt(0)&&(b[t]=function(t){return function(){return e[t].apply(e,arguments)}}(t))},b.init(),o.Mousetrap=b,e.exports&&(e.exports=b),void 0===(r=function(){return b}.call(t,n,t,e))||(e.exports=r)}function p(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent("on"+t,n)}function f(e){if("keypress"==e.type){var t=String.fromCharCode(e.which);return e.shiftKey||(t=t.toLowerCase()),t}return l[e.which]?l[e.which]:c[e.which]?c[e.which]:String.fromCharCode(e.which).toLowerCase()}function m(e){return"shift"==e||"ctrl"==e||"alt"==e||"meta"==e}function h(e,t,n){return n||(n=function(){if(!s)for(var e in s={},l)e>95&&e<112||l.hasOwnProperty(e)&&(s[l[e]]=e);return s}()[e]?"keydown":"keypress"),"keypress"==n&&t.length&&(n="keydown"),n}function y(e,t){var n,r,o,a=[];for(n=function(e){return"+"===e?["+"]:(e=e.replace(/\+{2}/g,"+plus")).split("+")}(e),o=0;o<n.length;++o)r=n[o],d[r]&&(r=d[r]),t&&"keypress"!=t&&u[r]&&(r=u[r],a.push("shift")),m(r)&&a.push(r);return{key:r,modifiers:a,action:t=h(r,a,t)}}function v(e,t){return null!==e&&e!==a&&(e===t||v(e.parentNode,t))}function b(e){var t=this;if(e=e||a,!(t instanceof b))return new b(e);t.target=e,t._callbacks={},t._directMap={};var n,r={},o=!1,i=!1,s=!1;function l(e){e=e||{};var t,n=!1;for(t in r)e[t]?n=!0:r[t]=0;n||(s=!1)}function c(e,n,o,a,i,s){var l,c,u,d,g=[],p=o.type;if(!t._callbacks[e])return[];for("keyup"==p&&m(e)&&(n=[e]),l=0;l<t._callbacks[e].length;++l)if(c=t._callbacks[e][l],(a||!c.seq||r[c.seq]==c.level)&&p==c.action&&("keypress"==p&&!o.metaKey&&!o.ctrlKey||(u=n,d=c.modifiers,u.sort().join(",")===d.sort().join(",")))){var f=!a&&c.combo==i,h=a&&c.seq==a&&c.level==s;(f||h)&&t._callbacks[e].splice(l,1),g.push(c)}return g}function u(e,n,r,o){t.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}(n),function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}(n))}function d(e){"number"!=typeof e.which&&(e.which=e.keyCode);var n=f(e);n&&("keyup"!=e.type||o!==n?t.handleKey(n,function(e){var t=[];return e.shiftKey&&t.push("shift"),e.altKey&&t.push("alt"),e.ctrlKey&&t.push("ctrl"),e.metaKey&&t.push("meta"),t}(e),e):o=!1)}function g(e,a,i,d,p){t._directMap[e+":"+i]=a;var m,h=(e=e.replace(/\s+/g," ")).split(" ");h.length>1?function(e,t,a,i){function c(t){return function(){s=t,++r[e],clearTimeout(n),n=setTimeout(l,1e3)}}function d(t){u(a,t,e),"keyup"!==i&&(o=f(t)),setTimeout(l,10)}r[e]=0;for(var p=0;p<t.length;++p){var m=p+1===t.length?d:c(i||y(t[p+1]).action);g(t[p],m,i,e,p)}}(e,h,a,i):(m=y(e,i),t._callbacks[m.key]=t._callbacks[m.key]||[],c(m.key,m.modifiers,{type:m.action},d,e,p),t._callbacks[m.key][d?"unshift":"push"]({callback:a,modifiers:m.modifiers,action:m.action,seq:d,level:p,combo:e}))}t._handleKey=function(e,t,n){var r,o=c(e,t,n),a={},d=0,g=!1;for(r=0;r<o.length;++r)o[r].seq&&(d=Math.max(d,o[r].level));for(r=0;r<o.length;++r)if(o[r].seq){if(o[r].level!=d)continue;g=!0,a[o[r].seq]=1,u(o[r].callback,n,o[r].combo,o[r].seq)}else g||u(o[r].callback,n,o[r].combo);var p="keypress"==n.type&&i;n.type!=s||m(e)||p||l(a),i=g&&"keydown"==n.type},t._bindMultiple=function(e,t,n){for(var r=0;r<e.length;++r)g(e[r],t,n)},p(e,"keypress",d),p(e,"keydown",d),p(e,"keyup",d)}}("undefined"!=typeof window?window:null,"undefined"!=typeof window?document:null)},3956:function(){!function(e){if(e){var t={},n=e.prototype.stopCallback;e.prototype.stopCallback=function(e,r,o,a){return!!this.paused||!t[o]&&!t[a]&&n.call(this,e,r,o)},e.prototype.bindGlobal=function(e,n,r){if(this.bind(e,n,r),e instanceof Array)for(var o=0;o<e.length;o++)t[e[o]]=!0;else t[e]=!0},e.init()}}("undefined"!=typeof Mousetrap?Mousetrap:void 0)},7824:function(e){var t=1e3,n=60*t,r=60*n,o=24*r;function a(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,i){i=i||{};var s,l,c=typeof e;if("string"===c&&e.length>0)return function(e){if(!((e=String(e)).length>100)){var a=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(a){var i=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return 315576e5*i;case"weeks":case"week":case"w":return 6048e5*i;case"days":case"day":case"d":return i*o;case"hours":case"hour":case"hrs":case"hr":case"h":return i*r;case"minutes":case"minute":case"mins":case"min":case"m":return i*n;case"seconds":case"second":case"secs":case"sec":case"s":return i*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return i;default:return}}}}(e);if("number"===c&&isFinite(e))return i.long?(s=e,(l=Math.abs(s))>=o?a(s,l,o,"day"):l>=r?a(s,l,r,"hour"):l>=n?a(s,l,n,"minute"):l>=t?a(s,l,t,"second"):s+" ms"):function(e){var a=Math.abs(e);return a>=o?Math.round(e/o)+"d":a>=r?Math.round(e/r)+"h":a>=n?Math.round(e/n)+"m":a>=t?Math.round(e/t)+"s":e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},6470:function(e,t,n){"use strict";var r=n(4155);function o(e){if("string"!=typeof e)throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}function a(e,t){for(var n,r="",o=0,a=-1,i=0,s=0;s<=e.length;++s){if(s<e.length)n=e.charCodeAt(s);else{if(47===n)break;n=47}if(47===n){if(a===s-1||1===i);else if(a!==s-1&&2===i){if(r.length<2||2!==o||46!==r.charCodeAt(r.length-1)||46!==r.charCodeAt(r.length-2))if(r.length>2){var l=r.lastIndexOf("/");if(l!==r.length-1){-1===l?(r="",o=0):o=(r=r.slice(0,l)).length-1-r.lastIndexOf("/"),a=s,i=0;continue}}else if(2===r.length||1===r.length){r="",o=0,a=s,i=0;continue}t&&(r.length>0?r+="/..":r="..",o=2)}else r.length>0?r+="/"+e.slice(a+1,s):r=e.slice(a+1,s),o=s-a-1;a=s,i=0}else 46===n&&-1!==i?++i:i=-1}return r}var i={resolve:function(){for(var e,t="",n=!1,i=arguments.length-1;i>=-1&&!n;i--){var s;i>=0?s=arguments[i]:(void 0===e&&(e=r.cwd()),s=e),o(s),0!==s.length&&(t=s+"/"+t,n=47===s.charCodeAt(0))}return t=a(t,!n),n?t.length>0?"/"+t:"/":t.length>0?t:"."},normalize:function(e){if(o(e),0===e.length)return".";var t=47===e.charCodeAt(0),n=47===e.charCodeAt(e.length-1);return 0!==(e=a(e,!t)).length||t||(e="."),e.length>0&&n&&(e+="/"),t?"/"+e:e},isAbsolute:function(e){return o(e),e.length>0&&47===e.charCodeAt(0)},join:function(){if(0===arguments.length)return".";for(var e,t=0;t<arguments.length;++t){var n=arguments[t];o(n),n.length>0&&(void 0===e?e=n:e+="/"+n)}return void 0===e?".":i.normalize(e)},relative:function(e,t){if(o(e),o(t),e===t)return"";if((e=i.resolve(e))===(t=i.resolve(t)))return"";for(var n=1;n<e.length&&47===e.charCodeAt(n);++n);for(var r=e.length,a=r-n,s=1;s<t.length&&47===t.charCodeAt(s);++s);for(var l=t.length-s,c=a<l?a:l,u=-1,d=0;d<=c;++d){if(d===c){if(l>c){if(47===t.charCodeAt(s+d))return t.slice(s+d+1);if(0===d)return t.slice(s+d)}else a>c&&(47===e.charCodeAt(n+d)?u=d:0===d&&(u=0));break}var g=e.charCodeAt(n+d);if(g!==t.charCodeAt(s+d))break;47===g&&(u=d)}var p="";for(d=n+u+1;d<=r;++d)d!==r&&47!==e.charCodeAt(d)||(0===p.length?p+="..":p+="/..");return p.length>0?p+t.slice(s+u):(s+=u,47===t.charCodeAt(s)&&++s,t.slice(s))},_makeLong:function(e){return e},dirname:function(e){if(o(e),0===e.length)return".";for(var t=e.charCodeAt(0),n=47===t,r=-1,a=!0,i=e.length-1;i>=1;--i)if(47===(t=e.charCodeAt(i))){if(!a){r=i;break}}else a=!1;return-1===r?n?"/":".":n&&1===r?"//":e.slice(0,r)},basename:function(e,t){if(void 0!==t&&"string"!=typeof t)throw new TypeError('"ext" argument must be a string');o(e);var n,r=0,a=-1,i=!0;if(void 0!==t&&t.length>0&&t.length<=e.length){if(t.length===e.length&&t===e)return"";var s=t.length-1,l=-1;for(n=e.length-1;n>=0;--n){var c=e.charCodeAt(n);if(47===c){if(!i){r=n+1;break}}else-1===l&&(i=!1,l=n+1),s>=0&&(c===t.charCodeAt(s)?-1==--s&&(a=n):(s=-1,a=l))}return r===a?a=l:-1===a&&(a=e.length),e.slice(r,a)}for(n=e.length-1;n>=0;--n)if(47===e.charCodeAt(n)){if(!i){r=n+1;break}}else-1===a&&(i=!1,a=n+1);return-1===a?"":e.slice(r,a)},extname:function(e){o(e);for(var t=-1,n=0,r=-1,a=!0,i=0,s=e.length-1;s>=0;--s){var l=e.charCodeAt(s);if(47!==l)-1===r&&(a=!1,r=s+1),46===l?-1===t?t=s:1!==i&&(i=1):-1!==t&&(i=-1);else if(!a){n=s+1;break}}return-1===t||-1===r||0===i||1===i&&t===r-1&&t===n+1?"":e.slice(t,r)},format:function(e){if(null===e||"object"!=typeof e)throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof e);return function(e,t){var n=t.dir||t.root,r=t.base||(t.name||"")+(t.ext||"");return n?n===t.root?n+r:n+"/"+r:r}(0,e)},parse:function(e){o(e);var t={root:"",dir:"",base:"",ext:"",name:""};if(0===e.length)return t;var n,r=e.charCodeAt(0),a=47===r;a?(t.root="/",n=1):n=0;for(var i=-1,s=0,l=-1,c=!0,u=e.length-1,d=0;u>=n;--u)if(47!==(r=e.charCodeAt(u)))-1===l&&(c=!1,l=u+1),46===r?-1===i?i=u:1!==d&&(d=1):-1!==i&&(d=-1);else if(!c){s=u+1;break}return-1===i||-1===l||0===d||1===d&&i===l-1&&i===s+1?-1!==l&&(t.base=t.name=0===s&&a?e.slice(1,l):e.slice(s,l)):(0===s&&a?(t.name=e.slice(1,i),t.base=e.slice(1,l)):(t.name=e.slice(s,i),t.base=e.slice(s,l)),t.ext=e.slice(i,l)),s>0?t.dir=e.slice(0,s-1):a&&(t.dir="/"),t},sep:"/",delimiter:":",win32:null,posix:null};i.posix=i,e.exports=i},4155:function(e){var t,n,r=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function i(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:o}catch(e){t=o}try{n="function"==typeof clearTimeout?clearTimeout:a}catch(e){n=a}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&g())}function g(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===a||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(g)},p.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=f,r.addListener=f,r.once=f,r.off=f,r.removeListener=f,r.removeAllListeners=f,r.emit=f,r.prependListener=f,r.prependOnceListener=f,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},2703:function(e,t,n){"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var s=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 s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}},5697:function(e,t,n){e.exports=n(2703)()},414:function(e){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},5798:function(e){"use strict";var t=String.prototype.replace,n=/%20/g,r="RFC3986";e.exports={default:r,formatters:{RFC1738:function(e){return t.call(e,n,"+")},RFC3986:function(e){return String(e)}},RFC1738:"RFC1738",RFC3986:r}},129:function(e,t,n){"use strict";var r=n(8261),o=n(5235),a=n(5798);e.exports={formats:a,parse:o,stringify:r}},5235:function(e,t,n){"use strict";var r=n(2769),o=Object.prototype.hasOwnProperty,a=Array.isArray,i={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},s=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},l=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},c=function(e,t,n,r){if(e){var a=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,i=/(\[[^[\]]*])/g,s=n.depth>0&&/(\[[^[\]]*])/.exec(a),c=s?a.slice(0,s.index):a,u=[];if(c){if(!n.plainObjects&&o.call(Object.prototype,c)&&!n.allowPrototypes)return;u.push(c)}for(var d=0;n.depth>0&&null!==(s=i.exec(a))&&d<n.depth;){if(d+=1,!n.plainObjects&&o.call(Object.prototype,s[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(s[1])}return s&&u.push("["+a.slice(s.index)+"]"),function(e,t,n,r){for(var o=r?t:l(t,n),a=e.length-1;a>=0;--a){var i,s=e[a];if("[]"===s&&n.parseArrays)i=[].concat(o);else{i=n.plainObjects?Object.create(null):{};var c="["===s.charAt(0)&&"]"===s.charAt(s.length-1)?s.slice(1,-1):s,u=parseInt(c,10);n.parseArrays||""!==c?!isNaN(u)&&s!==c&&String(u)===c&&u>=0&&n.parseArrays&&u<=n.arrayLimit?(i=[])[u]=o:i[c]=o:i={0:o}}o=i}return o}(u,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return i;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?i.charset:e.charset;return{allowDots:void 0===e.allowDots?i.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:i.allowPrototypes,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:i.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:i.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:i.comma,decoder:"function"==typeof e.decoder?e.decoder:i.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:i.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:i.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:i.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:i.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:i.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:i.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var u="string"==typeof e?function(e,t){var n,c={},u=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,g=u.split(t.delimiter,d),p=-1,f=t.charset;if(t.charsetSentinel)for(n=0;n<g.length;++n)0===g[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===g[n]?f="utf-8":"utf8=%26%2310003%3B"===g[n]&&(f="iso-8859-1"),p=n,n=g.length);for(n=0;n<g.length;++n)if(n!==p){var m,h,y=g[n],v=y.indexOf("]="),b=-1===v?y.indexOf("="):v+1;-1===b?(m=t.decoder(y,i.decoder,f,"key"),h=t.strictNullHandling?null:""):(m=t.decoder(y.slice(0,b),i.decoder,f,"key"),h=r.maybeMap(l(y.slice(b+1),t),(function(e){return t.decoder(e,i.decoder,f,"value")}))),h&&t.interpretNumericEntities&&"iso-8859-1"===f&&(h=s(h)),y.indexOf("[]=")>-1&&(h=a(h)?[h]:h),o.call(c,m)?c[m]=r.combine(c[m],h):c[m]=h}return c}(e,n):e,d=n.plainObjects?Object.create(null):{},g=Object.keys(u),p=0;p<g.length;++p){var f=g[p],m=c(f,u[f],n,"string"==typeof e);d=r.merge(d,m,n)}return r.compact(d)}},8261:function(e,t,n){"use strict";var r=n(2769),o=n(5798),a=Object.prototype.hasOwnProperty,i={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},s=Array.isArray,l=Array.prototype.push,c=function(e,t){l.apply(e,s(t)?t:[t])},u=Date.prototype.toISOString,d=o.default,g={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,format:d,formatter:o.formatters[d],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},p=function e(t,n,o,a,i,l,u,d,p,f,m,h,y,v){var b,_=t;if("function"==typeof u?_=u(n,_):_ instanceof Date?_=f(_):"comma"===o&&s(_)&&(_=r.maybeMap(_,(function(e){return e instanceof Date?f(e):e}))),null===_){if(a)return l&&!y?l(n,g.encoder,v,"key",m):n;_=""}if("string"==typeof(b=_)||"number"==typeof b||"boolean"==typeof b||"symbol"==typeof b||"bigint"==typeof b||r.isBuffer(_))return l?[h(y?n:l(n,g.encoder,v,"key",m))+"="+h(l(_,g.encoder,v,"value",m))]:[h(n)+"="+h(String(_))];var w,E=[];if(void 0===_)return E;if("comma"===o&&s(_))w=[{value:_.length>0?_.join(",")||null:void 0}];else if(s(u))w=u;else{var $=Object.keys(_);w=d?$.sort(d):$}for(var C=0;C<w.length;++C){var k=w[C],S="object"==typeof k&&void 0!==k.value?k.value:_[k];if(!i||null!==S){var x=s(_)?"function"==typeof o?o(n,k):n:n+(p?"."+k:"["+k+"]");c(E,e(S,x,o,a,i,l,u,d,p,f,m,h,y,v))}}return E};e.exports=function(e,t){var n,r=e,l=function(e){if(!e)return g;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||g.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=o.default;if(void 0!==e.format){if(!a.call(o.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=o.formatters[n],i=g.filter;return("function"==typeof e.filter||s(e.filter))&&(i=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:g.addQueryPrefix,allowDots:void 0===e.allowDots?g.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:g.charsetSentinel,delimiter:void 0===e.delimiter?g.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:g.encode,encoder:"function"==typeof e.encoder?e.encoder:g.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:g.encodeValuesOnly,filter:i,format:n,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:g.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:g.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:g.strictNullHandling}}(t);"function"==typeof l.filter?r=(0,l.filter)("",r):s(l.filter)&&(n=l.filter);var u,d=[];if("object"!=typeof r||null===r)return"";u=t&&t.arrayFormat in i?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var f=i[u];n||(n=Object.keys(r)),l.sort&&n.sort(l.sort);for(var m=0;m<n.length;++m){var h=n[m];l.skipNulls&&null===r[h]||c(d,p(r[h],h,f,l.strictNullHandling,l.skipNulls,l.encode?l.encoder:null,l.filter,l.sort,l.allowDots,l.serializeDate,l.format,l.formatter,l.encodeValuesOnly,l.charset))}var y=d.join(l.delimiter),v=!0===l.addQueryPrefix?"?":"";return l.charsetSentinel&&("iso-8859-1"===l.charset?v+="utf8=%26%2310003%3B&":v+="utf8=%E2%9C%93&"),y.length>0?v+y:""}},2769:function(e,t,n){"use strict";var r=n(5798),o=Object.prototype.hasOwnProperty,a=Array.isArray,i=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),s=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:s,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],i=o.obj[o.prop],s=Object.keys(i),l=0;l<s.length;++l){var c=s[l],u=i[c];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(t.push({obj:i,prop:c}),n.push(u))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(a(n)){for(var r=[],o=0;o<n.length;++o)void 0!==n[o]&&r.push(n[o]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(e){return r}},encode:function(e,t,n,o,a){if(0===e.length)return e;var s=e;if("symbol"==typeof e?s=Symbol.prototype.toString.call(e):"string"!=typeof e&&(s=String(e)),"iso-8859-1"===n)return escape(s).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var l="",c=0;c<s.length;++c){var u=s.charCodeAt(c);45===u||46===u||95===u||126===u||u>=48&&u<=57||u>=65&&u<=90||u>=97&&u<=122||a===r.RFC1738&&(40===u||41===u)?l+=s.charAt(c):u<128?l+=i[u]:u<2048?l+=i[192|u>>6]+i[128|63&u]:u<55296||u>=57344?l+=i[224|u>>12]+i[128|u>>6&63]+i[128|63&u]:(c+=1,u=65536+((1023&u)<<10|1023&s.charCodeAt(c)),l+=i[240|u>>18]+i[128|u>>12&63]+i[128|u>>6&63]+i[128|63&u])}return l},isBuffer:function(e){return!(!e||"object"!=typeof e||!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e)))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(a(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,r){if(!n)return t;if("object"!=typeof n){if(a(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(r&&(r.plainObjects||r.allowPrototypes)||!o.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var i=t;return a(t)&&!a(n)&&(i=s(t,r)),a(t)&&a(n)?(n.forEach((function(n,a){if(o.call(t,a)){var i=t[a];i&&"object"==typeof i&&n&&"object"==typeof n?t[a]=e(i,n,r):t.push(n)}else t[a]=n})),t):Object.keys(n).reduce((function(t,a){var i=n[a];return o.call(t,a)?t[a]=e(t[a],i,r):t[a]=i,t}),i)}}},9921:function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,a=n?Symbol.for("react.fragment"):60107,i=n?Symbol.for("react.strict_mode"):60108,s=n?Symbol.for("react.profiler"):60114,l=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,u=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,g=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,f=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,h=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,_=n?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case u:case d:case a:case s:case i:case p:return e;default:switch(e=e&&e.$$typeof){case c:case g:case h:case m:case l:return e;default:return t}}case o:return t}}}function E(e){return w(e)===d}t.AsyncMode=u,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=r,t.ForwardRef=g,t.Fragment=a,t.Lazy=h,t.Memo=m,t.Portal=o,t.Profiler=s,t.StrictMode=i,t.Suspense=p,t.isAsyncMode=function(e){return E(e)||w(e)===u},t.isConcurrentMode=E,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return w(e)===g},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===h},t.isMemo=function(e){return w(e)===m},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===s},t.isStrictMode=function(e){return w(e)===i},t.isSuspense=function(e){return w(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===s||e===i||e===p||e===f||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===m||e.$$typeof===l||e.$$typeof===c||e.$$typeof===g||e.$$typeof===v||e.$$typeof===b||e.$$typeof===_||e.$$typeof===y)},t.typeOf=w},9864:function(e,t,n){"use strict";e.exports=n(9921)},5464:function(e,t,n){var r=n(9196),o={display:"block",opacity:0,position:"absolute",top:0,left:0,height:"100%",width:"100%",overflow:"hidden",pointerEvents:"none",zIndex:-1},a=function(e){var t=e.onResize,n=r.useRef();return function(e,t){var n=function(){return e.current&&e.current.contentDocument&&e.current.contentDocument.defaultView};function o(){t();var e=n();e&&e.addEventListener("resize",t)}r.useEffect((function(){return n()?o():e.current&&e.current.addEventListener&&e.current.addEventListener("load",o),function(){var e=n();e&&"function"==typeof e.removeEventListener&&e.removeEventListener("resize",t)}}),[])}(n,(function(){return t(n)})),r.createElement("iframe",{style:o,src:"about:blank",ref:n,"aria-hidden":!0,tabIndex:-1,frameBorder:0})},i=function(e){return{width:null!=e?e.offsetWidth:null,height:null!=e?e.offsetHeight:null}};e.exports=function(e){void 0===e&&(e=i);var t=r.useState(e(null)),n=t[0],o=t[1],s=r.useCallback((function(t){return o(e(t.current))}),[e]);return[r.useMemo((function(){return r.createElement(a,{onResize:s})}),[s]),n]}},3272:function(e,t,n){"use strict";var r,o={},a=n(9670);function i(e,t){o[e]=function(e,t){return e in r?r[e]:t}(e,t)}e.exports.configure=function(e,t,n){if(r=e||{},n=n||{},i("autoRename",!1),i("autoRenameStrict",!1),i("blacklist",{}),i("clean",!0),i("greedy",!1),i("processUrls",!1),i("stringMap",[]),i("useCalc",!1),Array.isArray(o.stringMap)){for(var s,l,c=0;c<o.stringMap.length;c++){var u=o.stringMap[c];if(s&&l)break;"left-right"===u.name?s=!0:"ltr-rtl"===u.name&&(l=!0)}s||o.stringMap.push({name:"left-right",priority:100,exclusive:!1,search:["left","Left","LEFT"],replace:["right","Right","RIGHT"],options:{scope:"*",ignoreCase:!1}}),l||o.stringMap.push({name:"ltr-rtl",priority:100,exclusive:!1,search:["ltr","Ltr","LTR"],replace:["rtl","Rtl","RTL"],options:{scope:"*",ignoreCase:!1}}),o.stringMap.sort((function(e,t){return e.priority-t.priority}))}return o.plugins=[],Array.isArray(t)?(t.some((function(e){return"rtlcss"===e.name}))||o.plugins.push(a),o.plugins=o.plugins.concat(t)):t&&"rtlcss"===t.name||o.plugins.push(a),o.plugins.sort((function(e,t){return e.priority-t.priority})),o.hooks={pre:function(){},post:function(){}},"function"==typeof n.pre&&(o.hooks.pre=n.pre),"function"==typeof n.post&&(o.hooks.post=n.post),o}},5915:function(e){e.exports=function(e){var t,n=0,r=e.text,o=r.match(/^\s*!?\s*rtl:/);return o&&(t={source:e,name:"",param:"",begin:!0,end:!0,blacklist:!1,preserve:!1},(n=(r=r.slice(o[0].length)).indexOf(":"))>-1?(t.name=r.slice(0,n),t.begin="end"!==t.name,t.end="begin"!==t.name,"begin"===t.name||"end"===t.name?(n=(r=r.slice(t.name.length+1)).indexOf(":"))>-1?(t.name=r.slice(0,n),r=r.slice(n),t.param=r.slice(1)):t.name=r:t.param=r.slice(n+1)):t.name=r),t}},9670:function(module,__unused_webpack_exports,__webpack_require__){"use strict";var config=__webpack_require__(3272),util=__webpack_require__(8805);module.exports={name:"rtlcss",priority:100,directives:{control:{ignore:{expect:{atrule:!0,comment:!0,decl:!0,rule:!0},endNode:null,begin:function(e,t,n){if(!this.endNode&&t.begin&&t.end){for(var r=e;r&&r.nodes;)r=r.nodes[r.nodes.length-1];this.endNode=r}var o=!0;return"comment"===e.type&&e.text.match(/^\s*!?\s*rtl:end:ignore/)&&(o=!1),o},end:function(e,t,n){return!!(t.begin!==t.end&&"comment"===e.type||t.begin&&t.end&&e===this.endNode)&&(this.endNode=null,!0)}},rename:{expect:{rule:!0},begin:function(e,t,n){return e.selector=n.util.applyStringMap(e.selector,!1),!1},end:function(e,t){return!0}},raw:{expect:{self:!0},begin:function(e,t,n){var r=n.postcss.parse(t.param,{from:e.source.input.from});return e.parent.insertBefore(e,r),!0},end:function(e,t){return!0}},remove:{expect:{atrule:!0,rule:!0,decl:!0},begin:function(e,t,n){var r=!1;switch(e.type){case"atrule":case"rule":case"decl":r=!0,e.remove()}return r},end:function(e,t,n){return!0}},options:{expect:{self:!0},stack:[],begin:function(e,t,n){var r;this.stack.push(util.extend({},n.config));try{r=JSON.parse(t.param)}catch(t){throw e.error("Invlaid options object",{details:t})}return n.config=config.configure(r,n.config.plugins),n.util=util.configure(n.config),!0},end:function(e,t,n){var r=this.stack.pop();return r&&!t.begin&&(n.config=r,n.util=util.configure(n.config)),!0}},config:{expect:{self:!0},expr:{fn:/function([^\(]*)\(([^\(\)]*?)\)[^\{]*\{([^]*)\}/gi,rx:/\/([^\/]*)\/(.*)/gi},stack:[],begin:function(node,metadata,context){var configuration;this.stack.push(util.extend({},context.config));try{configuration=eval("("+metadata.param+")")}catch(e){throw node.error("Invlaid config object",{details:e})}return context.config=config.configure(configuration.options,configuration.plugins),context.util=util.configure(context.config),!0},end:function(e,t,n){var r=this.stack.pop();return r&&!t.begin&&(n.config=r,n.util=util.configure(n.config)),!0}}},value:[{name:"ignore",action:function(e,t,n){return!0}},{name:"prepend",action:function(e,t,n){var r="";return e.raws.value.raw.replace(t,(function(e,t){r+=t})),e.value=e.raws.value.raw=r+e.raws.value.raw,!0}},{name:"append",action:function(e,t,n){return e.value=e.raws.value.raw=e.raws.value.raw.replace(t,(function(e,t){return e+t})),!0}},{name:"insert",action:function(e,t,n){return e.value=e.raws.value.raw=e.raws.value.raw.replace(t,(function(e,t){return t+e})),!0}},{name:"",action:function(e,t,n){return e.raws.value.raw.replace(t,(function(t,n){e.value=e.raws.value.raw=n+t})),!0}}]},processors:[{name:"variable",expr:/^--/im,action:function(e,t){return{prop:e,value:t}}},{name:"direction",expr:/direction/im,action:function(e,t,n){return{prop:e,value:n.util.swapLtrRtl(t)}}},{name:"left",expr:/left/im,action:function(e,t,n){return{prop:e.replace(this.expr,(function(){return"right"})),value:t}}},{name:"right",expr:/right/im,action:function(e,t,n){return{prop:e.replace(this.expr,(function(){return"left"})),value:t}}},{name:"four-value syntax",expr:/^(margin|padding|border-(color|style|width))$/gi,cache:null,action:function(e,t,n){null===this.cache&&(this.cache={match:/[^\s\uFFFD]+/g});var r=n.util.guardFunctions(t),o=r.value.match(this.cache.match);if(o&&4===o.length&&(r.store.length>0||o[1]!==o[3])){var a=0;r.value=r.value.replace(this.cache.match,(function(){return o[(4-a++)%4]}))}return{prop:e,value:n.util.unguardFunctions(r)}}},{name:"border radius",expr:/border-radius/gi,cache:null,flip:function(e){var t,n=e.match(this.cache.match);if(n)switch(n.length){case 2:t=1,n[0]!==n[1]&&(e=e.replace(this.cache.match,(function(){return n[t--]})));break;case 3:e=e.replace(this.cache.white,(function(e){return e+n[1]+" "}));break;case 4:t=0,n[0]===n[1]&&n[2]===n[3]||(e=e.replace(this.cache.match,(function(){return n[(5-t++)%4]})))}return e},action:function(e,t,n){null===this.cache&&(this.cache={match:/[^\s\uFFFD]+/g,slash:/[^\/]+/g,white:/(^\s*)/});var r=n.util.guardFunctions(t);return r.value=r.value.replace(this.cache.slash,function(e){return this.flip(e)}.bind(this)),{prop:e,value:n.util.unguardFunctions(r)}}},{name:"shadow",expr:/shadow/gi,cache:null,action:function(e,t,n){null===this.cache&&(this.cache={replace:/[^,]+/g});var r=n.util.guardHexColors(t),o=n.util.guardFunctions(r.value);return o.value=o.value.replace(this.cache.replace,(function(e){return n.util.negate(e)})),r.value=n.util.unguardFunctions(o),{prop:e,value:n.util.unguardHexColors(r)}}},{name:"transform and perspective origin",expr:/(?:transform|perspective)-origin/gi,cache:null,flip:function(e,t){return"0"===e?e="100%":e.match(this.cache.percent)?e=t.util.complement(e):e.match(this.cache.length)&&(e=t.util.flipLength(e)),e},action:function(e,t,n){if(null===this.cache&&(this.cache={match:n.util.regex(["calc","percent","length"],"g"),percent:n.util.regex(["calc","percent"],"i"),length:n.util.regex(["length"],"gi"),xKeyword:/(left|right)/i}),t.match(this.cache.xKeyword))t=n.util.swapLeftRight(t);else{var r=n.util.guardFunctions(t),o=r.value.match(this.cache.match);o&&o.length>0&&(o[0]=this.flip(o[0],n),r.value=r.value.replace(this.cache.match,(function(){return o.shift()})),t=n.util.unguardFunctions(r))}return{prop:e,value:t}}},{name:"transform",expr:/^(?!text\-).*?transform$/gi,cache:null,flip:function(e,t,n){var r=0;return e.replace(this.cache.unit,(function(e){return t(++r,e)}))},flipMatrix:function(e,t){return this.flip(e,(function(e,n){return 2===e||3===e||5===e?t.util.negate(n):n}),t)},flipMatrix3D:function(e,t){return this.flip(e,(function(e,n){return 2===e||4===e||5===e||13===e?t.util.negate(n):n}),t)},flipRotate3D:function(e,t){return this.flip(e,(function(e,n){return 1===e||4===e?t.util.negate(n):n}),t)},action:function(e,t,n){null===this.cache&&(this.cache={negatable:/((translate)(x|3d)?|rotate(z|y)?)$/gi,unit:n.util.regex(["calc","number"],"g"),matrix:/matrix$/i,matrix3D:/matrix3d$/i,skewXY:/skew(x|y)?$/i,rotate3D:/rotate3d$/i});var r=n.util.guardFunctions(t);return{prop:e,value:n.util.unguardFunctions(r,function(e,t){return t.length&&(t.match(this.cache.matrix3D)?e=this.flipMatrix3D(e,n):t.match(this.cache.matrix)?e=this.flipMatrix(e,n):t.match(this.cache.rotate3D)?e=this.flipRotate3D(e,n):t.match(this.cache.skewXY)?e=n.util.negateAll(e):t.match(this.cache.negatable)&&(e=n.util.negate(e))),e}.bind(this))}}},{name:"transition",expr:/transition(-property)?$/i,action:function(e,t,n){return{prop:e,value:n.util.swapLeftRight(t)}}},{name:"background",expr:/background(-position(-x)?|-image)?$/i,cache:null,flip:function(e,t){var n=util.saveTokens(e,!0),r=n.value.match(this.cache.match);if(r&&r.length>0){var o=(n.value.match(this.cache.position)||"").length;r.length>=3||2===o?n.value=util.swapLeftRight(n.value):(r[0]="0"===r[0]?"100%":r[0].match(this.cache.percent)?t.util.complement(r[0]):r[0].match(this.cache.length)?t.util.flipLength(r[0]):t.util.swapLeftRight(r[0]),n.value=n.value.replace(this.cache.match,(function(){return r.shift()})))}return util.restoreTokens(n)},update:function(e,t,n){return n.match(this.cache.gradient)?(t=e.util.swapLeftRight(t)).match(this.cache.angle)&&(t=e.util.negate(t)):(!0===e.config.processUrls||!0===e.config.processUrls.decl&&n.match(this.cache.url))&&(t=e.util.applyStringMap(t,!0)),t},action:function(e,t,n){null===this.cache&&(this.cache={match:n.util.regex(["position","percent","length","calc"],"ig"),percent:n.util.regex(["calc","percent"],"i"),position:n.util.regex(["position"],"g"),length:n.util.regex(["length"],"gi"),gradient:/gradient$/i,angle:/\d+(deg|g?rad|turn)/i,url:/^url/i});var r=n.util.guardHexColors(t),o=n.util.guardFunctions(r.value),a=o.value.split(",");if("background-image"!==e.toLowerCase())for(var i=0;i<a.length;i++)a[i]=this.flip(a[i],n);return o.value=a.join(","),r.value=n.util.unguardFunctions(o,this.update.bind(this,n)),{prop:e,value:n.util.unguardHexColors(r)}}},{name:"keyword",expr:/float|clear|text-align/i,action:function(e,t,n){return{prop:e,value:n.util.swapLeftRight(t)}}},{name:"cursor",expr:/cursor/i,cache:null,update:function(e,t,n){return(!0===e.config.processUrls||!0===e.config.processUrls.decl&&n.match(this.cache.url))&&(t=e.util.applyStringMap(t,!0)),t},flip:function(e){return e.replace(this.cache.replace,function(e,t){return e.replace(t,t.replace(this.cache.e,"*").replace(this.cache.w,"e").replace(this.cache.star,"w"))}.bind(this))},action:function(e,t,n){null===this.cache&&(this.cache={replace:/\b(ne|nw|se|sw|nesw|nwse)-resize/gi,url:/^url/i,e:/e/i,w:/w/i,star:/\*/i});for(var r=n.util.guardFunctions(t),o=r.value.split(","),a=0;a<o.length;a++)o[a]=this.flip(o[a]);return r.value=o.join(","),{prop:e,value:n.util.unguardFunctions(r,this.update.bind(this,n))}}}]}},8314:function(e,t,n){"use strict";var r=n(5344),o=n(3028),a=n(3272),i=n(8805);e.exports=r.plugin("rtlcss",(function(e,t,n){var s=a.configure(e,t,n),l={postcss:r,config:s,util:i.configure(s)};return function(e,t){var n=0,a={};l.config.hooks.pre(e,r),e.walk((function(e){var r=!1;if(o.walk((function(t){!t.metadata.blacklist&&t.directive.expect[e.type]&&(t.directive.begin(e,t.metadata,l)&&(r=!0),t.metadata.end&&t.directive.end(e,t.metadata,l)&&o.pop(t))})),!1===r)switch(e.type){case"atrule":if(!0===l.config.processUrls||!0===l.config.processUrls.atrule){var i=l.util.applyStringMap(e.params,!0);e.params=i}break;case"comment":o.parse(e,t,(function(n){var r=!0;return null===n.directive&&(n.preserve=!l.config.clean,l.util.each(l.config.plugins,(function(e){var o=l.config.blacklist[e.name];return o&&!0===o[n.metadata.name]?(n.metadata.blacklist=!0,n.metadata.end&&(r=!1),n.metadata.begin&&t.warn('directive "'+e.name+"."+n.metadata.name+'" is blacklisted.',{node:n.source}),!1):(n.directive=e.directives.control[n.metadata.name],!n.directive&&void 0)}))),n.directive?!n.metadata.begin&&n.metadata.end?(n.directive.end(e,n.metadata,l)&&o.pop(n),r=!1):n.directive.expect.self&&n.directive.begin(e,n.metadata,l)&&n.metadata.end&&n.directive.end(e,n.metadata,l)&&(r=!1):n.metadata.blacklist||(r=!1,t.warn('unsupported directive "'+n.metadata.name+'".',{node:n.source})),r}));break;case"decl":if(!l.util.each(l.config.plugins,(function(t){return l.util.each(t.directives.value,(function(t){if(e.raws.value&&e.raws.value.raw){var r=l.util.regexDirective(t.name);if(r.test(e.raws.value.raw)&&(r.lastIndex=0,t.action(e,r,l)))return l.config.clean&&(e.value=e.raws.value.raw=l.util.trimDirective(e.raws.value.raw)),n++,!1}}))})))break;if(l.util.each(l.config.plugins,(function(t){return l.util.each(t.processors,(function(t){if(e.prop.match(t.expr)){var r=e.raws.value&&e.raws.value.raw?e.raws.value.raw:e.value,o=l.util.saveComments(r),a=t.action(e.prop,o.value,l);return o.value=a.value,a.value=l.util.restoreComments(o),a.prop===e.prop&&a.value===r||(n++,e.prop=a.prop,e.value=a.value),!1}}))})),l.config.autoRename&&!n&&"rule"===e.parent.type&&l.util.isLastOfType(e)){var s=l.util.applyStringMap(e.parent.selector);if(!0===l.config.autoRenameStrict){var c=a[s];c?(c.selector=e.parent.selector,e.parent.selector=s):a[e.parent.selector]=e.parent}else e.parent.selector=s}break;case"rule":n=0}})),o.walk((function(e){t.warn('unclosed directive "'+e.metadata.name+'".',{node:e.source})})),Object.keys(a).forEach((function(e){t.warn("renaming skipped due to lack of a matching pair.",{node:a[e]})})),l.config.hooks.post(e,r)}})),e.exports.process=function(e,t,n,o){return r([this(t,n,o)]).process(e).css},e.exports.configure=function(e){return r([this((e=e||{}).options,e.plugins,e.hooks)])}},3028:function(e,t,n){"use strict";var r=n(5915);e.exports={stack:[],pop:function(e){var t=this.stack.indexOf(e);-1!==t&&this.stack.splice(t,1),e.preserve||e.source.remove()},parse:function(e,t,n){var o,a=r(e);a&&(!a.begin&&a.end?this.walk(function(t){if(a.name===t.metadata.name)return this.pop(t),o={metadata:a,directive:t.directive,source:e,preserve:t.preserve},!1}.bind(this)):o={metadata:a,directive:null,source:e,preserve:null},void 0===o?t.warn('found end "'+a.name+'" without a matching begin.',{node:e}):n(o)?this.stack.push(o):o.preserve||o.source.remove())},walk:function(e){for(var t=this.stack.length;--t>-1&&e(this.stack[t]););}}},8805:function(e){"use strict";var t,n="»",r=new RegExp("�","ig"),o=new RegExp("¤","ig"),a="(calc¤)|(\\-?(\\d*?\\.\\d+|\\d+))(?!d\\()",i=/\/\*[^]*?\*\//gim,s=/\/\*\s*(?:!)?\s*rtl:[^]*?\*\//gim,l=/[.*+?^${}()|[\]\\]/g,c=/\([^\(\)]+\)/i,u=/#[a-f0-9]{3,6}/gi,d=/calc/,g=new RegExp("«\\d+:\\d+»","ig"),p=new RegExp("\\w*?«\\d+:\\d+»","ig"),f=new RegExp(a,"i"),m=new RegExp(a,"ig"),h=new RegExp(a,"i"),y={scope:"*",ignoreCase:!0},v=0;function b(e){return e.replace(l,"\\$&")}e.exports={extend:function(e,t){for(var n in void 0!==e&&"object"==typeof e||(e={}),t)e.hasOwnProperty(n)||(e[n]=t[n]);return e},swap:function(e,n,r,o){var a=b(n)+"|"+b(r);((o=o||y).hasOwnProperty("greedy")?o.greedy:t.greedy)||(a="\\b("+a+")\\b");var i=o.ignoreCase?"img":"mg";return e.replace(new RegExp(a,i),(function(e){return t=e,a=n,(o.ignoreCase?t.toLowerCase()===a.toLowerCase():t===a)?r:n;var t,a}))},swapLeftRight:function(e){return this.swap(e,"left","right")},swapLtrRtl:function(e){return this.swap(e,"ltr","rtl")},applyStringMap:function(e,n){for(var r=e,o=0;o<t.stringMap.length;o++){var a=t.stringMap[o],i=this.extend(a.options,y);if("*"===i.scope||n&&"url"===i.scope||!n&&"selector"===i.scope){if(Array.isArray(a.search)&&Array.isArray(a.replace))for(var s=0;s<a.search.length;s++)r=this.swap(r,a.search[s],a.replace[s%a.search.length],i);else r=this.swap(r,a.search,a.replace,i);if(!0===a.exclusive)break}}return r},negate:function(e){var t=this.saveTokens(e);return t.value=t.value.replace(h,(function(e){return o.test(e)?e.replace(o,(function(e){return"(-1*"+e+")"})):-1*parseFloat(e,10)})),this.restoreTokens(t)},negateAll:function(e){var t=this.saveTokens(e);return t.value=t.value.replace(m,(function(e){return o.test(e)?e.replace(o,(function(e){return"(-1*"+e+")"})):-1*parseFloat(e,10)})),this.restoreTokens(t)},complement:function(e){var t=this.saveTokens(e);return t.value=t.value.replace(f,(function(e){return o.test(e)?e.replace(o,(function(e){return"(100% - "+e+")"})):100-parseFloat(e,10)})),this.restoreTokens(t)},flipLength:function(e){return t.useCalc?"calc(100% - "+e+")":e},save:function(e,t,n,r,o){var a={value:t,store:[],replacement:n,restorer:r};return a.value=a.value.replace(e,(function(e){return o&&e.match(o)?e:(a.store.push(e),a.replacement)})),a},restore:function(e){var t=0,n=e.value.replace(e.restorer,(function(){return e.store[t++]}));return e.store.length=0,n},saveComments:function(e){return this.save(i,e,"�",r)},restoreComments:function(e){return this.restore(e)},saveTokens:function(e,t){return!0===t?this.save(p,e,"¤",o,d):this.save(g,e,"¤",o)},restoreTokens:function(e){return this.restore(e)},guard:function(e,t,r){var o={value:t,store:[],offset:v++,token:"«"+v,indexed:!0===r};if(!0===o.indexed)for(;e.test(o.value);)o.value=o.value.replace(e,(function(e){return o.store.push(e),o.token+":"+o.store.length+n}));else o.value=o.value.replace(e,(function(e){return o.store.push(e),o.token+n}));return o},unguard:function(e,t){if(!0===e.indexed){for(var r=new RegExp("(\\w*?)"+e.token+":(\\d+)"+n,"i");r.test(e.value);)e.value=e.value.replace(r,(function(n,r,o){var a=e.store[o-1];return"function"==typeof t?r+t(a,r):r+a}));return e.value}return e.value.replace(new RegExp("(\\w*?)"+e.token+n,"i"),(function(n,r){var o=e.store.shift();return"function"==typeof t?r+t(o,r):r+o}))},guardHexColors:function(e){return this.guard(u,e,!0)},unguardHexColors:function(e,t){return this.unguard(e,t)},guardFunctions:function(e){return this.guard(c,e,!0)},unguardFunctions:function(e,t){return this.unguard(e,t)},trimDirective:function(e){return e.replace(s,"")},regexCache:{},regexDirective:function(e){return this.regexCache[e]=this.regexCache[e]||new RegExp("(?:\\/\\*\\s*(?:!)?\\s*rtl:"+(e?b(e)+"(?::)?":"")+")([^]*?)(?:\\*\\/)","img"),this.regexCache[e]},regex:function(e,t){e=e||[];for(var n="",r=0;r<e.length;r++)switch(e[r]){case"percent":n+="|(\\-?(\\d*?\\.\\d+|\\d+)%)";break;case"length":n+="|(\\-?(\\d*?\\.\\d+|\\d+))(?:ex|ch|r?em|vh|vw|vmin|vmax|px|mm|cm|in|pt|pc)?";break;case"number":n+="|(\\-?(\\d*?\\.\\d+|\\d+))";break;case"position":n+="|(left|center|right|top|bottom)";break;case"calc":n+="|(calc«\\d+:\\d+»)"}return new RegExp(n.slice(1),t)},isLastOfType:function(e){for(var t=!0,n=e.next();n;){if(n&&n.type===e.type){t=!1;break}n=n.next()}return t},each:function(e,t){for(var n=0;n<e.length;n++)if(!1===t(e[n]))return!1;return!0}},e.exports.configure=function(e){return t=e,this}},8090:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="atrule",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.append=function(){var t;this.nodes||(this.nodes=[]);for(var n=arguments.length,r=Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.prototype.append).call.apply(t,[this].concat(r))},t.prototype.prepend=function(){var t;this.nodes||(this.nodes=[]);for(var n=arguments.length,r=Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.prototype.prepend).call.apply(t,[this].concat(r))},t}(((r=n(2146))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},2282:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="comment",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(((r=n(3200))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},2146:function(e,t,n){"use strict";t.__esModule=!0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=i(n(3118)),a=i(n(2282));function i(e){return e&&e.__esModule?e:{default:e}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e){return e.map((function(e){return e.nodes&&(e.nodes=c(e.nodes)),delete e.source,e}))}var u=function(e){function t(){return s(this,t),l(this,e.apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.push=function(e){return e.parent=this,this.nodes.push(e),this},t.prototype.each=function(e){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;var t=this.lastEach;if(this.indexes[t]=0,this.nodes){for(var n=void 0,r=void 0;this.indexes[t]<this.nodes.length&&(n=this.indexes[t],!1!==(r=e(this.nodes[n],n)));)this.indexes[t]+=1;return delete this.indexes[t],r}},t.prototype.walk=function(e){return this.each((function(t,n){var r=e(t,n);return!1!==r&&t.walk&&(r=t.walk(e)),r}))},t.prototype.walkDecls=function(e,t){return t?e instanceof RegExp?this.walk((function(n,r){if("decl"===n.type&&e.test(n.prop))return t(n,r)})):this.walk((function(n,r){if("decl"===n.type&&n.prop===e)return t(n,r)})):(t=e,this.walk((function(e,n){if("decl"===e.type)return t(e,n)})))},t.prototype.walkRules=function(e,t){return t?e instanceof RegExp?this.walk((function(n,r){if("rule"===n.type&&e.test(n.selector))return t(n,r)})):this.walk((function(n,r){if("rule"===n.type&&n.selector===e)return t(n,r)})):(t=e,this.walk((function(e,n){if("rule"===e.type)return t(e,n)})))},t.prototype.walkAtRules=function(e,t){return t?e instanceof RegExp?this.walk((function(n,r){if("atrule"===n.type&&e.test(n.name))return t(n,r)})):this.walk((function(n,r){if("atrule"===n.type&&n.name===e)return t(n,r)})):(t=e,this.walk((function(e,n){if("atrule"===e.type)return t(e,n)})))},t.prototype.walkComments=function(e){return this.walk((function(t,n){if("comment"===t.type)return e(t,n)}))},t.prototype.append=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i,l=this.normalize(s,this.last),c=l,u=Array.isArray(c),d=0;for(c=u?c:c[Symbol.iterator]();;){var g;if(u){if(d>=c.length)break;g=c[d++]}else{if((d=c.next()).done)break;g=d.value}var p=g;this.nodes.push(p)}}return this},t.prototype.prepend=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t=t.reverse(),o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i,l=this.normalize(s,this.first,"prepend").reverse(),c=l,u=Array.isArray(c),d=0;for(c=u?c:c[Symbol.iterator]();;){var g;if(u){if(d>=c.length)break;g=c[d++]}else{if((d=c.next()).done)break;g=d.value}var p=g;this.nodes.unshift(p)}for(var f in this.indexes)this.indexes[f]=this.indexes[f]+l.length}return this},t.prototype.cleanRaws=function(t){if(e.prototype.cleanRaws.call(this,t),this.nodes){var n=this.nodes,r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}a.cleanRaws(t)}}},t.prototype.insertBefore=function(e,t){var n=0===(e=this.index(e))&&"prepend",r=this.normalize(t,this.nodes[e],n).reverse(),o=r,a=Array.isArray(o),i=0;for(o=a?o:o[Symbol.iterator]();;){var s;if(a){if(i>=o.length)break;s=o[i++]}else{if((i=o.next()).done)break;s=i.value}var l=s;this.nodes.splice(e,0,l)}var c=void 0;for(var u in this.indexes)e<=(c=this.indexes[u])&&(this.indexes[u]=c+r.length);return this},t.prototype.insertAfter=function(e,t){e=this.index(e);var n=this.normalize(t,this.nodes[e]).reverse(),r=n,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;this.nodes.splice(e+1,0,s)}var l=void 0;for(var c in this.indexes)e<(l=this.indexes[c])&&(this.indexes[c]=l+n.length);return this},t.prototype.removeChild=function(e){e=this.index(e),this.nodes[e].parent=void 0,this.nodes.splice(e,1);var t=void 0;for(var n in this.indexes)(t=this.indexes[n])>=e&&(this.indexes[n]=t-1);return this},t.prototype.removeAll=function(){var e=this.nodes,t=Array.isArray(e),n=0;for(e=t?e:e[Symbol.iterator]();;){var r;if(t){if(n>=e.length)break;r=e[n++]}else{if((n=e.next()).done)break;r=n.value}r.parent=void 0}return this.nodes=[],this},t.prototype.replaceValues=function(e,t,n){return n||(n=t,t={}),this.walkDecls((function(r){t.props&&-1===t.props.indexOf(r.prop)||t.fast&&-1===r.value.indexOf(t.fast)||(r.value=r.value.replace(e,n))})),this},t.prototype.every=function(e){return this.nodes.every(e)},t.prototype.some=function(e){return this.nodes.some(e)},t.prototype.index=function(e){return"number"==typeof e?e:this.nodes.indexOf(e)},t.prototype.normalize=function(e,t){var r=this;if("string"==typeof e)e=c(n(1647)(e).nodes);else if(Array.isArray(e)){var i=e=e.slice(0),s=Array.isArray(i),l=0;for(i=s?i:i[Symbol.iterator]();;){var u;if(s){if(l>=i.length)break;u=i[l++]}else{if((l=i.next()).done)break;u=l.value}var d=u;d.parent&&d.parent.removeChild(d,"ignore")}}else if("root"===e.type){var g=e=e.nodes.slice(0),p=Array.isArray(g),f=0;for(g=p?g:g[Symbol.iterator]();;){var m;if(p){if(f>=g.length)break;m=g[f++]}else{if((f=g.next()).done)break;m=f.value}var h=m;h.parent&&h.parent.removeChild(h,"ignore")}}else if(e.type)e=[e];else if(e.prop){if(void 0===e.value)throw new Error("Value field is missed in node creation");"string"!=typeof e.value&&(e.value=String(e.value)),e=[new o.default(e)]}else if(e.selector)e=[new(n(806))(e)];else if(e.name)e=[new(n(8090))(e)];else{if(!e.text)throw new Error("Unknown node type in node creation");e=[new a.default(e)]}var y=e.map((function(e){return"function"!=typeof e.before&&(e=r.rebuild(e)),e.parent&&e.parent.removeChild(e),void 0===e.raws.before&&t&&void 0!==t.raws.before&&(e.raws.before=t.raws.before.replace(/[^\s]/g,"")),e.parent=r,e}));return y},t.prototype.rebuild=function(e,t){var r=this,i=void 0;if("root"===e.type){var s=n(573);i=new s}else if("atrule"===e.type){var l=n(8090);i=new l}else if("rule"===e.type){var c=n(806);i=new c}else"decl"===e.type?i=new o.default:"comment"===e.type&&(i=new a.default);for(var u in e)"nodes"===u?i.nodes=e.nodes.map((function(e){return r.rebuild(e,i)})):"parent"===u&&t?i.parent=t:e.hasOwnProperty(u)&&(i[u]=e[u]);return i},r(t,[{key:"first",get:function(){if(this.nodes)return this.nodes[0]}},{key:"last",get:function(){if(this.nodes)return this.nodes[this.nodes.length-1]}}]),t}(i(n(3200)).default);t.default=u,e.exports=t.default},4639:function(e,t,n){"use strict";t.__esModule=!0;var r=i(n(5580)),o=i(n(683)),a=i(n(8818));function i(e){return e&&e.__esModule?e:{default:e}}var s=function(){function e(t,n,r,o,a,i){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.name="CssSyntaxError",this.reason=t,a&&(this.file=a),o&&(this.source=o),i&&(this.plugin=i),void 0!==n&&void 0!==r&&(this.line=n,this.column=r),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,e)}return e.prototype.setMessage=function(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason},e.prototype.showSourceCode=function(e){var t=this;if(!this.source)return"";var n=this.source;void 0===e&&(e=r.default.stdout),e&&(n=(0,a.default)(n));var i=n.split(/\r?\n/),s=Math.max(this.line-3,0),l=Math.min(this.line+2,i.length),c=String(l).length;function u(t){return e&&o.default.red?o.default.red.bold(t):t}function d(t){return e&&o.default.gray?o.default.gray(t):t}return i.slice(s,l).map((function(e,n){var r=s+1+n,o=" "+(" "+r).slice(-c)+" | ";if(r===t.line){var a=d(o.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return u(">")+d(o)+e+"\n "+a+u("^")}return" "+d(o)+e})).join("\n")},e.prototype.toString=function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e},e}();t.default=s,e.exports=t.default},3118:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="decl",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(((r=n(3200))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},1810:function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=l(n(4639)),i=l(n(8389)),s=l(n(6470));function l(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var u=0,d=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(c(this,e),null===t||"object"===(void 0===t?"undefined":r(t))&&!t.toString)throw new Error("PostCSS received "+t+" instead of CSS string");this.css=t.toString(),"\ufeff"!==this.css[0]&&""!==this.css[0]||(this.css=this.css.slice(1)),n.from&&(/^\w+:\/\//.test(n.from)?this.file=n.from:this.file=s.default.resolve(n.from));var o=new i.default(this.css,n);if(o.text){this.map=o;var a=o.consumer().file;!this.file&&a&&(this.file=this.mapResolve(a))}this.file||(u+=1,this.id="<input css "+u+">"),this.map&&(this.map.file=this.from)}return e.prototype.error=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=void 0,i=this.origin(t,n);return(o=i?new a.default(e,i.line,i.column,i.source,i.file,r.plugin):new a.default(e,t,n,this.css,this.file,r.plugin)).input={line:t,column:n,source:this.css},this.file&&(o.input.file=this.file),o},e.prototype.origin=function(e,t){if(!this.map)return!1;var n=this.map.consumer(),r=n.originalPositionFor({line:e,column:t});if(!r.source)return!1;var o={file:this.mapResolve(r.source),line:r.line,column:r.column},a=n.sourceContentFor(r.source);return a&&(o.source=a),o},e.prototype.mapResolve=function(e){return/^\w+:\/\//.test(e)?e:s.default.resolve(this.map.consumer().sourceRoot||".",e)},o(e,[{key:"from",get:function(){return this.file||this.id}}]),e}();t.default=d,e.exports=t.default},1799:function(e,t,n){"use strict";t.__esModule=!0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a=u(n(2455)),i=u(n(4594)),s=u(n(6094)),l=u(n(4974)),c=u(n(1647));function u(e){return e&&e.__esModule?e:{default:e}}function d(e){return"object"===(void 0===e?"undefined":o(e))&&"function"==typeof e.then}var g=function(){function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.stringified=!1,this.processed=!1;var a=void 0;if("object"===(void 0===n?"undefined":o(n))&&null!==n&&"root"===n.type)a=n;else if(n instanceof e||n instanceof l.default)a=n.root,n.map&&(void 0===r.map&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=n.map);else{var i=c.default;r.syntax&&(i=r.syntax.parse),r.parser&&(i=r.parser),i.parse&&(i=i.parse);try{a=i(n,r)}catch(e){this.error=e}}this.result=new l.default(t,a,r)}return e.prototype.warnings=function(){return this.sync().warnings()},e.prototype.toString=function(){return this.css},e.prototype.then=function(e,t){return"from"in this.opts||(0,s.default)("Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning."),this.async().then(e,t)},e.prototype.catch=function(e){return this.async().catch(e)},e.prototype.handleError=function(e,t){try{if(this.error=e,"CssSyntaxError"!==e.name||e.plugin){if(t.postcssVersion){var n=t.postcssPlugin,r=t.postcssVersion,o=this.result.processor.version,a=r.split("."),i=o.split(".");(a[0]!==i[0]||parseInt(a[1])>parseInt(i[1]))&&console.error("Unknown error from PostCSS plugin. Your current PostCSS version is "+o+", but "+n+" uses "+r+". Perhaps this is the source of the error below.")}}else e.plugin=t.postcssPlugin,e.setMessage()}catch(e){console&&console.error&&console.error(e)}},e.prototype.asyncTick=function(e,t){var n=this;if(this.plugin>=this.processor.plugins.length)return this.processed=!0,e();try{var r=this.processor.plugins[this.plugin],o=this.run(r);this.plugin+=1,d(o)?o.then((function(){n.asyncTick(e,t)})).catch((function(e){n.handleError(e,r),n.processed=!0,t(e)})):this.asyncTick(e,t)}catch(e){this.processed=!0,t(e)}},e.prototype.async=function(){var e=this;return this.processed?new Promise((function(t,n){e.error?n(e.error):t(e.stringify())})):(this.processing||(this.processing=new Promise((function(t,n){if(e.error)return n(e.error);e.plugin=0,e.asyncTick(t,n)})).then((function(){return e.processed=!0,e.stringify()}))),this.processing)},e.prototype.sync=function(){if(this.processed)return this.result;if(this.processed=!0,this.processing)throw new Error("Use process(css).then(cb) to work with async plugins");if(this.error)throw this.error;var e=this.result.processor.plugins,t=Array.isArray(e),n=0;for(e=t?e:e[Symbol.iterator]();;){var r;if(t){if(n>=e.length)break;r=e[n++]}else{if((n=e.next()).done)break;r=n.value}var o=r;if(d(this.run(o)))throw new Error("Use process(css).then(cb) to work with async plugins")}return this.result},e.prototype.run=function(e){this.result.lastPlugin=e;try{return e(this.result.root,this.result)}catch(t){throw this.handleError(t,e),t}},e.prototype.stringify=function(){if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=i.default;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var n=new a.default(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result},r(e,[{key:"processor",get:function(){return this.result.processor}},{key:"opts",get:function(){return this.result.opts}},{key:"css",get:function(){return this.stringify().css}},{key:"content",get:function(){return this.stringify().content}},{key:"map",get:function(){return this.stringify().map}},{key:"root",get:function(){return this.sync().root}},{key:"messages",get:function(){return this.sync().messages}}]),e}();t.default=g,e.exports=t.default},1841:function(e,t){"use strict";t.__esModule=!0;var n={split:function(e,t,n){for(var r=[],o="",a=!1,i=0,s=!1,l=!1,c=0;c<e.length;c++){var u=e[c];s?l?l=!1:"\\"===u?l=!0:u===s&&(s=!1):'"'===u||"'"===u?s=u:"("===u?i+=1:")"===u?i>0&&(i-=1):0===i&&-1!==t.indexOf(u)&&(a=!0),a?(""!==o&&r.push(o.trim()),o="",a=!1):o+=u}return(n||""!==o)&&r.push(o.trim()),r},space:function(e){return n.split(e,[" ","\n","\t"])},comma:function(e){return n.split(e,[","],!0)}};t.default=n,e.exports=t.default},2455:function(e,t,n){"use strict";t.__esModule=!0;var r=a(n(4014)),o=a(n(6470));function a(e){return e&&e.__esModule?e:{default:e}}var i=function(){function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.stringify=t,this.mapOpts=r.map||{},this.root=n,this.opts=r}return e.prototype.isMap=function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0},e.prototype.previous=function(){var e=this;return this.previousMaps||(this.previousMaps=[],this.root.walk((function(t){if(t.source&&t.source.input.map){var n=t.source.input.map;-1===e.previousMaps.indexOf(n)&&e.previousMaps.push(n)}}))),this.previousMaps},e.prototype.isInline=function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some((function(e){return e.inline})))},e.prototype.isSourcesContent=function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some((function(e){return e.withContent()}))},e.prototype.clearAnnotation=function(){if(!1!==this.mapOpts.annotation)for(var e=void 0,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&0===e.text.indexOf("# sourceMappingURL=")&&this.root.removeChild(t)},e.prototype.setSourcesContent=function(){var e=this,t={};this.root.walk((function(n){if(n.source){var r=n.source.input.from;if(r&&!t[r]){t[r]=!0;var o=e.relative(r);e.map.setSourceContent(o,n.source.input.css)}}}))},e.prototype.applyPrevMaps=function(){var e=this.previous(),t=Array.isArray(e),n=0;for(e=t?e:e[Symbol.iterator]();;){var a;if(t){if(n>=e.length)break;a=e[n++]}else{if((n=e.next()).done)break;a=n.value}var i=a,s=this.relative(i.file),l=i.root||o.default.dirname(i.file),c=void 0;!1===this.mapOpts.sourcesContent?(c=new r.default.SourceMapConsumer(i.text)).sourcesContent&&(c.sourcesContent=c.sourcesContent.map((function(){return null}))):c=i.consumer(),this.map.applySourceMap(c,s,this.relative(l))}},e.prototype.isAnnotation=function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some((function(e){return e.annotation})))},e.prototype.toBase64=function(e){return Buffer?Buffer.from&&Buffer.from!==Uint8Array.from?Buffer.from(e).toString("base64"):new Buffer(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))},e.prototype.addAnnotation=function(){var e;e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:this.outputFile()+".map";var t="\n";-1!==this.css.indexOf("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"},e.prototype.outputFile=function(){return this.opts.to?this.relative(this.opts.to):this.opts.from?this.relative(this.opts.from):"to.css"},e.prototype.generateMap=function(){return this.generateString(),this.isSourcesContent()&&this.setSourcesContent(),this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]},e.prototype.relative=function(e){if(0===e.indexOf("<"))return e;if(/^\w+:\/\//.test(e))return e;var t=this.opts.to?o.default.dirname(this.opts.to):".";return"string"==typeof this.mapOpts.annotation&&(t=o.default.dirname(o.default.resolve(t,this.mapOpts.annotation))),e=o.default.relative(t,e),"\\"===o.default.sep?e.replace(/\\/g,"/"):e},e.prototype.sourcePath=function(e){return this.mapOpts.from?this.mapOpts.from:this.relative(e.source.input.from)},e.prototype.generateString=function(){var e=this;this.css="",this.map=new r.default.SourceMapGenerator({file:this.outputFile()});var t=1,n=1,o=void 0,a=void 0;this.stringify(this.root,(function(r,i,s){e.css+=r,i&&"end"!==s&&(i.source&&i.source.start?e.map.addMapping({source:e.sourcePath(i),generated:{line:t,column:n-1},original:{line:i.source.start.line,column:i.source.start.column-1}}):e.map.addMapping({source:"<no source>",original:{line:1,column:0},generated:{line:t,column:n-1}})),(o=r.match(/\n/g))?(t+=o.length,a=r.lastIndexOf("\n"),n=r.length-a):n+=r.length,i&&"start"!==s&&(i.source&&i.source.end?e.map.addMapping({source:e.sourcePath(i),generated:{line:t,column:n-1},original:{line:i.source.end.line,column:i.source.end.column}}):e.map.addMapping({source:"<no source>",original:{line:1,column:0},generated:{line:t,column:n-1}}))}))},e.prototype.generate=function(){if(this.clearAnnotation(),this.isMap())return this.generateMap();var e="";return this.stringify(this.root,(function(t){e+=t})),[e]},e}();t.default=i,e.exports=t.default},3200:function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=l(n(4639)),a=l(n(3255)),i=l(n(4594)),s=l(n(6094));function l(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var u=function e(t,n){var o=new t.constructor;for(var a in t)if(t.hasOwnProperty(a)){var i=t[a],s=void 0===i?"undefined":r(i);"parent"===a&&"object"===s?n&&(o[a]=n):"source"===a?o[a]=i:i instanceof Array?o[a]=i.map((function(t){return e(t,o)})):("object"===s&&null!==i&&(i=e(i)),o[a]=i)}return o},d=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(c(this,e),this.raws={},"object"!==(void 0===t?"undefined":r(t))&&void 0!==t)throw new Error("PostCSS nodes constructor accepts object, not "+JSON.stringify(t));for(var n in t)this[n]=t[n]}return e.prototype.error=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var n=this.positionBy(t);return this.source.input.error(e,n.line,n.column,t)}return new o.default(e)},e.prototype.warn=function(e,t,n){var r={node:this};for(var o in n)r[o]=n[o];return e.warn(t,r)},e.prototype.remove=function(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this},e.prototype.toString=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.default;e.stringify&&(e=e.stringify);var t="";return e(this,(function(e){t+=e})),t},e.prototype.clone=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=u(this);for(var n in e)t[n]=e[n];return t},e.prototype.cloneBefore=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t},e.prototype.cloneAfter=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t},e.prototype.replaceWith=function(){if(this.parent){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;this.parent.insertBefore(this,s)}this.remove()}return this},e.prototype.moveTo=function(e){return(0,s.default)("Node#moveTo was deprecated. Use Container#append."),this.cleanRaws(this.root()===e.root()),this.remove(),e.append(this),this},e.prototype.moveBefore=function(e){return(0,s.default)("Node#moveBefore was deprecated. Use Node#before."),this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertBefore(e,this),this},e.prototype.moveAfter=function(e){return(0,s.default)("Node#moveAfter was deprecated. Use Node#after."),this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertAfter(e,this),this},e.prototype.next=function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}},e.prototype.prev=function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e-1]}},e.prototype.before=function(e){return this.parent.insertBefore(this,e),this},e.prototype.after=function(e){return this.parent.insertAfter(this,e),this},e.prototype.toJSON=function(){var e={};for(var t in this)if(this.hasOwnProperty(t)&&"parent"!==t){var n=this[t];n instanceof Array?e[t]=n.map((function(e){return"object"===(void 0===e?"undefined":r(e))&&e.toJSON?e.toJSON():e})):"object"===(void 0===n?"undefined":r(n))&&n.toJSON?e[t]=n.toJSON():e[t]=n}return e},e.prototype.raw=function(e,t){return(new a.default).raw(this,e,t)},e.prototype.root=function(){for(var e=this;e.parent;)e=e.parent;return e},e.prototype.cleanRaws=function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between},e.prototype.positionInside=function(e){for(var t=this.toString(),n=this.source.start.column,r=this.source.start.line,o=0;o<e;o++)"\n"===t[o]?(n=1,r+=1):n+=1;return{line:r,column:n}},e.prototype.positionBy=function(e){var t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){var n=this.toString().indexOf(e.word);-1!==n&&(t=this.positionInside(n))}return t},e}();t.default=d,e.exports=t.default},1647:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){if(t&&t.safe)throw new Error('Option safe was removed. Use parser: require("postcss-safe-parser")');var n=new o.default(e,t),a=new r.default(n);try{a.parse()}catch(e){throw"CssSyntaxError"===e.name&&t&&t.from&&(/\.scss$/i.test(t.from)?e.message+="\nYou tried to parse SCSS with the standard CSS parser; try again with the postcss-scss parser":/\.sass/i.test(t.from)?e.message+="\nYou tried to parse Sass with the standard CSS parser; try again with the postcss-sass parser":/\.less$/i.test(t.from)&&(e.message+="\nYou tried to parse Less with the standard CSS parser; try again with the postcss-less parser")),e}return a.root};var r=a(n(9890)),o=a(n(1810));function a(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},9890:function(e,t,n){"use strict";t.__esModule=!0;var r=c(n(3118)),o=c(n(7272)),a=c(n(2282)),i=c(n(8090)),s=c(n(573)),l=c(n(806));function c(e){return e&&e.__esModule?e:{default:e}}var u=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.input=t,this.root=new s.default,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{line:1,column:1}}}return e.prototype.createTokenizer=function(){this.tokenizer=(0,o.default)(this.input)},e.prototype.parse=function(){for(var e=void 0;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()},e.prototype.comment=function(e){var t=new a.default;this.init(t,e[2],e[3]),t.source.end={line:e[4],column:e[5]};var n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{var r=n.match(/^(\s*)([^]*[^\s])(\s*)$/);t.text=r[2],t.raws.left=r[1],t.raws.right=r[3]}},e.prototype.emptyRule=function(e){var t=new l.default;this.init(t,e[2],e[3]),t.selector="",t.raws.between="",this.current=t},e.prototype.other=function(e){for(var t=!1,n=null,r=!1,o=null,a=[],i=[],s=e;s;){if(n=s[0],i.push(s),"("===n||"["===n)o||(o=s),a.push("("===n?")":"]");else if(0===a.length){if(";"===n){if(r)return void this.decl(i);break}if("{"===n)return void this.rule(i);if("}"===n){this.tokenizer.back(i.pop()),t=!0;break}":"===n&&(r=!0)}else n===a[a.length-1]&&(a.pop(),0===a.length&&(o=null));s=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(o),t&&r){for(;i.length&&("space"===(s=i[i.length-1][0])||"comment"===s);)this.tokenizer.back(i.pop());this.decl(i)}else this.unknownWord(i)},e.prototype.rule=function(e){e.pop();var t=new l.default;this.init(t,e[0][2],e[0][3]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t},e.prototype.decl=function(e){var t=new r.default;this.init(t);var n=e[e.length-1];for(";"===n[0]&&(this.semicolon=!0,e.pop()),n[4]?t.source.end={line:n[4],column:n[5]}:t.source.end={line:n[2],column:n[3]};"word"!==e[0][0];)1===e.length&&this.unknownWord(e),t.raws.before+=e.shift()[1];for(t.source.start={line:e[0][2],column:e[0][3]},t.prop="";e.length;){var o=e[0][0];if(":"===o||"space"===o||"comment"===o)break;t.prop+=e.shift()[1]}t.raws.between="";for(var a=void 0;e.length;){if(":"===(a=e.shift())[0]){t.raws.between+=a[1];break}t.raws.between+=a[1]}"_"!==t.prop[0]&&"*"!==t.prop[0]||(t.raws.before+=t.prop[0],t.prop=t.prop.slice(1)),t.raws.between+=this.spacesAndCommentsFromStart(e),this.precheckMissedSemicolon(e);for(var i=e.length-1;i>0;i--){if("!important"===(a=e[i])[1].toLowerCase()){t.important=!0;var s=this.stringFrom(e,i);" !important"!==(s=this.spacesFromEnd(e)+s)&&(t.raws.important=s);break}if("important"===a[1].toLowerCase()){for(var l=e.slice(0),c="",u=i;u>0;u--){var d=l[u][0];if(0===c.trim().indexOf("!")&&"space"!==d)break;c=l.pop()[1]+c}0===c.trim().indexOf("!")&&(t.important=!0,t.raws.important=c,e=l)}if("space"!==a[0]&&"comment"!==a[0])break}this.raw(t,"value",e),-1!==t.value.indexOf(":")&&this.checkMissedSemicolon(e)},e.prototype.atrule=function(e){var t=new i.default;t.name=e[1].slice(1),""===t.name&&this.unnamedAtrule(t,e),this.init(t,e[2],e[3]);for(var n=void 0,r=void 0,o=!1,a=!1,s=[];!this.tokenizer.endOfFile();){if(";"===(e=this.tokenizer.nextToken())[0]){t.source.end={line:e[2],column:e[3]},this.semicolon=!0;break}if("{"===e[0]){a=!0;break}if("}"===e[0]){if(s.length>0){for(n=s[r=s.length-1];n&&"space"===n[0];)n=s[--r];n&&(t.source.end={line:n[4],column:n[5]})}this.end(e);break}if(s.push(e),this.tokenizer.endOfFile()){o=!0;break}}t.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(t.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(t,"params",s),o&&(e=s[s.length-1],t.source.end={line:e[4],column:e[5]},this.spaces=t.raws.between,t.raws.between="")):(t.raws.afterName="",t.params=""),a&&(t.nodes=[],this.current=t)},e.prototype.end=function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end={line:e[2],column:e[3]},this.current=this.current.parent):this.unexpectedClose(e)},e.prototype.endFile=function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces},e.prototype.freeSemicolon=function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}},e.prototype.init=function(e,t,n){this.current.push(e),e.source={start:{line:t,column:n},input:this.input},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)},e.prototype.raw=function(e,t,n){for(var r=void 0,o=void 0,a=n.length,i="",s=!0,l=void 0,c=void 0,u=/^([.|#])?([\w])+/i,d=0;d<a;d+=1)"comment"!==(o=(r=n[d])[0])||"rule"!==e.type?"comment"===o||"space"===o&&d===a-1?s=!1:i+=r[1]:(c=n[d-1],l=n[d+1],"space"!==c[0]&&"space"!==l[0]&&u.test(c[1])&&u.test(l[1])?i+=r[1]:s=!1);if(!s){var g=n.reduce((function(e,t){return e+t[1]}),"");e.raws[t]={value:i,raw:g}}e[t]=i},e.prototype.spacesAndCommentsFromEnd=function(e){for(var t=void 0,n="";e.length&&("space"===(t=e[e.length-1][0])||"comment"===t);)n=e.pop()[1]+n;return n},e.prototype.spacesAndCommentsFromStart=function(e){for(var t=void 0,n="";e.length&&("space"===(t=e[0][0])||"comment"===t);)n+=e.shift()[1];return n},e.prototype.spacesFromEnd=function(e){for(var t="";e.length&&"space"===e[e.length-1][0];)t=e.pop()[1]+t;return t},e.prototype.stringFrom=function(e,t){for(var n="",r=t;r<e.length;r++)n+=e[r][1];return e.splice(t,e.length-t),n},e.prototype.colon=function(e){for(var t=0,n=void 0,r=void 0,o=void 0,a=0;a<e.length;a++){if("("===(r=(n=e[a])[0]))t+=1;else if(")"===r)t-=1;else if(0===t&&":"===r){if(o){if("word"===o[0]&&"progid"===o[1])continue;return a}this.doubleColon(n)}o=n}return!1},e.prototype.unclosedBracket=function(e){throw this.input.error("Unclosed bracket",e[2],e[3])},e.prototype.unknownWord=function(e){throw this.input.error("Unknown word",e[0][2],e[0][3])},e.prototype.unexpectedClose=function(e){throw this.input.error("Unexpected }",e[2],e[3])},e.prototype.unclosedBlock=function(){var e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)},e.prototype.doubleColon=function(e){throw this.input.error("Double colon",e[2],e[3])},e.prototype.unnamedAtrule=function(e,t){throw this.input.error("At-rule without name",t[2],t[3])},e.prototype.precheckMissedSemicolon=function(e){},e.prototype.checkMissedSemicolon=function(e){var t=this.colon(e);if(!1!==t){for(var n=0,r=void 0,o=t-1;o>=0&&("space"===(r=e[o])[0]||2!==(n+=1));o--);throw this.input.error("Missed semicolon",r[2],r[3])}},e}();t.default=u,e.exports=t.default},5344:function(e,t,n){"use strict";t.__esModule=!0;var r=p(n(3118)),o=p(n(9432)),a=p(n(4594)),i=p(n(2282)),s=p(n(8090)),l=p(n(3e3)),c=p(n(1647)),u=p(n(1841)),d=p(n(806)),g=p(n(573));function p(e){return e&&e.__esModule?e:{default:e}}function f(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return 1===t.length&&Array.isArray(t[0])&&(t=t[0]),new o.default(t)}f.plugin=function(e,t){var n=function(){var n=t.apply(void 0,arguments);return n.postcssPlugin=e,n.postcssVersion=(new o.default).version,n},r=void 0;return Object.defineProperty(n,"postcss",{get:function(){return r||(r=n()),r}}),n.process=function(e,t,r){return f([n(r)]).process(e,t)},n},f.stringify=a.default,f.parse=c.default,f.vendor=l.default,f.list=u.default,f.comment=function(e){return new i.default(e)},f.atRule=function(e){return new s.default(e)},f.decl=function(e){return new r.default(e)},f.rule=function(e){return new d.default(e)},f.root=function(e){return new g.default(e)},t.default=f,e.exports=t.default},8389:function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=s(n(4014)),a=s(n(6470)),i=s(n(1285));function s(e){return e&&e.__esModule?e:{default:e}}var l=function(){function e(t,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var r=n.map?n.map.prev:void 0,o=this.loadMap(n.from,r);o&&(this.text=o)}return e.prototype.consumer=function(){return this.consumerCache||(this.consumerCache=new o.default.SourceMapConsumer(this.text)),this.consumerCache},e.prototype.withContent=function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)},e.prototype.startWith=function(e,t){return!!e&&e.substr(0,t.length)===t},e.prototype.loadAnnotation=function(e){var t=e.match(/\/\*\s*# sourceMappingURL=(.*)\s*\*\//);t&&(this.annotation=t[1].trim())},e.prototype.decodeInline=function(e){var t="data:application/json,";if(this.startWith(e,t))return decodeURIComponent(e.substr(t.length));if(/^data:application\/json;(?:charset=utf-?8;)?base64,/.test(e))return n=e.substr(RegExp.lastMatch.length),Buffer?Buffer.from&&Buffer.from!==Uint8Array.from?Buffer.from(n,"base64").toString():new Buffer(n,"base64").toString():window.atob(n);var n,r=e.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+r)},e.prototype.loadMap=function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var n=t(e);if(n&&i.default.existsSync&&i.default.existsSync(n))return i.default.readFileSync(n,"utf-8").toString().trim();throw new Error("Unable to load previous source map: "+n.toString())}if(t instanceof o.default.SourceMapConsumer)return o.default.SourceMapGenerator.fromSourceMap(t).toString();if(t instanceof o.default.SourceMapGenerator)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){var r=this.annotation;return e&&(r=a.default.join(a.default.dirname(e),r)),this.root=a.default.dirname(r),!(!i.default.existsSync||!i.default.existsSync(r))&&i.default.readFileSync(r,"utf-8").toString().trim()}},e.prototype.isMap=function(e){return"object"===(void 0===e?"undefined":r(e))&&("string"==typeof e.mappings||"string"==typeof e._mappings)},e}();t.default=l,e.exports=t.default},9432:function(e,t,n){"use strict";t.__esModule=!0;var r,o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a=(r=n(1799))&&r.__esModule?r:{default:r};function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var s=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];i(this,e),this.version="6.0.23",this.plugins=this.normalize(t)}return e.prototype.use=function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this},e.prototype.process=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new a.default(this,e,t)},e.prototype.normalize=function(e){var t=[],n=e,r=Array.isArray(n),a=0;for(n=r?n:n[Symbol.iterator]();;){var i;if(r){if(a>=n.length)break;i=n[a++]}else{if((a=n.next()).done)break;i=a.value}var s=i;if(s.postcss&&(s=s.postcss),"object"===(void 0===s?"undefined":o(s))&&Array.isArray(s.plugins))t=t.concat(s.plugins);else{if("function"!=typeof s)throw"object"===(void 0===s?"undefined":o(s))&&(s.parse||s.stringify)?new Error("PostCSS syntaxes cannot be used as plugins. Instead, please use one of the syntax/parser/stringifier options as outlined in your PostCSS runner documentation."):new Error(s+" is not a PostCSS plugin");t.push(s)}}return t},e}();t.default=s,e.exports=t.default},4974:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=(r=n(9936))&&r.__esModule?r:{default:r},i=function(){function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.processor=t,this.messages=[],this.root=n,this.opts=r,this.css=void 0,this.map=void 0}return e.prototype.toString=function(){return this.css},e.prototype.warn=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var n=new a.default(e,t);return this.messages.push(n),n},e.prototype.warnings=function(){return this.messages.filter((function(e){return"warning"===e.type}))},o(e,[{key:"content",get:function(){return this.css}}]),e}();t.default=i,e.exports=t.default},573:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="root",r.nodes||(r.nodes=[]),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.removeChild=function(t,n){var r=this.index(t);return!n&&0===r&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),e.prototype.removeChild.call(this,t)},t.prototype.normalize=function(t,n,r){var o=e.prototype.normalize.call(this,t);if(n)if("prepend"===r)this.nodes.length>1?n.raws.before=this.nodes[1].raws.before:delete n.raws.before;else if(this.first!==n){var a=o,i=Array.isArray(a),s=0;for(a=i?a:a[Symbol.iterator]();;){var l;if(i){if(s>=a.length)break;l=a[s++]}else{if((s=a.next()).done)break;l=s.value}l.raws.before=n.raws.before}}return o},t.prototype.toResult=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=n(1799),r=n(9432),o=new t(new r,this,e);return o.stringify()},t}(((r=n(2146))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},806:function(e,t,n){"use strict";t.__esModule=!0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=i(n(2146)),a=i(n(1841));function i(e){return e&&e.__esModule?e:{default:e}}var s=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="rule",r.nodes||(r.nodes=[]),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),r(t,[{key:"selectors",get:function(){return a.default.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}}]),t}(o.default);t.default=s,e.exports=t.default},3255:function(e,t){"use strict";t.__esModule=!0;var n={colon:": ",indent:" ",beforeDecl:"\n",beforeRule:"\n",beforeOpen:" ",beforeClose:"\n",beforeComment:"\n",after:"\n",emptyBody:"",commentLeft:" ",commentRight:" "},r=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.builder=t}return e.prototype.stringify=function(e,t){this[e.type](e,t)},e.prototype.root=function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)},e.prototype.comment=function(e){var t=this.raw(e,"left","commentLeft"),n=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+n+"*/",e)},e.prototype.decl=function(e,t){var n=this.raw(e,"between","colon"),r=e.prop+n+this.rawValue(e,"value");e.important&&(r+=e.raws.important||" !important"),t&&(r+=";"),this.builder(r,e)},e.prototype.rule=function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")},e.prototype.atrule=function(e,t){var n="@"+e.name,r=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?n+=e.raws.afterName:r&&(n+=" "),e.nodes)this.block(e,n+r);else{var o=(e.raws.between||"")+(t?";":"");this.builder(n+r+o,e)}},e.prototype.body=function(e){for(var t=e.nodes.length-1;t>0&&"comment"===e.nodes[t].type;)t-=1;for(var n=this.raw(e,"semicolon"),r=0;r<e.nodes.length;r++){var o=e.nodes[r],a=this.raw(o,"before");a&&this.builder(a),this.stringify(o,t!==r||n)}},e.prototype.block=function(e,t){var n=this.raw(e,"between","beforeOpen");this.builder(t+n+"{",e,"start");var r=void 0;e.nodes&&e.nodes.length?(this.body(e),r=this.raw(e,"after")):r=this.raw(e,"after","emptyBody"),r&&this.builder(r),this.builder("}",e,"end")},e.prototype.raw=function(e,t,r){var o=void 0;if(r||(r=t),t&&void 0!==(o=e.raws[t]))return o;var a=e.parent;if("before"===r&&(!a||"root"===a.type&&a.first===e))return"";if(!a)return n[r];var i=e.root();if(i.rawCache||(i.rawCache={}),void 0!==i.rawCache[r])return i.rawCache[r];if("before"===r||"after"===r)return this.beforeAfter(e,r);var s,l="raw"+((s=r)[0].toUpperCase()+s.slice(1));return this[l]?o=this[l](i,e):i.walk((function(e){if(void 0!==(o=e.raws[t]))return!1})),void 0===o&&(o=n[r]),i.rawCache[r]=o,o},e.prototype.rawSemicolon=function(e){var t=void 0;return e.walk((function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1})),t},e.prototype.rawEmptyBody=function(e){var t=void 0;return e.walk((function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1})),t},e.prototype.rawIndent=function(e){if(e.raws.indent)return e.raws.indent;var t=void 0;return e.walk((function(n){var r=n.parent;if(r&&r!==e&&r.parent&&r.parent===e&&void 0!==n.raws.before){var o=n.raws.before.split("\n");return t=(t=o[o.length-1]).replace(/[^\s]/g,""),!1}})),t},e.prototype.rawBeforeComment=function(e,t){var n=void 0;return e.walkComments((function(e){if(void 0!==e.raws.before)return-1!==(n=e.raws.before).indexOf("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/[^\s]/g,"")),n},e.prototype.rawBeforeDecl=function(e,t){var n=void 0;return e.walkDecls((function(e){if(void 0!==e.raws.before)return-1!==(n=e.raws.before).indexOf("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/[^\s]/g,"")),n},e.prototype.rawBeforeRule=function(e){var t=void 0;return e.walk((function(n){if(n.nodes&&(n.parent!==e||e.first!==n)&&void 0!==n.raws.before)return-1!==(t=n.raws.before).indexOf("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/[^\s]/g,"")),t},e.prototype.rawBeforeClose=function(e){var t=void 0;return e.walk((function(e){if(e.nodes&&e.nodes.length>0&&void 0!==e.raws.after)return-1!==(t=e.raws.after).indexOf("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/[^\s]/g,"")),t},e.prototype.rawBeforeOpen=function(e){var t=void 0;return e.walk((function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1})),t},e.prototype.rawColon=function(e){var t=void 0;return e.walkDecls((function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1})),t},e.prototype.beforeAfter=function(e,t){var n=void 0;n="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r=e.parent,o=0;r&&"root"!==r.type;)o+=1,r=r.parent;if(-1!==n.indexOf("\n")){var a=this.raw(e,null,"indent");if(a.length)for(var i=0;i<o;i++)n+=a}return n},e.prototype.rawValue=function(e,t){var n=e[t],r=e.raws[t];return r&&r.value===n?r.raw:n},e}();t.default=r,e.exports=t.default},4594:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){new o.default(t).stringify(e)};var r,o=(r=n(3255))&&r.__esModule?r:{default:r};e.exports=t.default},8818:function(e,t,n){"use strict";t.__esModule=!0;var r=i(n(683)),o=i(n(7272)),a=i(n(1810));function i(e){return e&&e.__esModule?e:{default:e}}var s={brackets:r.default.cyan,"at-word":r.default.cyan,call:r.default.cyan,comment:r.default.gray,string:r.default.green,class:r.default.yellow,hash:r.default.magenta,"(":r.default.cyan,")":r.default.cyan,"{":r.default.yellow,"}":r.default.yellow,"[":r.default.yellow,"]":r.default.yellow,":":r.default.yellow,";":r.default.yellow};t.default=function(e){for(var t=(0,o.default)(new a.default(e),{ignoreErrors:!0}),n="",r=function(){var e=t.nextToken(),r=s[function(e,t){var n=e[0],r=e[1];if("word"===n){if("."===r[0])return"class";if("#"===r[0])return"hash"}if(!t.endOfFile()){var o=t.nextToken();if(t.back(o),"brackets"===o[0]||"("===o[0])return"call"}return n}(e,t)];n+=r?e[1].split(/\r?\n/).map((function(e){return r(e)})).join("\n"):e[1]};!t.endOfFile();)r();return n},e.exports=t.default},7272:function(e,t){"use strict";t.__esModule=!0,t.default=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},g=e.css.valueOf(),p=t.ignoreErrors,f=void 0,m=void 0,h=void 0,y=void 0,v=void 0,b=void 0,_=void 0,w=void 0,E=void 0,$=void 0,C=void 0,k=void 0,S=void 0,x=void 0,O=g.length,P=-1,A=1,N=0,R=[],T=[];function M(t){throw e.error("Unclosed "+t,A,N-P)}function j(){return 0===T.length&&N>=O}function I(){if(T.length)return T.pop();if(!(N>=O)){switch(((f=g.charCodeAt(N))===o||f===i||f===s&&g.charCodeAt(N+1)!==o)&&(P=N,A+=1),f){case o:case a:case 9:case s:case i:m=N;do{m+=1,(f=g.charCodeAt(m))===o&&(P=m,A+=1)}while(f===a||f===o||9===f||f===s||f===i);x=["space",g.slice(N,m)],N=m-1;break;case 91:x=["[","[",A,N-P];break;case 93:x=["]","]",A,N-P];break;case 123:x=["{","{",A,N-P];break;case 125:x=["}","}",A,N-P];break;case 58:x=[":",":",A,N-P];break;case 59:x=[";",";",A,N-P];break;case 40:if(k=R.length?R.pop()[1]:"",S=g.charCodeAt(N+1),"url"===k&&S!==n&&34!==S&&S!==a&&S!==o&&9!==S&&S!==i&&S!==s){m=N;do{if($=!1,-1===(m=g.indexOf(")",m+1))){if(p){m=N;break}M("bracket")}for(C=m;g.charCodeAt(C-1)===r;)C-=1,$=!$}while($);x=["brackets",g.slice(N,m+1),A,N-P,A,m-P],N=m}else m=g.indexOf(")",N+1),b=g.slice(N,m+1),-1===m||u.test(b)?x=["(","(",A,N-P]:(x=["brackets",b,A,N-P,A,m-P],N=m);break;case 41:x=[")",")",A,N-P];break;case n:case 34:h=f===n?"'":'"',m=N;do{if($=!1,-1===(m=g.indexOf(h,m+1))){if(p){m=N+1;break}M("string")}for(C=m;g.charCodeAt(C-1)===r;)C-=1,$=!$}while($);b=g.slice(N,m+1),y=b.split("\n"),(v=y.length-1)>0?(w=A+v,E=m-y[v].length):(w=A,E=P),x=["string",g.slice(N,m+1),A,N-P,w,m-E],P=E,A=w,N=m;break;case 64:l.lastIndex=N+1,l.test(g),m=0===l.lastIndex?g.length-1:l.lastIndex-2,x=["at-word",g.slice(N,m+1),A,N-P,A,m-P],N=m;break;case r:for(m=N,_=!0;g.charCodeAt(m+1)===r;)m+=1,_=!_;if(f=g.charCodeAt(m+1),_&&47!==f&&f!==a&&f!==o&&9!==f&&f!==s&&f!==i&&(m+=1,d.test(g.charAt(m)))){for(;d.test(g.charAt(m+1));)m+=1;g.charCodeAt(m+1)===a&&(m+=1)}x=["word",g.slice(N,m+1),A,N-P,A,m-P],N=m;break;default:47===f&&42===g.charCodeAt(N+1)?(0===(m=g.indexOf("*/",N+2)+1)&&(p?m=g.length:M("comment")),b=g.slice(N,m+1),y=b.split("\n"),(v=y.length-1)>0?(w=A+v,E=m-y[v].length):(w=A,E=P),x=["comment",b,A,N-P,w,m-E],P=E,A=w,N=m):(c.lastIndex=N+1,c.test(g),m=0===c.lastIndex?g.length-1:c.lastIndex-2,x=["word",g.slice(N,m+1),A,N-P,A,m-P],R.push(x),N=m)}return N++,x}}function F(e){T.push(e)}return{back:F,nextToken:I,endOfFile:j}};var n=39,r=92,o=10,a=32,i=12,s=13,l=/[ \n\t\r\f\{\}\(\)'"\\;/\[\]#]/g,c=/[ \n\t\r\f\(\)\{\}:;@!'"\\\]\[#]|\/(?=\*)/g,u=/.[\\\/\("'\n]/,d=/[a-f0-9]/i;e.exports=t.default},3e3:function(e,t){"use strict";t.__esModule=!0,t.default={prefix:function(e){var t=e.match(/^(-\w+-)/);return t?t[0]:""},unprefixed:function(e){return e.replace(/^-\w+-/,"")}},e.exports=t.default},6094:function(e,t){"use strict";t.__esModule=!0,t.default=function(e){n[e]||(n[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))};var n={};e.exports=t.default},9936:function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}t.__esModule=!0;var r=function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(n(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var o=r.node.positionBy(r);this.line=o.line,this.column=o.column}for(var a in r)this[a]=r[a]}return e.prototype.toString=function(){return this.node?this.node.error(this.text,{plugin:this.plugin,index:this.index,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text},e}();t.default=r,e.exports=t.default},40:function(e,t,n){var r=n(5037),o=Object.prototype.hasOwnProperty,a="undefined"!=typeof Map;function i(){this._array=[],this._set=a?new Map:Object.create(null)}i.fromArray=function(e,t){for(var n=new i,r=0,o=e.length;r<o;r++)n.add(e[r],t);return n},i.prototype.size=function(){return a?this._set.size:Object.getOwnPropertyNames(this._set).length},i.prototype.add=function(e,t){var n=a?e:r.toSetString(e),i=a?this.has(e):o.call(this._set,n),s=this._array.length;i&&!t||this._array.push(e),i||(a?this._set.set(e,s):this._set[n]=s)},i.prototype.has=function(e){if(a)return this._set.has(e);var t=r.toSetString(e);return o.call(this._set,t)},i.prototype.indexOf=function(e){if(a){var t=this._set.get(e);if(t>=0)return t}else{var n=r.toSetString(e);if(o.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},i.prototype.at=function(e){if(e>=0&&e<this._array.length)return this._array[e];throw new Error("No element indexed by "+e)},i.prototype.toArray=function(){return this._array.slice()},t.I=i},3858:function(e,t,n){var r=n(2629);t.encode=function(e){var t,n="",o=function(e){return e<0?1+(-e<<1):0+(e<<1)}(e);do{t=31&o,(o>>>=5)>0&&(t|=32),n+=r.encode(t)}while(o>0);return n},t.decode=function(e,t,n){var o,a,i,s,l=e.length,c=0,u=0;do{if(t>=l)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(a=r.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));o=!!(32&a),c+=(a&=31)<<u,u+=5}while(o);n.value=(s=(i=c)>>1,1==(1&i)?-s:s),n.rest=t}},2629:function(e,t){var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");t.encode=function(e){if(0<=e&&e<n.length)return n[e];throw new TypeError("Must be between 0 and 63: "+e)},t.decode=function(e){return 65<=e&&e<=90?e-65:97<=e&&e<=122?e-97+26:48<=e&&e<=57?e-48+52:43==e?62:47==e?63:-1}},115:function(e,t){function n(e,r,o,a,i,s){var l=Math.floor((r-e)/2)+e,c=i(o,a[l],!0);return 0===c?l:c>0?r-l>1?n(l,r,o,a,i,s):s==t.LEAST_UPPER_BOUND?r<a.length?r:-1:l:l-e>1?n(e,l,o,a,i,s):s==t.LEAST_UPPER_BOUND?l:e<0?-1:e}t.GREATEST_LOWER_BOUND=1,t.LEAST_UPPER_BOUND=2,t.search=function(e,r,o,a){if(0===r.length)return-1;var i=n(-1,r.length,e,r,o,a||t.GREATEST_LOWER_BOUND);if(i<0)return-1;for(;i-1>=0&&0===o(r[i],r[i-1],!0);)--i;return i}},212:function(e,t,n){var r=n(5037);function o(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}o.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},o.prototype.add=function(e){var t,n,o,a,i,s;n=e,o=(t=this._last).generatedLine,a=n.generatedLine,i=t.generatedColumn,s=n.generatedColumn,a>o||a==o&&s>=i||r.compareByGeneratedPositionsInflated(t,n)<=0?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},o.prototype.toArray=function(){return this._sorted||(this._array.sort(r.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},t.H=o},8251:function(e,t){function n(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function r(e,t,o,a){if(o<a){var i=o-1;n(e,(u=o,d=a,Math.round(u+Math.random()*(d-u))),a);for(var s=e[a],l=o;l<a;l++)t(e[l],s)<=0&&n(e,i+=1,l);n(e,i+1,l);var c=i+1;r(e,t,o,c-1),r(e,t,c+1,a)}var u,d}t.U=function(e,t){r(e,t,0,e.length-1)}},5177:function(e,t,n){var r=n(5037),o=n(115),a=n(40).I,i=n(3858),s=n(8251).U;function l(e,t){var n=e;return"string"==typeof e&&(n=r.parseSourceMapInput(e)),null!=n.sections?new d(n,t):new c(n,t)}function c(e,t){var n=e;"string"==typeof e&&(n=r.parseSourceMapInput(e));var o=r.getArg(n,"version"),i=r.getArg(n,"sources"),s=r.getArg(n,"names",[]),l=r.getArg(n,"sourceRoot",null),c=r.getArg(n,"sourcesContent",null),u=r.getArg(n,"mappings"),d=r.getArg(n,"file",null);if(o!=this._version)throw new Error("Unsupported version: "+o);l&&(l=r.normalize(l)),i=i.map(String).map(r.normalize).map((function(e){return l&&r.isAbsolute(l)&&r.isAbsolute(e)?r.relative(l,e):e})),this._names=a.fromArray(s.map(String),!0),this._sources=a.fromArray(i,!0),this._absoluteSources=this._sources.toArray().map((function(e){return r.computeSourceURL(l,e,t)})),this.sourceRoot=l,this.sourcesContent=c,this._mappings=u,this._sourceMapURL=t,this.file=d}function u(){this.generatedLine=0,this.generatedColumn=0,this.source=null,this.originalLine=null,this.originalColumn=null,this.name=null}function d(e,t){var n=e;"string"==typeof e&&(n=r.parseSourceMapInput(e));var o=r.getArg(n,"version"),i=r.getArg(n,"sections");if(o!=this._version)throw new Error("Unsupported version: "+o);this._sources=new a,this._names=new a;var s={line:-1,column:0};this._sections=i.map((function(e){if(e.url)throw new Error("Support for url field in sections not implemented.");var n=r.getArg(e,"offset"),o=r.getArg(n,"line"),a=r.getArg(n,"column");if(o<s.line||o===s.line&&a<s.column)throw new Error("Section offsets must be ordered and non-overlapping.");return s=n,{generatedOffset:{generatedLine:o+1,generatedColumn:a+1},consumer:new l(r.getArg(e,"map"),t)}}))}l.fromSourceMap=function(e,t){return c.fromSourceMap(e,t)},l.prototype._version=3,l.prototype.__generatedMappings=null,Object.defineProperty(l.prototype,"_generatedMappings",{configurable:!0,enumerable:!0,get:function(){return this.__generatedMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__generatedMappings}}),l.prototype.__originalMappings=null,Object.defineProperty(l.prototype,"_originalMappings",{configurable:!0,enumerable:!0,get:function(){return this.__originalMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__originalMappings}}),l.prototype._charIsMappingSeparator=function(e,t){var n=e.charAt(t);return";"===n||","===n},l.prototype._parseMappings=function(e,t){throw new Error("Subclasses must implement _parseMappings")},l.GENERATED_ORDER=1,l.ORIGINAL_ORDER=2,l.GREATEST_LOWER_BOUND=1,l.LEAST_UPPER_BOUND=2,l.prototype.eachMapping=function(e,t,n){var o,a=t||null;switch(n||l.GENERATED_ORDER){case l.GENERATED_ORDER:o=this._generatedMappings;break;case l.ORIGINAL_ORDER:o=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var i=this.sourceRoot;o.map((function(e){var t=null===e.source?null:this._sources.at(e.source);return{source:t=r.computeSourceURL(i,t,this._sourceMapURL),generatedLine:e.generatedLine,generatedColumn:e.generatedColumn,originalLine:e.originalLine,originalColumn:e.originalColumn,name:null===e.name?null:this._names.at(e.name)}}),this).forEach(e,a)},l.prototype.allGeneratedPositionsFor=function(e){var t=r.getArg(e,"line"),n={source:r.getArg(e,"source"),originalLine:t,originalColumn:r.getArg(e,"column",0)};if(n.source=this._findSourceIndex(n.source),n.source<0)return[];var a=[],i=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,o.LEAST_UPPER_BOUND);if(i>=0){var s=this._originalMappings[i];if(void 0===e.column)for(var l=s.originalLine;s&&s.originalLine===l;)a.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)}),s=this._originalMappings[++i];else for(var c=s.originalColumn;s&&s.originalLine===t&&s.originalColumn==c;)a.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)}),s=this._originalMappings[++i]}return a},t.SourceMapConsumer=l,c.prototype=Object.create(l.prototype),c.prototype.consumer=l,c.prototype._findSourceIndex=function(e){var t,n=e;if(null!=this.sourceRoot&&(n=r.relative(this.sourceRoot,n)),this._sources.has(n))return this._sources.indexOf(n);for(t=0;t<this._absoluteSources.length;++t)if(this._absoluteSources[t]==e)return t;return-1},c.fromSourceMap=function(e,t){var n=Object.create(c.prototype),o=n._names=a.fromArray(e._names.toArray(),!0),i=n._sources=a.fromArray(e._sources.toArray(),!0);n.sourceRoot=e._sourceRoot,n.sourcesContent=e._generateSourcesContent(n._sources.toArray(),n.sourceRoot),n.file=e._file,n._sourceMapURL=t,n._absoluteSources=n._sources.toArray().map((function(e){return r.computeSourceURL(n.sourceRoot,e,t)}));for(var l=e._mappings.toArray().slice(),d=n.__generatedMappings=[],g=n.__originalMappings=[],p=0,f=l.length;p<f;p++){var m=l[p],h=new u;h.generatedLine=m.generatedLine,h.generatedColumn=m.generatedColumn,m.source&&(h.source=i.indexOf(m.source),h.originalLine=m.originalLine,h.originalColumn=m.originalColumn,m.name&&(h.name=o.indexOf(m.name)),g.push(h)),d.push(h)}return s(n.__originalMappings,r.compareByOriginalPositions),n},c.prototype._version=3,Object.defineProperty(c.prototype,"sources",{get:function(){return this._absoluteSources.slice()}}),c.prototype._parseMappings=function(e,t){for(var n,o,a,l,c,d=1,g=0,p=0,f=0,m=0,h=0,y=e.length,v=0,b={},_={},w=[],E=[];v<y;)if(";"===e.charAt(v))d++,v++,g=0;else if(","===e.charAt(v))v++;else{for((n=new u).generatedLine=d,l=v;l<y&&!this._charIsMappingSeparator(e,l);l++);if(a=b[o=e.slice(v,l)])v+=o.length;else{for(a=[];v<l;)i.decode(e,v,_),c=_.value,v=_.rest,a.push(c);if(2===a.length)throw new Error("Found a source, but no line and column");if(3===a.length)throw new Error("Found a source and line, but no column");b[o]=a}n.generatedColumn=g+a[0],g=n.generatedColumn,a.length>1&&(n.source=m+a[1],m+=a[1],n.originalLine=p+a[2],p=n.originalLine,n.originalLine+=1,n.originalColumn=f+a[3],f=n.originalColumn,a.length>4&&(n.name=h+a[4],h+=a[4])),E.push(n),"number"==typeof n.originalLine&&w.push(n)}s(E,r.compareByGeneratedPositionsDeflated),this.__generatedMappings=E,s(w,r.compareByOriginalPositions),this.__originalMappings=w},c.prototype._findMapping=function(e,t,n,r,a,i){if(e[n]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+e[n]);if(e[r]<0)throw new TypeError("Column must be greater than or equal to 0, got "+e[r]);return o.search(e,t,a,i)},c.prototype.computeColumnSpans=function(){for(var e=0;e<this._generatedMappings.length;++e){var t=this._generatedMappings[e];if(e+1<this._generatedMappings.length){var n=this._generatedMappings[e+1];if(t.generatedLine===n.generatedLine){t.lastGeneratedColumn=n.generatedColumn-1;continue}}t.lastGeneratedColumn=1/0}},c.prototype.originalPositionFor=function(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")},n=this._findMapping(t,this._generatedMappings,"generatedLine","generatedColumn",r.compareByGeneratedPositionsDeflated,r.getArg(e,"bias",l.GREATEST_LOWER_BOUND));if(n>=0){var o=this._generatedMappings[n];if(o.generatedLine===t.generatedLine){var a=r.getArg(o,"source",null);null!==a&&(a=this._sources.at(a),a=r.computeSourceURL(this.sourceRoot,a,this._sourceMapURL));var i=r.getArg(o,"name",null);return null!==i&&(i=this._names.at(i)),{source:a,line:r.getArg(o,"originalLine",null),column:r.getArg(o,"originalColumn",null),name:i}}}return{source:null,line:null,column:null,name:null}},c.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some((function(e){return null==e}))},c.prototype.sourceContentFor=function(e,t){if(!this.sourcesContent)return null;var n=this._findSourceIndex(e);if(n>=0)return this.sourcesContent[n];var o,a=e;if(null!=this.sourceRoot&&(a=r.relative(this.sourceRoot,a)),null!=this.sourceRoot&&(o=r.urlParse(this.sourceRoot))){var i=a.replace(/^file:\/\//,"");if("file"==o.scheme&&this._sources.has(i))return this.sourcesContent[this._sources.indexOf(i)];if((!o.path||"/"==o.path)&&this._sources.has("/"+a))return this.sourcesContent[this._sources.indexOf("/"+a)]}if(t)return null;throw new Error('"'+a+'" is not in the SourceMap.')},c.prototype.generatedPositionFor=function(e){var t=r.getArg(e,"source");if((t=this._findSourceIndex(t))<0)return{line:null,column:null,lastColumn:null};var n={source:t,originalLine:r.getArg(e,"line"),originalColumn:r.getArg(e,"column")},o=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,r.getArg(e,"bias",l.GREATEST_LOWER_BOUND));if(o>=0){var a=this._originalMappings[o];if(a.source===n.source)return{line:r.getArg(a,"generatedLine",null),column:r.getArg(a,"generatedColumn",null),lastColumn:r.getArg(a,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},d.prototype=Object.create(l.prototype),d.prototype.constructor=l,d.prototype._version=3,Object.defineProperty(d.prototype,"sources",{get:function(){for(var e=[],t=0;t<this._sections.length;t++)for(var n=0;n<this._sections[t].consumer.sources.length;n++)e.push(this._sections[t].consumer.sources[n]);return e}}),d.prototype.originalPositionFor=function(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")},n=o.search(t,this._sections,(function(e,t){return e.generatedLine-t.generatedOffset.generatedLine||e.generatedColumn-t.generatedOffset.generatedColumn})),a=this._sections[n];return a?a.consumer.originalPositionFor({line:t.generatedLine-(a.generatedOffset.generatedLine-1),column:t.generatedColumn-(a.generatedOffset.generatedLine===t.generatedLine?a.generatedOffset.generatedColumn-1:0),bias:e.bias}):{source:null,line:null,column:null,name:null}},d.prototype.hasContentsOfAllSources=function(){return this._sections.every((function(e){return e.consumer.hasContentsOfAllSources()}))},d.prototype.sourceContentFor=function(e,t){for(var n=0;n<this._sections.length;n++){var r=this._sections[n].consumer.sourceContentFor(e,!0);if(r)return r}if(t)return null;throw new Error('"'+e+'" is not in the SourceMap.')},d.prototype.generatedPositionFor=function(e){for(var t=0;t<this._sections.length;t++){var n=this._sections[t];if(-1!==n.consumer._findSourceIndex(r.getArg(e,"source"))){var o=n.consumer.generatedPositionFor(e);if(o)return{line:o.line+(n.generatedOffset.generatedLine-1),column:o.column+(n.generatedOffset.generatedLine===o.line?n.generatedOffset.generatedColumn-1:0)}}}return{line:null,column:null}},d.prototype._parseMappings=function(e,t){this.__generatedMappings=[],this.__originalMappings=[];for(var n=0;n<this._sections.length;n++)for(var o=this._sections[n],a=o.consumer._generatedMappings,i=0;i<a.length;i++){var l=a[i],c=o.consumer._sources.at(l.source);c=r.computeSourceURL(o.consumer.sourceRoot,c,this._sourceMapURL),this._sources.add(c),c=this._sources.indexOf(c);var u=null;l.name&&(u=o.consumer._names.at(l.name),this._names.add(u),u=this._names.indexOf(u));var d={source:c,generatedLine:l.generatedLine+(o.generatedOffset.generatedLine-1),generatedColumn:l.generatedColumn+(o.generatedOffset.generatedLine===l.generatedLine?o.generatedOffset.generatedColumn-1:0),originalLine:l.originalLine,originalColumn:l.originalColumn,name:u};this.__generatedMappings.push(d),"number"==typeof d.originalLine&&this.__originalMappings.push(d)}s(this.__generatedMappings,r.compareByGeneratedPositionsDeflated),s(this.__originalMappings,r.compareByOriginalPositions)}},8530:function(e,t,n){var r=n(3858),o=n(5037),a=n(40).I,i=n(212).H;function s(e){e||(e={}),this._file=o.getArg(e,"file",null),this._sourceRoot=o.getArg(e,"sourceRoot",null),this._skipValidation=o.getArg(e,"skipValidation",!1),this._sources=new a,this._names=new a,this._mappings=new i,this._sourcesContents=null}s.prototype._version=3,s.fromSourceMap=function(e){var t=e.sourceRoot,n=new s({file:e.file,sourceRoot:t});return e.eachMapping((function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};null!=e.source&&(r.source=e.source,null!=t&&(r.source=o.relative(t,r.source)),r.original={line:e.originalLine,column:e.originalColumn},null!=e.name&&(r.name=e.name)),n.addMapping(r)})),e.sources.forEach((function(r){var a=r;null!==t&&(a=o.relative(t,r)),n._sources.has(a)||n._sources.add(a);var i=e.sourceContentFor(r);null!=i&&n.setSourceContent(r,i)})),n},s.prototype.addMapping=function(e){var t=o.getArg(e,"generated"),n=o.getArg(e,"original",null),r=o.getArg(e,"source",null),a=o.getArg(e,"name",null);this._skipValidation||this._validateMapping(t,n,r,a),null!=r&&(r=String(r),this._sources.has(r)||this._sources.add(r)),null!=a&&(a=String(a),this._names.has(a)||this._names.add(a)),this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:null!=n&&n.line,originalColumn:null!=n&&n.column,source:r,name:a})},s.prototype.setSourceContent=function(e,t){var n=e;null!=this._sourceRoot&&(n=o.relative(this._sourceRoot,n)),null!=t?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[o.toSetString(n)]=t):this._sourcesContents&&(delete this._sourcesContents[o.toSetString(n)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},s.prototype.applySourceMap=function(e,t,n){var r=t;if(null==t){if(null==e.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');r=e.file}var i=this._sourceRoot;null!=i&&(r=o.relative(i,r));var s=new a,l=new a;this._mappings.unsortedForEach((function(t){if(t.source===r&&null!=t.originalLine){var a=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});null!=a.source&&(t.source=a.source,null!=n&&(t.source=o.join(n,t.source)),null!=i&&(t.source=o.relative(i,t.source)),t.originalLine=a.line,t.originalColumn=a.column,null!=a.name&&(t.name=a.name))}var c=t.source;null==c||s.has(c)||s.add(c);var u=t.name;null==u||l.has(u)||l.add(u)}),this),this._sources=s,this._names=l,e.sources.forEach((function(t){var r=e.sourceContentFor(t);null!=r&&(null!=n&&(t=o.join(n,t)),null!=i&&(t=o.relative(i,t)),this.setSourceContent(t,r))}),this)},s.prototype._validateMapping=function(e,t,n,r){if(t&&"number"!=typeof t.line&&"number"!=typeof t.column)throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if((!(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},s.prototype._serializeMappings=function(){for(var e,t,n,a,i=0,s=1,l=0,c=0,u=0,d=0,g="",p=this._mappings.toArray(),f=0,m=p.length;f<m;f++){if(e="",(t=p[f]).generatedLine!==s)for(i=0;t.generatedLine!==s;)e+=";",s++;else if(f>0){if(!o.compareByGeneratedPositionsInflated(t,p[f-1]))continue;e+=","}e+=r.encode(t.generatedColumn-i),i=t.generatedColumn,null!=t.source&&(a=this._sources.indexOf(t.source),e+=r.encode(a-d),d=a,e+=r.encode(t.originalLine-1-c),c=t.originalLine-1,e+=r.encode(t.originalColumn-l),l=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=r.encode(n-u),u=n)),g+=e}return g},s.prototype._generateSourcesContent=function(e,t){return e.map((function(e){if(!this._sourcesContents)return null;null!=t&&(e=o.relative(t,e));var n=o.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null}),this)},s.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},s.prototype.toString=function(){return JSON.stringify(this.toJSON())},t.SourceMapGenerator=s},8570:function(e,t,n){var r=n(8530).SourceMapGenerator,o=n(5037),a=/(\r?\n)/,i="$$$isSourceNode$$$";function s(e,t,n,r,o){this.children=[],this.sourceContents={},this.line=null==e?null:e,this.column=null==t?null:t,this.source=null==n?null:n,this.name=null==o?null:o,this[i]=!0,null!=r&&this.add(r)}s.fromStringWithSourceMap=function(e,t,n){var r=new s,i=e.split(a),l=0,c=function(){return e()+(e()||"");function e(){return l<i.length?i[l++]:void 0}},u=1,d=0,g=null;return t.eachMapping((function(e){if(null!==g){if(!(u<e.generatedLine)){var t=(n=i[l]||"").substr(0,e.generatedColumn-d);return i[l]=n.substr(e.generatedColumn-d),d=e.generatedColumn,p(g,t),void(g=e)}p(g,c()),u++,d=0}for(;u<e.generatedLine;)r.add(c()),u++;if(d<e.generatedColumn){var n=i[l]||"";r.add(n.substr(0,e.generatedColumn)),i[l]=n.substr(e.generatedColumn),d=e.generatedColumn}g=e}),this),l<i.length&&(g&&p(g,c()),r.add(i.splice(l).join(""))),t.sources.forEach((function(e){var a=t.sourceContentFor(e);null!=a&&(null!=n&&(e=o.join(n,e)),r.setSourceContent(e,a))})),r;function p(e,t){if(null===e||void 0===e.source)r.add(t);else{var a=n?o.join(n,e.source):e.source;r.add(new s(e.originalLine,e.originalColumn,a,t,e.name))}}},s.prototype.add=function(e){if(Array.isArray(e))e.forEach((function(e){this.add(e)}),this);else{if(!e[i]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);e&&this.children.push(e)}return this},s.prototype.prepend=function(e){if(Array.isArray(e))for(var t=e.length-1;t>=0;t--)this.prepend(e[t]);else{if(!e[i]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);this.children.unshift(e)}return this},s.prototype.walk=function(e){for(var t,n=0,r=this.children.length;n<r;n++)(t=this.children[n])[i]?t.walk(e):""!==t&&e(t,{source:this.source,line:this.line,column:this.column,name:this.name})},s.prototype.join=function(e){var t,n,r=this.children.length;if(r>0){for(t=[],n=0;n<r-1;n++)t.push(this.children[n]),t.push(e);t.push(this.children[n]),this.children=t}return this},s.prototype.replaceRight=function(e,t){var n=this.children[this.children.length-1];return n[i]?n.replaceRight(e,t):"string"==typeof n?this.children[this.children.length-1]=n.replace(e,t):this.children.push("".replace(e,t)),this},s.prototype.setSourceContent=function(e,t){this.sourceContents[o.toSetString(e)]=t},s.prototype.walkSourceContents=function(e){for(var t=0,n=this.children.length;t<n;t++)this.children[t][i]&&this.children[t].walkSourceContents(e);var r=Object.keys(this.sourceContents);for(t=0,n=r.length;t<n;t++)e(o.fromSetString(r[t]),this.sourceContents[r[t]])},s.prototype.toString=function(){var e="";return this.walk((function(t){e+=t})),e},s.prototype.toStringWithSourceMap=function(e){var t={code:"",line:1,column:0},n=new r(e),o=!1,a=null,i=null,s=null,l=null;return this.walk((function(e,r){t.code+=e,null!==r.source&&null!==r.line&&null!==r.column?(a===r.source&&i===r.line&&s===r.column&&l===r.name||n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name}),a=r.source,i=r.line,s=r.column,l=r.name,o=!0):o&&(n.addMapping({generated:{line:t.line,column:t.column}}),a=null,o=!1);for(var c=0,u=e.length;c<u;c++)10===e.charCodeAt(c)?(t.line++,t.column=0,c+1===u?(a=null,o=!1):o&&n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})):t.column++})),this.walkSourceContents((function(e,t){n.setSourceContent(e,t)})),{code:t.code,map:n}},t.SourceNode=s},5037:function(e,t){t.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var n=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/,r=/^data:.+\,.+$/;function o(e){var t=e.match(n);return t?{scheme:t[1],auth:t[2],host:t[3],port:t[4],path:t[5]}:null}function a(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth&&(t+=e.auth+"@"),e.host&&(t+=e.host),e.port&&(t+=":"+e.port),e.path&&(t+=e.path),t}function i(e){var n=e,r=o(e);if(r){if(!r.path)return e;n=r.path}for(var i,s=t.isAbsolute(n),l=n.split(/\/+/),c=0,u=l.length-1;u>=0;u--)"."===(i=l[u])?l.splice(u,1):".."===i?c++:c>0&&(""===i?(l.splice(u+1,c),c=0):(l.splice(u,2),c--));return""===(n=l.join("/"))&&(n=s?"/":"."),r?(r.path=n,a(r)):n}function s(e,t){""===e&&(e="."),""===t&&(t=".");var n=o(t),s=o(e);if(s&&(e=s.path||"/"),n&&!n.scheme)return s&&(n.scheme=s.scheme),a(n);if(n||t.match(r))return t;if(s&&!s.host&&!s.path)return s.host=t,a(s);var l="/"===t.charAt(0)?t:i(e.replace(/\/+$/,"")+"/"+t);return s?(s.path=l,a(s)):l}t.urlParse=o,t.urlGenerate=a,t.normalize=i,t.join=s,t.isAbsolute=function(e){return"/"===e.charAt(0)||n.test(e)},t.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var l=!("__proto__"in Object.create(null));function c(e){return e}function u(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function d(e,t){return e===t?0:null===e?1:null===t?-1:e>t?1:-1}t.toSetString=l?c:function(e){return u(e)?"$"+e:e},t.fromSetString=l?c:function(e){return u(e)?e.slice(1):e},t.compareByOriginalPositions=function(e,t,n){var r=d(e.source,t.source);return 0!==r||0!=(r=e.originalLine-t.originalLine)||0!=(r=e.originalColumn-t.originalColumn)||n||0!=(r=e.generatedColumn-t.generatedColumn)||0!=(r=e.generatedLine-t.generatedLine)?r:d(e.name,t.name)},t.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r||0!=(r=e.generatedColumn-t.generatedColumn)||n||0!==(r=d(e.source,t.source))||0!=(r=e.originalLine-t.originalLine)||0!=(r=e.originalColumn-t.originalColumn)?r:d(e.name,t.name)},t.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n||0!=(n=e.generatedColumn-t.generatedColumn)||0!==(n=d(e.source,t.source))||0!=(n=e.originalLine-t.originalLine)||0!=(n=e.originalColumn-t.originalColumn)?n:d(e.name,t.name)},t.parseSourceMapInput=function(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))},t.computeSourceURL=function(e,t,n){if(t=t||"",e&&("/"!==e[e.length-1]&&"/"!==t[0]&&(e+="/"),t=e+t),n){var r=o(n);if(!r)throw new Error("sourceMapURL could not be parsed");if(r.path){var l=r.path.lastIndexOf("/");l>=0&&(r.path=r.path.substring(0,l+1))}t=s(a(r),t)}return i(t)}},4014:function(e,t,n){t.SourceMapGenerator=n(8530).SourceMapGenerator,t.SourceMapConsumer=n(5177).SourceMapConsumer,t.SourceNode=n(8570).SourceNode},4624:function(e,t,n){"use strict";e.exports=n(5627)},5627:function(e,t){"use strict";var n=function(e){if(!e.includes("grid"))return e;if("display:grid"===e)return"\n display: -ms-grid;\n display: grid;\n ";if("display:inline-grid"===e)return"\n display: -ms-inline-grid;\n display: inline-grid;\n ";var t=e.match(/^grid-([a-z-]+): *(.+)/);if(!t)return e;var n=t[1],r=t[2];return"template"===n?function(e,t){var n=t.split(/\s*\/\s*/),r=n[0],o=n[1],a=/repeat\((\d+), *(.+)\)/;return r&&o?"\n -ms-grid-rows: "+r.replace(a,"($2)[$1]")+";\n -ms-grid-columns: "+o.replace(a,"($2)[$1]")+";\n grid-"+e+": "+t+";\n ":e+": "+t+";"}(n,r):"template-rows"===n||"template-columns"===n?function(e,t){return"\n -ms-grid-"+e.split("-")[1]+": "+t.replace(/repeat\((\d+), *(.+)\)/,"($2)[$1]")+";\n grid-"+e+": "+t+";\n "}(n,r):"row"===n||"column"===n?function(e,t){var n=t.split(/\s*\/\s*/),r=n[0],o=n[1],a=null==o?void 0:o.match("span ");if(!r)return"\n -ms-grid-"+e+": "+t+";\n grid-"+e+": "+t+";\n ";if(r&&a)return"\n -ms-grid-"+e+": "+r+";\n -ms-grid-"+e+"-span: "+o.replace("span ","")+";\n grid-"+e+": "+t+";\n ";if(r&&!a){var i=parseInt(r);return"\n -ms-grid-"+e+": "+r+";\n -ms-grid-"+e+"-span: "+(parseInt(o)-i)+";\n grid-"+e+": "+t+";\n "}return"\n grid-"+e+": "+t+";\n "}(n,r):e},r=function(e,t){if(1===e||2===e)return Array.isArray(t)?t.forEach((function(e){return n(e)})):n(t)};Object.defineProperty(r,"name",{value:"griddie"}),t.default=r},7621:function(e,t,n){var r;!function(o){var a=/^\s+/,i=/\s+$/,s=0,l=o.round,c=o.min,u=o.max,d=o.random;function g(e,t){if(t=t||{},(e=e||"")instanceof g)return e;if(!(this instanceof g))return new g(e,t);var n=function(e){var t,n,r,s={r:0,g:0,b:0},l=1,d=null,g=null,p=null,f=!1,m=!1;return"string"==typeof e&&(e=function(e){e=e.replace(a,"").replace(i,"").toLowerCase();var t,n=!1;if(A[e])e=A[e],n=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=z.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=z.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=z.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=z.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=z.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=z.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=z.hex8.exec(e))?{r:j(t[1]),g:j(t[2]),b:j(t[3]),a:L(t[4]),format:n?"name":"hex8"}:(t=z.hex6.exec(e))?{r:j(t[1]),g:j(t[2]),b:j(t[3]),format:n?"name":"hex"}:(t=z.hex4.exec(e))?{r:j(t[1]+""+t[1]),g:j(t[2]+""+t[2]),b:j(t[3]+""+t[3]),a:L(t[4]+""+t[4]),format:n?"name":"hex8"}:!!(t=z.hex3.exec(e))&&{r:j(t[1]+""+t[1]),g:j(t[2]+""+t[2]),b:j(t[3]+""+t[3]),format:n?"name":"hex"}}(e)),"object"==typeof e&&(H(e.r)&&H(e.g)&&H(e.b)?(t=e.r,n=e.g,r=e.b,s={r:255*T(t,255),g:255*T(n,255),b:255*T(r,255)},f=!0,m="%"===String(e.r).substr(-1)?"prgb":"rgb"):H(e.h)&&H(e.s)&&H(e.v)?(d=F(e.s),g=F(e.v),s=function(e,t,n){e=6*T(e,360),t=T(t,100),n=T(n,100);var r=o.floor(e),a=e-r,i=n*(1-t),s=n*(1-a*t),l=n*(1-(1-a)*t),c=r%6;return{r:255*[n,s,i,i,l,n][c],g:255*[l,n,n,s,i,i][c],b:255*[i,i,l,n,n,s][c]}}(e.h,d,g),f=!0,m="hsv"):H(e.h)&&H(e.s)&&H(e.l)&&(d=F(e.s),p=F(e.l),s=function(e,t,n){var r,o,a;function i(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=T(e,360),t=T(t,100),n=T(n,100),0===t)r=o=a=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=i(l,s,e+1/3),o=i(l,s,e),a=i(l,s,e-1/3)}return{r:255*r,g:255*o,b:255*a}}(e.h,d,p),f=!0,m="hsl"),e.hasOwnProperty("a")&&(l=e.a)),l=R(l),{ok:f,format:e.format||m,r:c(255,u(s.r,0)),g:c(255,u(s.g,0)),b:c(255,u(s.b,0)),a:l}}(e);this._originalInput=e,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=l(100*this._a)/100,this._format=t.format||n.format,this._gradientType=t.gradientType,this._r<1&&(this._r=l(this._r)),this._g<1&&(this._g=l(this._g)),this._b<1&&(this._b=l(this._b)),this._ok=n.ok,this._tc_id=s++}function p(e,t,n){e=T(e,255),t=T(t,255),n=T(n,255);var r,o,a=u(e,t,n),i=c(e,t,n),s=(a+i)/2;if(a==i)r=o=0;else{var l=a-i;switch(o=s>.5?l/(2-a-i):l/(a+i),a){case e:r=(t-n)/l+(t<n?6:0);break;case t:r=(n-e)/l+2;break;case n:r=(e-t)/l+4}r/=6}return{h:r,s:o,l:s}}function f(e,t,n){e=T(e,255),t=T(t,255),n=T(n,255);var r,o,a=u(e,t,n),i=c(e,t,n),s=a,l=a-i;if(o=0===a?0:l/a,a==i)r=0;else{switch(a){case e:r=(t-n)/l+(t<n?6:0);break;case t:r=(n-e)/l+2;break;case n:r=(e-t)/l+4}r/=6}return{h:r,s:o,v:s}}function m(e,t,n,r){var o=[I(l(e).toString(16)),I(l(t).toString(16)),I(l(n).toString(16))];return r&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)?o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0):o.join("")}function h(e,t,n,r){return[I(D(r)),I(l(e).toString(16)),I(l(t).toString(16)),I(l(n).toString(16))].join("")}function y(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.s-=t/100,n.s=M(n.s),g(n)}function v(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.s+=t/100,n.s=M(n.s),g(n)}function b(e){return g(e).desaturate(100)}function _(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.l+=t/100,n.l=M(n.l),g(n)}function w(e,t){t=0===t?0:t||10;var n=g(e).toRgb();return n.r=u(0,c(255,n.r-l(-t/100*255))),n.g=u(0,c(255,n.g-l(-t/100*255))),n.b=u(0,c(255,n.b-l(-t/100*255))),g(n)}function E(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.l-=t/100,n.l=M(n.l),g(n)}function $(e,t){var n=g(e).toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,g(n)}function C(e){var t=g(e).toHsl();return t.h=(t.h+180)%360,g(t)}function k(e){var t=g(e).toHsl(),n=t.h;return[g(e),g({h:(n+120)%360,s:t.s,l:t.l}),g({h:(n+240)%360,s:t.s,l:t.l})]}function S(e){var t=g(e).toHsl(),n=t.h;return[g(e),g({h:(n+90)%360,s:t.s,l:t.l}),g({h:(n+180)%360,s:t.s,l:t.l}),g({h:(n+270)%360,s:t.s,l:t.l})]}function x(e){var t=g(e).toHsl(),n=t.h;return[g(e),g({h:(n+72)%360,s:t.s,l:t.l}),g({h:(n+216)%360,s:t.s,l:t.l})]}function O(e,t,n){t=t||6,n=n||30;var r=g(e).toHsl(),o=360/n,a=[g(e)];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,a.push(g(r));return a}function P(e,t){t=t||6;for(var n=g(e).toHsv(),r=n.h,o=n.s,a=n.v,i=[],s=1/t;t--;)i.push(g({h:r,s:o,v:a})),a=(a+s)%1;return i}g.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r=this.toRgb();return e=r.r/255,t=r.g/255,n=r.b/255,.2126*(e<=.03928?e/12.92:o.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:o.pow((t+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:o.pow((n+.055)/1.055,2.4))},setAlpha:function(e){return this._a=R(e),this._roundA=l(100*this._a)/100,this},toHsv:function(){var e=f(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=f(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=p(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=p(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return m(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return function(e,t,n,r,o){var a=[I(l(e).toString(16)),I(l(t).toString(16)),I(l(n).toString(16)),I(D(r))];return o&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")}(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:l(this._r),g:l(this._g),b:l(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+l(this._r)+", "+l(this._g)+", "+l(this._b)+")":"rgba("+l(this._r)+", "+l(this._g)+", "+l(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:l(100*T(this._r,255))+"%",g:l(100*T(this._g,255))+"%",b:l(100*T(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+l(100*T(this._r,255))+"%, "+l(100*T(this._g,255))+"%, "+l(100*T(this._b,255))+"%)":"rgba("+l(100*T(this._r,255))+"%, "+l(100*T(this._g,255))+"%, "+l(100*T(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(N[m(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+h(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var o=g(e);n="#"+h(o._r,o._g,o._b,o._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0;return t||!r||"hex"!==e&&"hex6"!==e&&"hex3"!==e&&"hex4"!==e&&"hex8"!==e&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this._a?this.toName():this.toRgbString()},clone:function(){return g(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(_,arguments)},brighten:function(){return this._applyModification(w,arguments)},darken:function(){return this._applyModification(E,arguments)},desaturate:function(){return this._applyModification(y,arguments)},saturate:function(){return this._applyModification(v,arguments)},greyscale:function(){return this._applyModification(b,arguments)},spin:function(){return this._applyModification($,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(O,arguments)},complement:function(){return this._applyCombination(C,arguments)},monochromatic:function(){return this._applyCombination(P,arguments)},splitcomplement:function(){return this._applyCombination(x,arguments)},triad:function(){return this._applyCombination(k,arguments)},tetrad:function(){return this._applyCombination(S,arguments)}},g.fromRatio=function(e,t){if("object"==typeof e){var n={};for(var r in e)e.hasOwnProperty(r)&&(n[r]="a"===r?e[r]:F(e[r]));e=n}return g(e,t)},g.equals=function(e,t){return!(!e||!t)&&g(e).toRgbString()==g(t).toRgbString()},g.random=function(){return g.fromRatio({r:d(),g:d(),b:d()})},g.mix=function(e,t,n){n=0===n?0:n||50;var r=g(e).toRgb(),o=g(t).toRgb(),a=n/100;return g({r:(o.r-r.r)*a+r.r,g:(o.g-r.g)*a+r.g,b:(o.b-r.b)*a+r.b,a:(o.a-r.a)*a+r.a})},g.readability=function(e,t){var n=g(e),r=g(t);return(o.max(n.getLuminance(),r.getLuminance())+.05)/(o.min(n.getLuminance(),r.getLuminance())+.05)},g.isReadable=function(e,t,n){var r,o,a,i,s,l=g.readability(e,t);switch(o=!1,(a=n,"AA"!==(i=((a=a||{level:"AA",size:"small"}).level||"AA").toUpperCase())&&"AAA"!==i&&(i="AA"),"small"!==(s=(a.size||"small").toLowerCase())&&"large"!==s&&(s="small"),r={level:i,size:s}).level+r.size){case"AAsmall":case"AAAlarge":o=l>=4.5;break;case"AAlarge":o=l>=3;break;case"AAAsmall":o=l>=7}return o},g.mostReadable=function(e,t,n){var r,o,a,i,s=null,l=0;o=(n=n||{}).includeFallbackColors,a=n.level,i=n.size;for(var c=0;c<t.length;c++)(r=g.readability(e,t[c]))>l&&(l=r,s=g(t[c]));return g.isReadable(e,s,{level:a,size:i})||!o?s:(n.includeFallbackColors=!1,g.mostReadable(e,["#fff","#000"],n))};var A=g.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},N=g.hexNames=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}(A);function R(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function T(e,t){(function(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"==typeof e&&-1!=e.indexOf("%")}(e);return e=c(t,u(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),o.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function M(e){return c(1,u(0,e))}function j(e){return parseInt(e,16)}function I(e){return 1==e.length?"0"+e:""+e}function F(e){return e<=1&&(e=100*e+"%"),e}function D(e){return o.round(255*parseFloat(e)).toString(16)}function L(e){return j(e)/255}var G,B,q,z=(B="[\\s|\\(]+("+(G="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+G+")[,|\\s]+("+G+")\\s*\\)?",q="[\\s|\\(]+("+G+")[,|\\s]+("+G+")[,|\\s]+("+G+")[,|\\s]+("+G+")\\s*\\)?",{CSS_UNIT:new RegExp(G),rgb:new RegExp("rgb"+B),rgba:new RegExp("rgba"+q),hsl:new RegExp("hsl"+B),hsla:new RegExp("hsla"+q),hsv:new RegExp("hsv"+B),hsva:new RegExp("hsva"+q),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function H(e){return!!z.CSS_UNIT.exec(e)}e.exports?e.exports=g:void 0===(r=function(){return g}.call(t,n,t,e))||(e.exports=r)}(Math)},8026:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/components/account-card//5585d65b9d8c575e5a1f.gogole-g-logo.svg"},4515:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/components/account-card//25a37606f64ef10ff60e.wp-logo.svg"},8465:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/components/free-listings/configure-product-listings/hero//0cab27878b485c59ab37.google-free-listing.svg"},221:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/dashboard/campaign-creation-success-guide//c4325f35cdc65f85a7c1.header.svg"},4802:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/benefits-card//ff593be89bcb7ad1ab7e.image.png"},1704:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/customer-quotes-card//1ad852c48821e91bfd6e.img-quote.svg"},434:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/features-card//3905a197de7922d5b82a.img-dashboard.svg"},2454:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/features-card//563fd40c029bebb36783.img-free-listings.svg"},9648:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/features-card//c94ebde75361208ddf3a.img-product-promotion.svg"},4682:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/get-started-card//d7e2d04ea7d6535fecf8.image.svg"},5314:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/images//64742f6405be8486218c.google-logo.svg"},1393:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/product-feed/submission-success-guide//9a968634c60ce598aae3.woocommerce-logo.svg"},9196:function(e){"use strict";e.exports=window.React},2819:function(e){"use strict";e.exports=window.lodash},6292:function(e){"use strict";e.exports=window.moment},5736:function(e){"use strict";e.exports=window.wp.i18n},683:function(){},1285:function(){},5580:function(){}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.exports}__webpack_require__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=function(e,t){for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;__webpack_require__.g.importScripts&&(e=__webpack_require__.g.location+"");var t=__webpack_require__.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");n.length&&(e=n[n.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),__webpack_require__.p=e}();var __webpack_exports__={};!function(){"use strict";var e={};__webpack_require__.r(e),__webpack_require__.d(e,{Text:function(){return bi},block:function(){return _i},destructive:function(){return Ei},highlighterText:function(){return Ci},muted:function(){return $i},positive:function(){return wi},upperCase:function(){return ki}});var t={};__webpack_require__.r(t),__webpack_require__.d(t,{createAdsCampaign:function(){return od},deleteAdsCampaign:function(){return id},deleteShippingRates:function(){return Nu},deleteShippingTimes:function(){return Mu},disconnectAllAccounts:function(){return Uu},disconnectGoogleAccount:function(){return zu},disconnectGoogleAdsAccount:function(){return Hu},fetchAdsCampaigns:function(){return rd},fetchExistingGoogleAdsAccounts:function(){return Wu},fetchExistingGoogleMCAccounts:function(){return Bu},fetchGoogleAccount:function(){return Du},fetchGoogleAdsAccount:function(){return qu},fetchGoogleAdsAccountBillingStatus:function(){return Vu},fetchGoogleMCAccount:function(){return Gu},fetchJetpackAccount:function(){return Fu},fetchMCSetup:function(){return ld},fetchSettings:function(){return ju},fetchShippingRates:function(){return Pu},fetchShippingTimes:function(){return Ru},fetchTargetAudience:function(){return Xu},handleFetchError:function(){return Ou},receiveAdsAccount:function(){return ed},receiveGoogleAccountAccess:function(){return Lu},receiveGoogleAdsAccountBillingStatus:function(){return td},receiveGoogleMCContactInformation:function(){return Yu},receiveMCAccount:function(){return Ju},receiveMCIssues:function(){return gd},receiveMCProductFeed:function(){return pd},receiveMCProductStatistics:function(){return ud},receiveMCReviewRequest:function(){return dd},receiveMCSetup:function(){return cd},receiveReport:function(){return sd},requestPhoneVerificationCode:function(){return Qu},saveSettings:function(){return Iu},saveTargetAudience:function(){return nd},sendMCReviewRequest:function(){return md},updateAdsCampaign:function(){return ad},updateGoogleMCContactInformation:function(){return Ku},updateMCProductVisibility:function(){return fd},upsertShippingRates:function(){return Au},upsertShippingTimes:function(){return Tu},verifyPhoneNumber:function(){return Zu}});var n={};__webpack_require__.r(n),__webpack_require__.d(n,{getAdsCampaigns:function(){return Vd},getDashboardPerformance:function(){return eg},getExistingGoogleAdsAccounts:function(){return Bd},getExistingGoogleMCAccounts:function(){return Dd},getGoogleAccount:function(){return jd},getGoogleAccountAccess:function(){return Id},getGoogleAdsAccount:function(){return Ld},getGoogleAdsAccountBillingStatus:function(){return Gd},getGoogleMCAccount:function(){return Fd},getGoogleMCContactInformation:function(){return qd},getGoogleMCPhoneNumber:function(){return zd},getJetpackAccount:function(){return Md},getMCCountriesAndContinents:function(){return Hd},getMCIssues:function(){return Qd},getMCProductFeed:function(){return Zd},getMCProductStatistics:function(){return Yd},getMCReviewRequest:function(){return Kd},getMCSetup:function(){return Wd},getReport:function(){return Jd},getReportByApiQuery:function(){return Xd},getSettings:function(){return Td},getShippingRates:function(){return Nd},getShippingTimes:function(){return Rd},getTargetAudience:function(){return Ud}});var r={};__webpack_require__.r(r),__webpack_require__.d(r,{getAdsCampaigns:function(){return hg},getExistingGoogleAdsAccounts:function(){return gg},getExistingGoogleMCAccounts:function(){return cg},getGoogleAccount:function(){return ig},getGoogleAccountAccess:function(){return sg},getGoogleAdsAccount:function(){return ug},getGoogleAdsAccountBillingStatus:function(){return dg},getGoogleMCAccount:function(){return lg},getGoogleMCContactInformation:function(){return pg},getJetpackAccount:function(){return ag},getMCCountriesAndContinents:function(){return fg},getMCIssues:function(){return _g},getMCProductFeed:function(){return wg},getMCProductStatistics:function(){return vg},getMCReviewRequest:function(){return bg},getMCSetup:function(){return yg},getReportByApiQuery:function(){return $g},getSettings:function(){return og},getShippingRates:function(){return ng},getShippingTimes:function(){return rg},getTargetAudience:function(){return mg}});var o=__webpack_require__(5736),a=window.wp.hooks,i=window.wc.wcSettings,s=window.wp.element;function l(){return l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},l.apply(this,arguments)}function c(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var u=__webpack_require__(4184),d=__webpack_require__.n(u),g=(0,s.createContext)({}),p=function(){return(0,s.useContext)(g)};function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var m=__webpack_require__(9196),h=__webpack_require__.n(m),y=function(e){var t={};return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}},v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|inert|itemProp|itemScope|itemType|itemID|itemRef|on|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,b=y((function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}));function _(e,t){return _=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},_(e,t)}var w=function(){function e(e){this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.before=null}var t=e.prototype;return t.insert=function(e){if(this.ctr%(this.isSpeedy?65e3:1)==0){var t,n=function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t}(this);t=0===this.tags.length?this.before:this.tags[this.tags.length-1].nextSibling,this.container.insertBefore(n,t),this.tags.push(n)}var r=this.tags[this.tags.length-1];if(this.isSpeedy){var o=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(r);try{var a=105===e.charCodeAt(1)&&64===e.charCodeAt(0);o.insertRule(e,a?0:o.cssRules.length)}catch(e){}}else r.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){return e.parentNode.removeChild(e)})),this.tags=[],this.ctr=0},e}(),E=function(e){function t(e,r,l,c,g){for(var p,f,m,h,_,E=0,$=0,C=0,k=0,S=0,R=0,M=m=p=0,I=0,F=0,D=0,L=0,G=l.length,B=G-1,q="",z="",H="",U="";I<G;){if(f=l.charCodeAt(I),I===B&&0!==$+k+C+E&&(0!==$&&(f=47===$?10:47),k=C=E=0,G++,B++),0===$+k+C+E){if(I===B&&(0<F&&(q=q.replace(d,"")),0<q.trim().length)){switch(f){case 32:case 9:case 59:case 13:case 10:break;default:q+=l.charAt(I)}f=59}switch(f){case 123:for(p=(q=q.trim()).charCodeAt(0),m=1,L=++I;I<G;){switch(f=l.charCodeAt(I)){case 123:m++;break;case 125:m--;break;case 47:switch(f=l.charCodeAt(I+1)){case 42:case 47:e:{for(M=I+1;M<B;++M)switch(l.charCodeAt(M)){case 47:if(42===f&&42===l.charCodeAt(M-1)&&I+2!==M){I=M+1;break e}break;case 10:if(47===f){I=M+1;break e}}I=M}}break;case 91:f++;case 40:f++;case 34:case 39:for(;I++<B&&l.charCodeAt(I)!==f;);}if(0===m)break;I++}if(m=l.substring(L,I),0===p&&(p=(q=q.replace(u,"").trim()).charCodeAt(0)),64===p){switch(0<F&&(q=q.replace(d,"")),f=q.charCodeAt(1)){case 100:case 109:case 115:case 45:F=r;break;default:F=N}if(L=(m=t(r,F,m,f,g+1)).length,0<T&&(_=s(3,m,F=n(N,q,D),r,O,x,L,f,g,c),q=F.join(""),void 0!==_&&0===(L=(m=_.trim()).length)&&(f=0,m="")),0<L)switch(f){case 115:q=q.replace(w,i);case 100:case 109:case 45:m=q+"{"+m+"}";break;case 107:m=(q=q.replace(y,"$1 $2"))+"{"+m+"}",m=1===A||2===A&&a("@"+m,3)?"@-webkit-"+m+"@"+m:"@"+m;break;default:m=q+m,112===c&&(z+=m,m="")}else m=""}else m=t(r,n(r,q,D),m,c,g+1);H+=m,m=D=F=M=p=0,q="",f=l.charCodeAt(++I);break;case 125:case 59:if(1<(L=(q=(0<F?q.replace(d,""):q).trim()).length))switch(0===M&&(p=q.charCodeAt(0),45===p||96<p&&123>p)&&(L=(q=q.replace(" ",":")).length),0<T&&void 0!==(_=s(1,q,r,e,O,x,z.length,c,g,c))&&0===(L=(q=_.trim()).length)&&(q="\0\0"),p=q.charCodeAt(0),f=q.charCodeAt(1),p){case 0:break;case 64:if(105===f||99===f){U+=q+l.charAt(I);break}default:58!==q.charCodeAt(L-1)&&(z+=o(q,p,f,q.charCodeAt(2)))}D=F=M=p=0,q="",f=l.charCodeAt(++I)}}switch(f){case 13:case 10:47===$?$=0:0===1+p&&107!==c&&0<q.length&&(F=1,q+="\0"),0<T*j&&s(0,q,r,e,O,x,z.length,c,g,c),x=1,O++;break;case 59:case 125:if(0===$+k+C+E){x++;break}default:switch(x++,h=l.charAt(I),f){case 9:case 32:if(0===k+E+$)switch(S){case 44:case 58:case 9:case 32:h="";break;default:32!==f&&(h=" ")}break;case 0:h="\\0";break;case 12:h="\\f";break;case 11:h="\\v";break;case 38:0===k+$+E&&(F=D=1,h="\f"+h);break;case 108:if(0===k+$+E+P&&0<M)switch(I-M){case 2:112===S&&58===l.charCodeAt(I-3)&&(P=S);case 8:111===R&&(P=R)}break;case 58:0===k+$+E&&(M=I);break;case 44:0===$+C+k+E&&(F=1,h+="\r");break;case 34:case 39:0===$&&(k=k===f?0:0===k?f:k);break;case 91:0===k+$+C&&E++;break;case 93:0===k+$+C&&E--;break;case 41:0===k+$+E&&C--;break;case 40:0===k+$+E&&(0===p&&(2*S+3*R==533||(p=1)),C++);break;case 64:0===$+C+k+E+M+m&&(m=1);break;case 42:case 47:if(!(0<k+E+C))switch($){case 0:switch(2*f+3*l.charCodeAt(I+1)){case 235:$=47;break;case 220:L=I,$=42}break;case 42:47===f&&42===S&&L+2!==I&&(33===l.charCodeAt(L+2)&&(z+=l.substring(L,I+1)),h="",$=0)}}0===$&&(q+=h)}R=S,S=f,I++}if(0<(L=z.length)){if(F=r,0<T&&void 0!==(_=s(2,z,F,e,O,x,L,c,g,c))&&0===(z=_).length)return U+z+H;if(z=F.join(",")+"{"+z+"}",0!=A*P){switch(2!==A||a(z,2)||(P=0),P){case 111:z=z.replace(b,":-moz-$1")+z;break;case 112:z=z.replace(v,"::-webkit-input-$1")+z.replace(v,"::-moz-$1")+z.replace(v,":-ms-input-$1")+z}P=0}}return U+z+H}function n(e,t,n){var o=t.trim().split(m);t=o;var a=o.length,i=e.length;switch(i){case 0:case 1:var s=0;for(e=0===i?"":e[0]+" ";s<a;++s)t[s]=r(e,t[s],n).trim();break;default:var l=s=0;for(t=[];s<a;++s)for(var c=0;c<i;++c)t[l++]=r(e[c]+" ",o[s],n).trim()}return t}function r(e,t,n){var r=t.charCodeAt(0);switch(33>r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(h,"$1"+e.trim());case 58:return e.trim()+t.replace(h,"$1"+e.trim());default:if(0<1*n&&0<t.indexOf("\f"))return t.replace(h,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,n,r){var i=e+";",s=2*t+3*n+4*r;if(944===s){e=i.indexOf(":",9)+1;var l=i.substring(e,i.length-1).trim();return l=i.substring(0,e).trim()+l+";",1===A||2===A&&a(l,1)?"-webkit-"+l+l:l}if(0===A||2===A&&!a(i,1))return i;switch(s){case 1015:return 97===i.charCodeAt(10)?"-webkit-"+i+i:i;case 951:return 116===i.charCodeAt(3)?"-webkit-"+i+i:i;case 963:return 110===i.charCodeAt(5)?"-webkit-"+i+i:i;case 1009:if(100!==i.charCodeAt(4))break;case 969:case 942:return"-webkit-"+i+i;case 978:return"-webkit-"+i+"-moz-"+i+i;case 1019:case 983:return"-webkit-"+i+"-moz-"+i+"-ms-"+i+i;case 883:if(45===i.charCodeAt(8))return"-webkit-"+i+i;if(0<i.indexOf("image-set(",11))return i.replace(S,"$1-webkit-$2")+i;break;case 932:if(45===i.charCodeAt(4))switch(i.charCodeAt(5)){case 103:return"-webkit-box-"+i.replace("-grow","")+"-webkit-"+i+"-ms-"+i.replace("grow","positive")+i;case 115:return"-webkit-"+i+"-ms-"+i.replace("shrink","negative")+i;case 98:return"-webkit-"+i+"-ms-"+i.replace("basis","preferred-size")+i}return"-webkit-"+i+"-ms-"+i+i;case 964:return"-webkit-"+i+"-ms-flex-"+i+i;case 1023:if(99!==i.charCodeAt(8))break;return"-webkit-box-pack"+(l=i.substring(i.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+i+"-ms-flex-pack"+l+i;case 1005:return p.test(i)?i.replace(g,":-webkit-")+i.replace(g,":-moz-")+i:i;case 1e3:switch(t=(l=i.substring(13).trim()).indexOf("-")+1,l.charCodeAt(0)+l.charCodeAt(t)){case 226:l=i.replace(_,"tb");break;case 232:l=i.replace(_,"tb-rl");break;case 220:l=i.replace(_,"lr");break;default:return i}return"-webkit-"+i+"-ms-"+l+i;case 1017:if(-1===i.indexOf("sticky",9))break;case 975:switch(t=(i=e).length-10,s=(l=(33===i.charCodeAt(t)?i.substring(0,t):i).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|l.charCodeAt(7))){case 203:if(111>l.charCodeAt(8))break;case 115:i=i.replace(l,"-webkit-"+l)+";"+i;break;case 207:case 102:i=i.replace(l,"-webkit-"+(102<s?"inline-":"")+"box")+";"+i.replace(l,"-webkit-"+l)+";"+i.replace(l,"-ms-"+l+"box")+";"+i}return i+";";case 938:if(45===i.charCodeAt(5))switch(i.charCodeAt(6)){case 105:return l=i.replace("-items",""),"-webkit-"+i+"-webkit-box-"+l+"-ms-flex-"+l+i;case 115:return"-webkit-"+i+"-ms-flex-item-"+i.replace($,"")+i;default:return"-webkit-"+i+"-ms-flex-line-pack"+i.replace("align-content","").replace($,"")+i}break;case 973:case 989:if(45!==i.charCodeAt(3)||122===i.charCodeAt(4))break;case 931:case 953:if(!0===k.test(e))return 115===(l=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,n,r).replace(":fill-available",":stretch"):i.replace(l,"-webkit-"+l)+i.replace(l,"-moz-"+l.replace("fill-",""))+i;break;case 962:if(i="-webkit-"+i+(102===i.charCodeAt(5)?"-ms-"+i:"")+i,211===n+r&&105===i.charCodeAt(13)&&0<i.indexOf("transform",10))return i.substring(0,i.indexOf(";",27)+1).replace(f,"$1-webkit-$2")+i}return i}function a(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10);return n=e.substring(n+1,e.length-1),M(2!==t?r:r.replace(C,"$1"),n,t)}function i(e,t){var n=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(E," or ($1)").substring(4):"("+t+")"}function s(e,t,n,r,o,a,i,s,l,u){for(var d,g=0,p=t;g<T;++g)switch(d=R[g].call(c,e,p,n,r,o,a,i,s,l,u)){case void 0:case!1:case!0:case null:break;default:p=d}if(p!==t)return p}function l(e){return void 0!==(e=e.prefix)&&(M=null,e?"function"!=typeof e?A=1:(A=2,M=e):A=0),l}function c(e,n){var r=e;if(33>r.charCodeAt(0)&&(r=r.trim()),r=[r],0<T){var o=s(-1,n,r,r,O,x,0,0,0,0);void 0!==o&&"string"==typeof o&&(n=o)}var a=t(N,r,n,0,0);return 0<T&&void 0!==(o=s(-2,a,r,r,O,x,a.length,0,0,0))&&(a=o),P=0,x=O=1,a}var u=/^\0+/g,d=/[\0\r\f]/g,g=/: */g,p=/zoo|gra/,f=/([,: ])(transform)/g,m=/,\r+?/g,h=/([\t\r\n ])*\f?&/g,y=/@(k\w+)\s*(\S*)\s*/,v=/::(place)/g,b=/:(read-only)/g,_=/[svh]\w+-[tblr]{2}/,w=/\(\s*(.*)\s*\)/g,E=/([\s\S]*?);/g,$=/-self|flex-/g,C=/[^]*?(:[rp][el]a[\w-]+)[^]*/,k=/stretch|:\s*\w+\-(?:conte|avail)/,S=/([^-])(image-set\()/,x=1,O=1,P=0,A=1,N=[],R=[],T=0,M=null,j=0;return c.use=function e(t){switch(t){case void 0:case null:T=R.length=0;break;default:if("function"==typeof t)R[T++]=t;else if("object"==typeof t)for(var n=0,r=t.length;n<r;++n)e(t[n]);else j=0|!!t}return e},c.set=l,void 0!==e&&l(e),c},$="/*|*/";function C(e){e&&k.current.insert(e+"}")}var k={current:null},S=function(e,t,n,r,o,a,i,s,l,c){switch(e){case 1:switch(t.charCodeAt(0)){case 64:return k.current.insert(t+";"),"";case 108:if(98===t.charCodeAt(2))return""}break;case 2:if(0===s)return t+$;break;case 3:switch(s){case 102:case 112:return k.current.insert(n[0]+t),"";default:return t+(0===c?$:"")}case-2:t.split("/*|*/}").forEach(C)}},x=function(e){void 0===e&&(e={});var t,n=e.key||"css";void 0!==e.prefix&&(t={prefix:e.prefix});var r,o=new E(t),a={};r=e.container||document.head;var i,s=document.querySelectorAll("style[data-emotion-"+n+"]");Array.prototype.forEach.call(s,(function(e){e.getAttribute("data-emotion-"+n).split(" ").forEach((function(e){a[e]=!0})),e.parentNode!==r&&r.appendChild(e)})),o.use(e.stylisPlugins)(S),i=function(e,t,n,r){var a=t.name;k.current=n,o(e,t.styles),r&&(l.inserted[a]=!0)};var l={key:n,sheet:new w({key:n,container:r,nonce:e.nonce,speedy:e.speedy}),nonce:e.nonce,inserted:a,registered:{},insert:i};return l},O=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)},P={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},A=/[A-Z]|^ms/g,N=/_EMO_([^_]+?)_([^]*?)_EMO_/g,R=function(e){return 45===e.charCodeAt(1)},T=function(e){return null!=e&&"boolean"!=typeof e},M=y((function(e){return R(e)?e:e.replace(A,"-$&").toLowerCase()})),j=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(N,(function(e,t,n){return F={name:t,styles:n,next:F},t}))}return 1===P[e]||R(e)||"number"!=typeof t||0===t?t:t+"px"};function I(e,t,n,r){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return F={name:n.name,styles:n.styles,next:F},n.name;if(void 0!==n.styles){var o=n.next;if(void 0!==o)for(;void 0!==o;)F={name:o.name,styles:o.styles,next:F},o=o.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o<n.length;o++)r+=I(e,t,n[o],!1);else for(var a in n){var i=n[a];if("object"!=typeof i)null!=t&&void 0!==t[i]?r+=a+"{"+t[i]+"}":T(i)&&(r+=M(a)+":"+j(a,i)+";");else if(!Array.isArray(i)||"string"!=typeof i[0]||null!=t&&void 0!==t[i[0]]){var s=I(e,t,i,!1);switch(a){case"animation":case"animationName":r+=M(a)+":"+s+";";break;default:r+=a+"{"+s+"}"}}else for(var l=0;l<i.length;l++)T(i[l])&&(r+=M(a)+":"+j(a,i[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var a=F,i=n(e);return F=a,I(e,t,i,r)}}if(null==t)return n;var s=t[n];return void 0===s||r?n:s}var F,D=/label:\s*([^\s;\n{]+)\s*;/g,L=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var r=!0,o="";F=void 0;var a=e[0];null==a||void 0===a.raw?(r=!1,o+=I(n,t,a,!1)):o+=a[0];for(var i=1;i<e.length;i++)o+=I(n,t,e[i],46===o.charCodeAt(o.length-1)),r&&(o+=a[i]);D.lastIndex=0;for(var s,l="";null!==(s=D.exec(o));)l+="-"+s[1];return{name:O(o)+l,styles:o,next:F}},G=(Object.prototype.hasOwnProperty,(0,m.createContext)("undefined"!=typeof HTMLElement?x():null)),B=(0,m.createContext)({}),q=(G.Provider,function(e){var t=function(t,n){return(0,m.createElement)(G.Consumer,null,(function(r){return e(t,r,n)}))};return(0,m.forwardRef)(t)});function z(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]):r+=n+" "})),r}var H=function(e,t,n){var r=e.key+"-"+t.name;if(!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles),void 0===e.inserted[t.name]){var o=t;do{e.insert("."+r,o,e.sheet,!0),o=o.next}while(void 0!==o)}},U=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return L(t)},V=(m.Component,function e(t){for(var n=t.length,r=0,o="";r<n;r++){var a=t[r];if(null!=a){var i=void 0;switch(typeof a){case"boolean":break;case"object":if(Array.isArray(a))i=e(a);else for(var s in i="",a)a[s]&&s&&(i&&(i+=" "),i+=s);break;default:i=a}i&&(o&&(o+=" "),o+=i)}}return o});function W(e,t,n){var r=[],o=z(e,r,n);return r.length<2?n:o+t(r)}q((function(e,t){return(0,m.createElement)(B.Consumer,null,(function(n){var r=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered);return H(t,o,!1),t.key+"-"+o.name},o={css:r,cx:function(){for(var e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];return W(t.registered,r,V(n))},theme:n};return e.children(o)}))}));var Y=b,K=function(e){return"theme"!==e&&"innerRef"!==e},Q=function(e){return"string"==typeof e&&e.charCodeAt(0)>96?Y:K};function Z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function X(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Z(n,!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Z(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var J=function e(t,n){var r,o,a;void 0!==n&&(r=n.label,a=n.target,o=t.__emotion_forwardProp&&n.shouldForwardProp?function(e){return t.__emotion_forwardProp(e)&&n.shouldForwardProp(e)}:n.shouldForwardProp);var i=t.__emotion_real===t,s=i&&t.__emotion_base||t;"function"!=typeof o&&i&&(o=t.__emotion_forwardProp);var l=o||Q(s),c=!l("as");return function(){var u=arguments,d=i&&void 0!==t.__emotion_styles?t.__emotion_styles.slice(0):[];if(void 0!==r&&d.push("label:"+r+";"),null==u[0]||void 0===u[0].raw)d.push.apply(d,u);else{d.push(u[0][0]);for(var g=u.length,p=1;p<g;p++)d.push(u[p],u[0][p])}var f=q((function(e,t,n){return(0,m.createElement)(B.Consumer,null,(function(r){var i=c&&e.as||s,u="",g=[],p=e;if(null==e.theme){for(var f in p={},e)p[f]=e[f];p.theme=r}"string"==typeof e.className?u=z(t.registered,g,e.className):null!=e.className&&(u=e.className+" ");var h=L(d.concat(g),t.registered,p);H(t,h,"string"==typeof i),u+=t.key+"-"+h.name,void 0!==a&&(u+=" "+a);var y=c&&void 0===o?Q(i):l,v={};for(var b in e)c&&"as"===b||y(b)&&(v[b]=e[b]);return v.className=u,v.ref=n||e.innerRef,(0,m.createElement)(i,v)}))}));return f.displayName=void 0!==r?r:"Styled("+("string"==typeof s?s:s.displayName||s.name||"Component")+")",f.defaultProps=t.defaultProps,f.__emotion_real=f,f.__emotion_base=s,f.__emotion_styles=d,f.__emotion_forwardProp=o,Object.defineProperty(f,"toString",{value:function(){return"."+a}}),f.withComponent=function(t,r){return e(t,void 0!==r?X({},n||{},{},r):n).apply(void 0,d)},f}},ee={name:"8kj89b",styles:"flex-direction:row-reverse;"},te=J("div",{target:"eboqfv50",label:"Flex"})("box-sizing:border-box;display:flex;width:100%;",(function(e){var t=e.align;return U({alignItems:{top:"flex-start",bottom:"flex-end"}[t]||t},"")})," ",(function(e){var t=e.justify,n=e.isReversed,r={left:"flex-start",right:"flex-end"},o=r[t]||t;return n&&r[t]&&(o="left"===t?r.right:r.left),U({justifyContent:o},"")})," ",(function(e){var t=e.gap,n=e.isReversed,r="number"==typeof t?4*t:4,o="margin-".concat(n?"left":"right");return U("> *{",o,":",r,"px;&:last-child{",o,":0;}}")})," ",(function(e){return e.isReversed?ee:""}),""),ne=J("div",{target:"eboqfv51",label:"Item"})({name:"13luw5d",styles:"box-sizing:border-box;min-width:0;max-width:100%;"}),re=J(ne,{target:"eboqfv52",label:"Block"})({name:"1rr4qq7",styles:"flex:1;"}),oe=(0,s.forwardRef)((function(e,t){var n=e.align,r=void 0===n?"center":n,o=e.className,a=e.gap,i=void 0===a?2:a,u=e.justify,g=void 0===u?"space-between":u,p=e.isReversed,f=void 0!==p&&p,m=c(e,["align","className","gap","justify","isReversed"]),h=d()("components-flex",o);return(0,s.createElement)(te,l({},m,{align:r,className:h,ref:t,gap:i,justify:g,isReversed:f}))})),ae=oe,ie=__webpack_require__(2819),se=__webpack_require__(7621),le=__webpack_require__.n(se);function ce(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ue(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ce(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ce(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var de={black:"#000",white:"#fff"},ge={blue:{medium:{focus:"#007cba",focusDark:"#fff"}},gray:{900:"#1e1e1e",700:"#757575",600:"#949494",400:"#ccc",200:"#ddd",100:"#f0f0f0"},darkGray:{primary:"#1e1e1e"},mediumGray:{text:"#757575"},lightGray:{ui:"#949494",secondary:"#ccc",tertiary:"#e7e8e9"}},pe={900:"#191e23",800:"#23282d",700:"#32373c",600:"#40464d",500:"#555d66",400:"#606a73",300:"#6c7781",200:"#7e8993",150:"#8d96a0",100:"#8f98a1",placeholder:Ee(ge.gray[900],.62)},fe={900:Ee("#000510",.9),800:Ee("#00000a",.85),700:Ee("#06060b",.8),600:Ee("#000913",.75),500:Ee("#0a1829",.7),400:Ee("#0a1829",.65),300:Ee("#0e1c2e",.62),200:Ee("#162435",.55),100:Ee("#223443",.5),backgroundFill:Ee(pe[700],.7)},me={900:Ee("#304455",.45),800:Ee("#425863",.4),700:Ee("#667886",.35),600:Ee("#7b86a2",.3),500:Ee("#9197a2",.25),400:Ee("#95959c",.2),300:Ee("#829493",.15),200:Ee("#8b8b96",.1),100:Ee("#747474",.05)},he={900:"#a2aab2",800:"#b5bcc2",700:"#ccd0d4",600:"#d7dade",500:"#e2e4e7",400:"#e8eaeb",300:"#edeff0",200:"#f3f4f5",100:"#f8f9f9",placeholder:Ee(de.white,.65)},ye={900:Ee(de.white,.5),800:Ee(de.white,.45),700:Ee(de.white,.4),600:Ee(de.white,.35),500:Ee(de.white,.3),400:Ee(de.white,.25),300:Ee(de.white,.2),200:Ee(de.white,.15),100:Ee(de.white,.1),backgroundFill:Ee(he[300],.8)},ve={wordpress:{700:"#00669b"},dark:{900:"#0071a1"},medium:{900:"#006589",800:"#00739c",700:"#007fac",600:"#008dbe",500:"#00a0d2",400:"#33b3db",300:"#66c6e4",200:"#bfe7f3",100:"#e5f5fa",highlight:"#b3e7fe",focus:"#007cba"}},be={theme:"var( --wp-admin-theme-color, ".concat(ve.wordpress[700],")"),themeDark10:"var( --wp-admin-theme-color-darker-10, ".concat(ve.medium.focus,")")},_e={theme:be.theme,background:de.white,backgroundDisabled:he[200],border:ge.gray[700],borderFocus:be.themeDark10,borderDisabled:ge.gray[400],borderLight:ge.gray[200],label:pe[500],textDisabled:pe[150],textDark:de.white,textLight:de.black},we=ue(ue({},de),{},{darkGray:(0,ie.merge)({},pe,ge.darkGray),darkOpacity:fe,darkOpacityLight:me,mediumGray:ge.mediumGray,gray:ge.gray,lightGray:(0,ie.merge)({},he,ge.lightGray),lightGrayLight:ye,blue:(0,ie.merge)({},ve,ge.blue),alert:{yellow:"#f0b849",red:"#d94f4f",green:"#4ab866"},admin:be,ui:_e});function Ee(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=le()(e).toRgb(),r=n.r,o=n.g,a=n.b;return"rgba(".concat(r,", ").concat(o,", ").concat(a,", ").concat(t,")")}function $e(e){return(0,ie.get)(we,e,"#000")}function Ce(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;return isNaN(e)?"".concat(8,"px"):"".concat(8*e,"px")}var ke={borderColor:$e("lightGray.500"),borderRadius:"3px",backgroundShady:$e("lightGray.200")},Se=ke.borderColor,xe=ke.borderRadius,Oe=ke.backgroundShady,Pe=J("div",{target:"e1q7k77g0",label:"CardUI"})("background:",$e("white"),";box-sizing:border-box;border-radius:",xe,";border:1px solid ",Se,";",je,";&.is-elevated{box-shadow:0px 1px 3px 0px rgba( 0,0,0,0.2 ),0px 1px 1px 0px rgba( 0,0,0,0.14 ),0px 2px 1px -1px rgba( 0,0,0,0.12 );}"),Ae=J(ae,{target:"e1q7k77g1",label:"HeaderUI"})("border-bottom:1px solid ",Se,";border-top-left-radius:",xe,";border-top-right-radius:",xe,";box-sizing:border-box;&:last-child{border-bottom:none;}",Me,";",je,";",Ie,";"),Ne=(J("div",{target:"e1q7k77g2",label:"MediaUI"})("box-sizing:border-box;overflow:hidden;& > img,& > iframe{display:block;height:auto;max-width:100%;width:100%;}&:first-of-type{border-top-left-radius:",xe,";border-top-right-radius:",xe,";}&:last-of-type{border-bottom-left-radius:",xe,";border-bottom-right-radius:",xe,";}"),J("div",{target:"e1q7k77g3",label:"BodyUI"})("box-sizing:border-box;",(function(){return"\n\t\t&.is-size {\n\t\t\t&-large {\n\t\t\t\tpadding: ".concat(Ce(3)," ").concat(Ce(4),";\n\t\t\t}\n\t\t\t&-medium {\n\t\t\t\tpadding: ").concat(Ce(2)," ").concat(Ce(3),";\n\t\t\t}\n\t\t\t&-small {\n\t\t\t\tpadding: ").concat(Ce(2),";\n\t\t\t}\n\t\t\t&-extraSmall {\n\t\t\t\tpadding: ").concat(Ce(1),";\n\t\t\t}\n\t\t}\n\t")}),";",Ie,";")),Re=J(ae,{target:"e1q7k77g4",label:"FooterUI"})("border-top:1px solid ",Se,";border-bottom-left-radius:",xe,";border-bottom-right-radius:",xe,";box-sizing:border-box;&:first-of-type{border-top:none;}",Me,";",je,";",Ie,";"),Te=J("hr",{target:"e1q7k77g5",label:"DividerUI"})("all:unset;border-top:1px solid ",Se,";box-sizing:border-box;display:block;height:0;width:100%;");function Me(){return"\n\t\t&.is-size {\n\t\t\t&-large {\n\t\t\t\tpadding: ".concat(Ce(3)," ").concat(Ce(4),";\n\t\t\t}\n\t\t\t&-medium {\n\t\t\t\tpadding: ").concat(Ce(2)," ").concat(Ce(3),";\n\t\t\t}\n\t\t\t&-small {\n\t\t\t\tpadding: ").concat(Ce(2),";\n\t\t\t}\n\t\t\t&-extraSmall {\n\t\t\t\tpadding: ").concat(Ce(1),";\n\t\t\t}\n\t\t}\n\t")}function je(){return"\n\t\t&.is-borderless {\n\t\t\tborder: none;\n\t\t}\n\t"}function Ie(){return"\n\t\t&.is-shady {\n\t\t\tbackground: ".concat(Oe,";\n\t\t}\n\t")}function Fe(e){var t=e.className,n=e.isBorderless,r=e.isElevated,o=e.size,a=c(e,["className","isBorderless","isElevated","size"]),i=g.Provider,u={isBorderless:n,isElevated:r,size:o},p=d()("components-card",n&&"is-borderless",r&&"is-elevated",o&&"is-size-".concat(o),t);return(0,s.createElement)(i,{value:u},(0,s.createElement)(Pe,l({},a,{className:p})))}Fe.defaultProps={isBorderless:!1,isElevated:!1,size:"medium"};var De=Fe;function Le(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ge(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Le(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Be={isShady:!1,size:"medium"},qe=function(e){var t=e.className,n=e.isShady,r=c(e,["className","isShady"]),o=Ge(Ge(Ge({},Be),p()),e).size,a=d()("components-card__body",n&&"is-shady",o&&"is-size-".concat(o),t);return(0,s.createElement)(Ne,l({},r,{className:a}))},ze=(0,s.forwardRef)((function(e,t){var n=e.className,r=c(e,["className"]),o=d()("components-flex__item",n);return(0,s.createElement)(ne,l({},r,{className:o,ref:t}))}));function He(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}var Ue=U;function Ve(){var e=He(["\n\t","\n\t","\n"]);return Ve=function(){return e},e}function We(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return We=function(){return e},e}function Ye(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Ye=function(){return e},e}function Ke(){var e=He(["\n\t\t\t\t","\n\t\t\t"]);return Ke=function(){return e},e}function Qe(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Qe=function(){return e},e}function Ze(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Ze=function(){return e},e}function Xe(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Xe=function(){return e},e}function Je(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Je=function(){return e},e}function et(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return et=function(){return e},e}var tt="font-weight: 400;",nt="font-weight: 600;",rt="\n ".concat(tt,"\n"),ot="\n\tfont-size: 32px;\n\tline-height: 40px;\n",at="\n\tfont-size: 24px;\n\tline-height: 32px;\n",it="\n\tfont-size: 20px;\n\tline-height: 28px;\n",st="\n\t".concat(nt,"\n\tfont-size: 14px;\n\tline-height: 20px;\n"),lt="\n\tfont-size: 16px;\n\tline-height: 24px;\n",ct="\n\tfont-size: 14px;\n\tline-height: 20px;\n",ut="\n\t".concat(tt,"\n"),dt="\n\tfont-size: 16px;\n\tline-height: 24px;\n",gt="\n\tfont-size: 14px;\n\tline-height: 20px;\n",pt="\n ".concat(nt,"\n font-size: 14px;\n line-height: 20px;\n"),ft="\n\t".concat(tt,"\n\tfont-size: 12px;\n\tline-height: 16px;\n"),mt="\n\t".concat(nt,"\n\tfont-size: 12px;\n\tline-height: 16px;\n"),ht="\n\t".concat("font-weight: 500;","\n\tfont-size: 11px;\n\tline-height: 1.4;\n\ttext-transform: uppercase;\n\tcolor: ").concat(ge.gray[700],"\n"),yt=function(e){return Ue(Ve(),'font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,\nOxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;',function(){switch(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"body"){case"title.large":return Ue(et(),rt,ot);case"title.medium":return Ue(Je(),rt,at);case"title.small":return Ue(Xe(),rt,it);case"subtitle":return Ue(Ze(),st,lt);case"subtitle.small":return Ue(Qe(),st,ct);case"body":return Ue(Ke(),ut);case"body.large":return Ue(Ye(),ut,dt);case"body.small":return Ue(We(),ut,gt);case"button":return pt;case"caption":return ft;case"label":return mt;case"sectionheading":return ht}}(e.variant))};function vt(e){if(Array.isArray(e))return e}function bt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function _t(e,t){if(e){if("string"==typeof e)return bt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?bt(e,t):void 0}}function wt(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Et(e,t){return vt(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],_n=!0,i=!1;try{for(n=n.call(e);!(_n=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);_n=!0);}catch(e){i=!0,o=e}finally{try{_n||null==n.return||n.return()}finally{if(i)throw o}}return a}}(e,t)||_t(e,t)||wt()}var $t=ie.isArray,Ct=ie.isBoolean,kt=ie.isDate,St=ie.isEmpty,xt=ie.isFunction,Ot=ie.isMap,Pt=ie.isNaN,At=ie.isNil,Nt=ie.isNull,Rt=ie.isNumber,Tt=ie.isObject,Mt=ie.isObjectLike,jt=ie.isPlainObject,It=ie.isRegExp,Ft=ie.isSet,Dt=ie.isString,Lt=ie.isSymbol,Gt=ie.isUndefined,Bt=ie.isWeakMap,qt=ie.isWeakSet,zt={blob:function(e){return e instanceof Blob},defined:function(e){return!At(e)},file:function(e){return e instanceof File},numeric:function(e){var t="string"==typeof e?e.replace(/,/g,""):e;return!Pt(parseFloat(t))&&!Pt(Number(t))&&isFinite(t)&&"[object array]"!==Object.prototype.toString.call(t).toLowerCase()},numericZero:function(e){return 0===e||"0"===e},valueEmpty:function(e){return!zt.defined(e)||""===e},objectInterpolation:function(e){return jt(e)},array:$t,boolean:Ct,date:kt,empty:St,function:xt,map:Ot,nan:Pt,nil:At,number:Rt,null:Nt,object:Tt,objectLike:Mt,plainObject:jt,regExp:It,set:Ft,string:Dt,symbol:Lt,undefined:Gt,weakSet:qt,weakMap:Bt},Ht="data-system-ui-color-blind-mode",Ut='[data-system-ui-mode="dark"]',Vt='[data-system-ui-contrast-mode="high"]',Wt="["+Ht+'="true"]',Yt=""+Ut+Vt,Kt={baseStyles:{},config:{},darkModeConfig:{},highContrastModeConfig:{},darkHighContrastModeConfig:{},compilerOptions:void 0};function Qt(e){return"--wp-g2-"+(0,ie.kebabCase)(e)}function Zt(e){return"var("+Qt(e.toString())+")"}function Xt(e){void 0===e&&(e={});for(var t={},n=0,r=Object.entries(e);n<r.length;n++){var o=Et(r[n],2),a=o[0],i=o[1];t[""+Qt(a)]=null==i?void 0:i.toString()}return t}function Jt(e,t,n){void 0===e&&(e=":root"),void 0===t&&(t={}),void 0===n&&(n=!0);var r=Xt(t),o=[],a=!1;n?(o.push(e+" {"),a=!0):":root"!==e&&(o.push("&"+e+" {"),a=!0);for(var i=0,s=Object.entries(r);i<s.length;i++){var l=Et(s[i],2),c=l[0],u=l[1];zt.defined(u)&&!zt.boolean(u)&&o.push(c+": "+u+";")}return a&&o.push("}"),o.join("")}function en(e,t){return e.map((function(e){return"function"==typeof e?e(t):e}))}function tn(e,t){return t||(t=e.slice(0)),e.raw=t,e}var nn=function(e){return function(t){e.forEach((function(e){"function"==typeof e?e(t):null!=e&&(e.current=t)}))}};function rn(){var e=tn(["\n\t\t\t",";\n\t\t\t",";\n\t\t\t",";\n\t\t\t",";\n\t\t"]);return rn=function(){return e},e}var on={didInjectGlobal:!1};function an(e){var t=e.globalStyles,n=e.injectGlobal;if(!on.didInjectGlobal){var r=t.darkHighContrastModeCSSVariables,o=t.darkModeCSSVariables,a=t.globalCSSVariables,i=t.highContrastModeCSSVariables;n&&(n(rn(),a,o,i,r),on.didInjectGlobal=!0)}}function sn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var ln=(0,m.createContext)({isDark:null,isColorBlind:null,isReducedMotion:null,isHighContrast:null});var cn=window.wp.isShallowEqual,un=m.useLayoutEffect,dn=window.wp.data;function gn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?gn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):gn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var fn="g2/is-reduced-motion",mn={isReducedMotion:!1};(0,dn.registerStore)(fn,{reducer:function(e,t){return void 0===e&&(e=mn),"SET_IS_REDUCED_MOTION"===t.type?pn(pn({},e),{},{isReducedMotion:t.isReducedMotion}):e},actions:{setIsReducedMotion:function(e){return{type:"SET_IS_REDUCED_MOTION",isReducedMotion:e}}},selectors:{getIsReducedMotion:function(e){return e.isReducedMotion}}});var hn=fn;function yn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function vn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var bn=function(e,t){return"SET_THEME"===t.type?vn(vn({},e),{},{theme:t.theme}):e};function wn(){var e=tn(["",""]);return wn=function(){return e},e}function En(e){var t,n=e.injectGlobal,r=e.isGlobal,o=void 0===r||r,a=e.theme,i=void 0===a?{}:a,s=e.selector,l=void 0===s?":root":s,c=Et((void 0===t&&(t=""),(0,m.useReducer)(bn,{theme:t})),2),u=c[0].theme,d=c[1],g=(0,m.useRef)(),p=(0,m.useRef)(!1);if(!p.current&&o&&i){if("function"==typeof n)try{var f=Jt(l,i,o);n(wn(),f)}catch(e){}p.current=!0}return un((function(){if(!(g.current&&i&&(0,cn.isShallowEqualObjects)(g.current,i))){g.current=i;var e=function(){var e="StyleSystemThemeProviderStyleNode",t=document.getElementById(e);if(t)return t;(t=document.createElement("style")).id=e,t.setAttribute("data-g2-theme-provider","theme");var n=document.querySelector("head");return n&&n.appendChild(t),t}(),t=Jt(l,i,o);o?e&&(e.innerHTML=t):d(function(e){return{type:"SET_THEME",theme:e}}(t))}}),[n,o,d,i]),u}function $n(){var e=tn(["\n\t\t\t","\n\t\t\t","\n\t\t\t","\n\t\t\t","\n\t\t"]);return $n=function(){return e},e}function Cn(e,t){var n=e.children,r=e.compiler,o=e.className,a=e.isGlobal,i=void 0!==a&&a,s=e.globalStyles,l=e.isDark,u=e.isColorBlind,d=e.isReducedMotion,g=e.isHighContrast,p=e.theme,y=void 0===p?{}:p,v=e.darkTheme,b=void 0===v?{}:v,_=e.highContrastTheme,w=void 0===_?{}:_,E=e.darkHighContrastTheme,$=void 0===E?{}:E,C=c(e,["children","compiler","className","isGlobal","globalStyles","isDark","isColorBlind","isReducedMotion","isHighContrast","theme","darkTheme","highContrastTheme","darkHighContrastTheme"]),k=r.css,S=r.cx,x=r.injectGlobal;an({injectGlobal:x,globalStyles:s});var O=(0,m.useRef)(),P=En({injectGlobal:x,isGlobal:i,theme:y,selector:":root"}),A=En({injectGlobal:x,isGlobal:i,theme:b,selector:(0,ie.repeat)(Ut,3)}),N=En({injectGlobal:x,isGlobal:i,theme:w,selector:(0,ie.repeat)(Vt,3)}),R=En({injectGlobal:x,isGlobal:i,theme:$,selector:(0,ie.repeat)(Yt,3)});!function(e){var t=e.isColorBlind,n=e.isGlobal,r=void 0===n||n,o=e.ref;(0,m.useEffect)((function(){if(zt.defined(t)){var e=document.documentElement;!r&&o.current&&(e=o.current),t?e.setAttribute("data-system-ui-color-blind-mode","true"):e.setAttribute("data-system-ui-color-blind-mode","false")}}),[r,t,o])}({isColorBlind:u,isGlobal:i,ref:O}),function(e){var t=e.isDark,n=e.isGlobal,r=void 0===n||n,o=e.ref;(0,m.useEffect)((function(){if(zt.defined(t)){var e=document.documentElement;!r&&o.current&&(e=o.current),t?e.setAttribute("data-system-ui-mode","dark"):e.setAttribute("data-system-ui-mode","light")}}),[r,t,o])}({isDark:l,isGlobal:i,ref:O}),function(e){var t=e.isGlobal,n=void 0===t||t,r=e.isHighContrast,o=e.ref;(0,m.useEffect)((function(){if(zt.defined(r)){var e=document.documentElement;!n&&o.current&&(e=o.current),r?e.setAttribute("data-system-ui-contrast-mode","high"):e.setAttribute("data-system-ui-contrast-mode","normal")}}),[n,r,o])}({isGlobal:i,isHighContrast:g,ref:O}),function(e){var t=e.isGlobal,n=void 0===t||t,r=e.isReducedMotion,o=e.ref,a=Et([(0,dn.useSelect)((function(e){return e(hn).getIsReducedMotion()})),(0,dn.useDispatch)(hn).setIsReducedMotion],2)[1];(0,m.useEffect)((function(){n&&a(!!r)}),[n,r,a]),(0,m.useEffect)((function(){if(zt.defined(r)){var e=document.documentElement;!n&&o.current&&(e=o.current),r?e.setAttribute("data-system-ui-reduced-motion-mode","true"):e.setAttribute("data-system-ui-reduced-motion-mode","false")}}),[n,r,o])}({isGlobal:i,isReducedMotion:d,ref:O});var T=function(e){void 0===e&&(e={});for(var t=(0,m.useContext)(ln),n=(0,m.useRef)(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?sn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):sn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},t)).current,r=0,o=Object.entries(e);r<o.length;r++){var a=Et(o[r],2),i=a[0],s=a[1];zt.defined(s)&&(n[i]=s)}return n}({isDark:l,isReducedMotion:d,isColorBlind:u,isHighContrast:g}),M=function(e){void 0===e&&(e={});var t=e,n=t.isColorBlind,r=t.isDark,o=t.isHighContrast,a=t.isReducedMotion,i={};return r&&(i["data-system-ui-mode"]="dark"),o&&(i["data-system-ui-contrast-mode"]=!0),n&&(i[Ht]=!0),a&&(i["data-system-ui-reduced-motion-mode"]=!0),i}(T),j=S(o,k($n(),P,A,N,R));return h().createElement("div",Object.assign({},C,M,{className:j,"data-system-theme-provider":!0,ref:nn([t,O])}),h().createElement(ln.Provider,{value:T},n))}var kn=h().memo(h().forwardRef(Cn));function Sn(e,t){if(void 0===e.inserted[t.name])return e.insert("",t,e.sheet,!0)}function xn(e,t,n){var r=[],o=z(e,r,n);return r.length<2?n:o+t(r)}var On=function e(t){for(var n="",r=0;r<t.length;r++){var o=t[r];if(null!=o){var a=void 0;switch(typeof o){case"boolean":break;case"object":if(Array.isArray(o))a=e(o);else for(var i in a="",o)o[i]&&i&&(a&&(a+=" "),a+=i);break;default:a=o}a&&(n&&(n+=" "),n+=a)}}return n};function Pn(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}var An=new RegExp(/var\(.*?\)[ ) ]*/,"g");function Nn(e){return null==e||null==e.includes?void 0:e.includes("var(")}function Rn(e){var t,n,r,o,a=(null==(t=e.match(/\(/g))?void 0:t.length)||0,i=(null==(n=e.match(/\)/g))?void 0:n.length)||0;if(a>i)o=""+e+(0,ie.repeat)(")",a-i);else{var s=new RegExp("((\\)){"+(i-a)+"})$","gi");o=e.replace(s,"")}return null==(r=o)?void 0:r.trim()}function Tn(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Mn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Mn(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}function Mn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function jn(e,t){var n,r,o=!1,a=Et(e.split(/:/),2);n=a[0],r=a[1],n=n.trim();for(var i,s,l=Tn(r.match(An)||[]);!(i=l()).done;)for(var c,u=i.value,d=Tn((u=u.trim()).replace(/ /g,"").split("var(").filter(Boolean));!(c=d()).done;){var g=vt(s=Rn(c.value).split(","))||Pn(s)||_t(s)||wt(),p=g[0],f=g.slice(1).join(","),m=t&&t.get(p)||f;m&&(o=!0,r=r.replace(u,m))}return[n,r=o?Rn(r):void 0]}function In(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Fn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Dn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Fn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Fn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ln=function(e){var t=this;void 0===e&&(e={}),this.state={},this.get=function(e){return t.state[e]},this.getState=function(){return t.state},this.setState=function(e){return void 0===e&&(e={}),t._updateState(e),t._resolveVariablesInStateValue(),t.state},this._updateState=function(e){void 0===e&&(e={}),t.state=Object.freeze(Dn(Dn({},t.state),e))},this._resolveVariablesInStateValue=function(){for(var e,n={},r=Object.entries(t.state).filter((function(e){var t=Et(e,2);return t[0],Nn(t[1])})),o=function(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return In(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?In(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}(r);!(e=o()).done;){var a=Et(e.value,2),i=a[0],s=Et(jn("resolve: "+a[1],t),2)[1];s&&(n[i]=s)}t._updateState(n),r.length&&t._resolveVariablesInStateValue()},this.setState(e)};function Gn(e){return void 0===e&&(e={}),new Ln(e)}var Bn,qn,zn=["40em","52em","64em"],Hn=function(e,t){void 0===e&&(e={}),void 0===t&&(t=function(e,t){return t});var n={},r=[null].concat(zn.map((function(e){return"@media screen and (min-width: "+e+")"})));for(var o in e){var a=o,i=e[a];if(null!==i)if(Array.isArray(i))for(var s=0;s<i.slice(0,r.length).length;s++){var l=r[s];l?(n[l]=n[l]||{},null!==i[s]&&(n[l][a]=t(a,i[s]))):n[a]=t(a,i[s])}else n[a]=i}return n},Un=__webpack_require__(4624),Vn=__webpack_require__(9588),Wn=__webpack_require__.n(Vn),Yn=Wn()((function(e,t){var n=e.split(";").filter(Boolean),r=!1,o=n.reduce((function(e,n){if(!Nn(n))return[].concat(e,[n]);var o=function(e,t){if(Nn(e)||function(e){return 0===e.indexOf("--")}(e)){var n=Et(jn(e,t),2),r=n[0],o=n[1];return o?[r,o].join(":"):void 0}}(n,t);return o?(r=!0,[].concat(e,[o,n])):[].concat(e,[n])}),[]),a=o.join(";").concat(";");return r?a:void 0}));function Kn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Qn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Kn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Kn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Zn="undefined"!=typeof window&&(null==(Bn=window)||null==(qn=Bn.CSS)||null==qn.supports?void 0:qn.supports("(--a: 0)")),Xn={rootStore:Gn(),skipSupportedBrowsers:!0},Jn=function(e){void 0===e&&(e={});var t=Qn(Qn({},Xn),e),n=t.rootStore,r=t.skipSupportedBrowsers;return function(e,t,o,__,a,i,s,l){if((!r||!Zn)&&2===e&&107!==l&&Nn(t))return Yn(t,n)}};function er(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function tr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?er(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):er(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var nr,rr,or,ar=new WeakSet,ir=new Set,sr={key:"wp-css",level:7},lr=function(e){void 0===e&&(e=sr);var t=tr(tr({},sr),e),n=t.key,r=t.level,o=(0,ie.clamp)(r,0,20);return function(e,__,t){if(!ar.has(t)){ar.add(t);for(var r=new RegExp("."+n+"-[\\w|\\d]*","g"),a=0;a<t.length;a++){var i=t[a],s=Et(i.match(r)||[],1)[0];if(s){if(ir.has(s))return;ir.add(s),i=i.replace(new RegExp(s,"g"),s).replace(s,(0,ie.repeat)(s,o)),t[a]=i}}}}},cr=__webpack_require__(8314),ur=__webpack_require__.n(cr),dr=!1;"undefined"!=typeof window&&(dr="rtl"===(null==(nr=window)||null==(rr=nr.document)||null==(or=rr.documentElement)?void 0:or.dir));var gr=function(e,t){if(-1===e)return dr?ur().process(t,void 0,void 0,void 0):void 0};function pr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function fr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?pr(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):pr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var mr={key:"css",specificityLevel:7,rootStore:new Ln};function hr(e){var t=fr(fr({},mr),e),n=t.key,r=t.rootStore,o=function(e){var t=e.specificityLevel,n=void 0===t?7:t,r=e.key,o=void 0===r?"css":r,a=e.skipSupportedBrowsers;return[gr,Jn({skipSupportedBrowsers:void 0===a||a,rootStore:e.rootStore}),lr({level:n,key:o}),Un.default]}({key:n,specificityLevel:t.specificityLevel,rootStore:r});e.stylisPlugins?Array.isArray(e.stylisPlugins)?t.stylisPlugins=[].concat(o,e.stylisPlugins):zt.defined(e.stylisPlugins)?t.stylisPlugins=[].concat(o,[e.stylisPlugins]):t.stylisPlugins=o:t.stylisPlugins=o;var a,i=fr(fr({},function(e){var t=x(e);t.sheet.speedy=function(e){this.isSpeedy=e},t.compat=!0;var n=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered,void 0);return H(t,o,!1),t.key+"-"+o.name};return{css:n,cx:function(){for(var e=arguments.length,r=new Array(e),o=0;o<e;o++)r[o]=arguments[o];return xn(t.registered,n,On(r))},injectGlobal:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered);Sn(t,o)},keyframes:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered),a="animation-"+o.name;return Sn(t,{name:o.name,styles:"@keyframes "+a+"{"+o.styles+"}"}),a},hydrate:function(e){e.forEach((function(e){t.inserted[e]=!0}))},flush:function(){t.registered={},t.inserted={},t.sheet.flush()},sheet:t.sheet,cache:t,getRegisteredStyles:z.bind(null,t.registered),merge:xn.bind(null,t.registered,n)}}(t)),{},{breakpoints:zn,__events:{all:a=a||new Map,on:function(e,t){var n=a.get(e);n&&n.push(t)||a.set(e,[t])},off:function(e,t){var n=a.get(e);n&&n.splice(n.indexOf(t)>>>0,1)},emit:function(e,t){(a.get(e)||[]).slice().map((function(e){e(t)})),(a.get("*")||[]).slice().map((function(n){n(e,t)}))}}}),s=i.css;i.css=function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var o=n[0],a=n.slice(1);if(zt.objectInterpolation(o))return e(Hn(o));if(Array.isArray(o)){for(var i=0,s=o.length;i<s;i++){var l=o[i];zt.objectInterpolation(l)&&(o[i]=Hn(l))}return e.apply(void 0,[o].concat(a))}return e.apply(void 0,n)}}(s);var l=i.sheet.insert;return i.sheet.insert=function(){for(var e,t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];l.apply(i.sheet,[].concat(n)),(e=i.__events).emit.apply(e,["sheet.insert"].concat(n))},i}function yr(){var e=tn(["\n\t\t\t@media (prefers-reduced-motion) {\n\t\t\t\ttransition: none !important;\n\t\t\t}\n\t\t\t"," & {\n\t\t\t\ttransition: none !important;\n\t\t\t}\n\t\t"]);return yr=function(){return e},e}function vr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function br(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?vr(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):vr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var _r=b,wr=Kt,Er=function(e,t){var n=br(br({},wr),t),r=n.baseStyles,o=n.compiler,a=n.globalStyles,i=o.css,s=o.cx,l=o.injectGlobal,u={Base:i({boxSizing:"border-box"}),reduceMotion:i(yr(),'[data-system-ui-reduced-motion-mode="true"]')},d=i(r),g=(0,m.forwardRef)((function(t,n){var r=t.css,o=t.as,g=t.children,p=t.className,f=t.forwardedRef,m=c(t,["css","as","children","className","forwardedRef"]);an({globalStyles:a,injectGlobal:l});var y=o||e,v="string"!=typeof p?s(p):p,b=s(u.Base,u.reduceMotion,d,v,r&&i(r)),_={};for(var w in m)"string"==typeof y?_r(w)&&(_[w]=m[w]):_[w]=m[w];var E=h().useMemo((function(){return f?nn([f,n]):n}),[f,n]);return h().createElement(y,br({className:b,ref:E},_),g)}));return g},$r=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"];function Cr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var kr=__webpack_require__(8679),Sr=__webpack_require__.n(kr);function xr(e){return"string"==typeof e?e:e.displayName||e.name||"Component"}function Or(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Or(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Or(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ar(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Nr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ar(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ar(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Rr=Kt;function Tr(){for(var e=[],t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];for(var o=0,a=n;o<a.length;o++){var i=a[o];"number"!=typeof i&&"string"!=typeof i||e.push(i),Array.isArray(i)&&e.push(Tr.apply(void 0,i),",")}return e.join(" ").trim().replace(/,$/,"")}var Mr=Tr;function jr(e){return"number"==typeof e?"calc("+Zt("gridBase")+" * "+e+")":e}function Ir(e){for(var t={},n=Object.entries(e),r=n[0][1],o=le()(r).lighten(15).toHexString(),a=n[n.length-1][1],i=le()(a).darken(15).toHexString(),s=0,l=n;s<l.length;s++){var c=Et(l[s],2),u=c[0],d=c[1];t[u+"Text"]=le().mostReadable(d,[o,r,a,i]).toHexString()}return t}function Fr(e,t){void 0===t&&(t=!1);var n={},r=Et(Object.entries(e)[2],2),o=r[0],a=r[1],i=Et(o.split(/\d+/),1)[0],s=t?"#000":"#fff",l=t?"#fff":"#000",c=t?"darken":"lighten";return[10,20,30,40,50,60,70,80,90].forEach((function(e,t){var r=a;r=le()(r).setAlpha(e/100).toRgbString();var o=le().mix(a,s,t).toRgbString();le().isReadable(o,l,{})||(r=le()(r)[c](20).toRgbString()),n[i+"Rgba"+e]=r})),n}function Dr(e,t){var n,r=((n={})[e]=t,n);return[10,20,30,40,50,60,70,80,90].forEach((function(n){r[e+"Rgba"+n]=le()(t).setAlpha(n/100).toRgbString()})),r}function Lr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Gr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Lr(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Lr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}Mr.calc=function(){return"calc("+Tr.apply(void 0,arguments)+")"};var Br={purple100:"#f3f1f8",purple300:"#B4A8D2",purple500:"#826eb4",purple700:"#4e426c",purple900:"#342c48"},qr={darkGray100:"#8F98A1",darkGray300:"#6C7781",darkGray500:"#555D66",darkGray700:"#32373C",darkGray900:"#191E23"},zr={lightGray100:"#fbfbfc",lightGray300:"#edeff0",lightGray500:"#e2e4e7",lightGray700:"#ccd0d4",lightGray900:"#a2aab2"},Hr={red100:"#fcebeb",red300:"#ea8484",red500:"#dc3232",red700:"#b02828",red900:"#841e1e"},Ur={orange100:"#fef1ea",orange300:"#f9a87e",orange500:"#F56E28",orange700:"#ca4a1f",orange900:"#aa3e1a"},Vr={yellow100:"#fff8e6",yellow300:"#ffd566",yellow500:"#ffb900",yellow700:"#ee8e0d",yellow900:"#dd631a"},Wr={green100:"#edf8ee",green300:"#90d296",green500:"#46b450",green700:"#328540",green900:"#25612f"},Yr={blue100:"#e6f6fb",blue300:"#66c6e4",blue500:"#00a0d2",blue700:"#0085ba",blue900:"#0072A8"},Kr=Gr(Gr(Gr({},qr),Ir(qr)),Fr(qr)),Qr=Gr(Gr(Gr({},zr),Ir(zr)),Fr(zr)),Zr=Gr(Gr(Gr({},Hr),Ir(Hr)),Fr(Hr)),Xr=Gr(Gr(Gr({},Ur),Ir(Ur)),Fr(Ur)),Jr=Gr(Gr(Gr({},Vr),Ir(Vr)),Fr(Vr)),eo=Gr(Gr(Gr({},Wr),Ir(Wr)),Fr(Wr)),to=Gr(Gr(Gr({},Br),Ir(Br)),Fr(Br)),no=Gr(Gr(Gr({},Yr),Ir(Yr)),Fr(Yr)),ro=Gr(Gr(Gr(Gr(Gr(Gr(Gr(Gr({},Kr),Qr),Zr),Xr),Jr),eo),to),no),oo={black:"#000000",blueberry:"#3858E9",blueberryDark:"#1D35B4",greens:"#33F078",grey:"#40464D",greyBlack:"#1E1E1E",lightBlue:"#33F078",lightGrey:"#40464D",lighterGrey:"#dddddd",pomegrade:"#E26F56",wordpressBlue:"#007cba",white:"#ffffff"},ao={colorBackgroundBlue:Zt("blueRgba10"),colorBackgroundBlueText:Zt("blue900"),colorBackgroundDarkGray:Zt("darkGrayRgba10"),colorBackgroundDarkGrayText:Zt("darkGray900"),colorBackgroundGreen:Zt("greenRgba10"),colorBackgroundGreenText:Zt("green900"),colorBackgroundLightGray:Zt("lightGrayRgba10"),colorBackgroundLightGrayText:Zt("lightGray900"),colorBackgroundOrange:Zt("orangeRgba10"),colorBackgroundOrangeText:Zt("orange900"),colorBackgroundPurple:Zt("purpleRgba10"),colorBackgroundPurpleText:Zt("purple900"),colorBackgroundRed:Zt("redRgba10"),colorBackgroundRedText:Zt("red900"),colorBackgroundYellow:Zt("yellowRgba10"),colorBackgroundYellowText:Zt("yellow900")},io={colorBackgroundBlue:Zt("blueRgba20"),colorBackgroundBlueText:Zt("blue300"),colorBackgroundDarkGray:Zt("darkGrayRgba20"),colorBackgroundDarkGrayText:Zt("white"),colorBackgroundGreen:Zt("greenRgba20"),colorBackgroundGreenText:Zt("green300"),colorBackgroundLightGray:Zt("lightGrayRgba20"),colorBackgroundLightGrayText:Zt("white"),colorBackgroundOrange:Zt("orangeRgba20"),colorBackgroundOrangeText:Zt("orange300"),colorBackgroundPurple:Zt("purpleRgba20"),colorBackgroundPurpleText:Zt("purple300"),colorBackgroundRed:Zt("redRgba20"),colorBackgroundRedText:Zt("red300"),colorBackgroundYellow:Zt("yellowRgba20"),colorBackgroundYellowText:Zt("yellow300")},so=Gr(Gr(Gr(Gr(Gr(Gr(Gr(Gr({},Fr(Yr,!0)),Fr(Wr,!0)),Fr(Ur,!0)),Fr(Br,!0)),Fr(Hr,!0)),Fr(Vr,!0)),Fr(qr,!0)),Fr(zr,!0));function lo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function co(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?lo(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):lo(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var uo=co(co(co(co({},ro),ao),{},{colorAdmin:"#007cba",colorDestructive:"#D94F4F",colorBodyBackground:Zt("white"),colorDivider:"rgba(0, 0, 0, 0.1)",colorPositive:Zt("greens"),colorScrollbarThumb:"rgba(0, 0, 0, 0.2)",colorScrollbarThumbHover:"rgba(0, 0, 0, 0.5)",colorScrollbarTrack:"rgba(0, 0, 0, 0.04)",colorText:"#1e1e1e",colorTextInverted:Zt("white"),colorTextHeading:"#050505",colorTextMuted:"#8a8b8c"},Dr("colorAdmin","#007cba")),Dr("colorDestructive","#D94F4F")),go={fontFamily:'Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif',fontFamilyMono:"SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace",fontSize:"13px",fontSizeH1:"calc(2.44 * "+Zt("fontSize")+")",fontSizeH2:"calc(1.95 * "+Zt("fontSize")+")",fontSizeH3:"calc(1.56 * "+Zt("fontSize")+")",fontSizeH4:"calc(1.25 * "+Zt("fontSize")+")",fontSizeH5:"calc(1 * "+Zt("fontSize")+")",fontSizeH6:"calc(0.8 * "+Zt("fontSize")+")",fontSizeInputMobile:"16px",fontSizeMobile:"15px",fontSizeSmall:"calc(0.92 * "+Zt("fontSize")+")",fontSizeXSmall:"calc(0.75 * "+Zt("fontSize")+")",fontLineHeightBase:"1.2",fontWeight:"normal",fontWeightHeading:"600"},po={surfaceBackgroundColor:Zt("surfaceColor"),surfaceBackgroundSubtleColor:"#F3F3F3",surfaceBackgroundTintColor:"#F5F5F5",surfaceBorderColor:"rgba(0, 0, 0, 0.1)",surfaceBorderBoldColor:"rgba(0, 0, 0, 0.15)",surfaceBorderSubtleColor:"rgba(0, 0, 0, 0.05)",surfaceBackgroundTertiaryColor:"#ffffff",surfaceColor:Zt("white")},fo={controlBackgroundColor:Zt("white"),controlBackgroundColorHover:"rgba(0, 0, 0, 0.05)",controlBackgroundColorActive:"rgba(0, 0, 0, 0.05)",controlBackgroundDimColor:"rgba(0, 0, 0, 0.1)",controlBackgroundBrightColor:"rgba(0, 0, 0, 0.03)",controlBorderColor:"#757575",controlBorderColorHover:Zt("controlBorderColor"),controlBorderColorSubtle:"transparent",controlBorderRadius:"2px",controlBorderSubtleColor:"rgba(0, 0, 0, 0.2)",controlBoxShadowFocusSize:"0.5px",controlBoxShadow:"transparent",controlBoxShadowFocus:Mr("0 0 0",Zt("controlBoxShadowFocusSize"),Zt("colorAdmin")),controlPseudoBoxShadowFocusWidth:"2px",controlPseudoBoxShadowFocusRingSize:Mr.calc(Zt("controlPseudoBoxShadowFocusWidth"),"+ 1px +",Zt("controlBoxShadowFocusSize")),controlPseudoBoxShadowFocusRingSizeSmall:Mr.calc(Zt("controlPseudoBoxShadowFocusWidth"),"+ 1px"),controlPseudoBoxShadowFocus:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSize"),Zt("colorAdmin")]),controlPseudoBoxShadowFocusSmall:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSizeSmall"),Zt("colorAdmin")]),controlDestructivePseudoBoxShadowFocus:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSize"),Zt("colorDestructive")]),controlDestructivePseudoBoxShadowFocusSmall:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSizeSmall"),Zt("colorDestructive")]),controlDestructiveBorderColor:Zt("colorDestructive"),controlDestructiveBorderColorFocus:Zt("controlDestructiveBorderColor"),controlDestructiveBoxShadowFocus:Mr("0 0 0",Zt("controlBoxShadowFocusSize"),Zt("colorDestructive")),controlHeight:"30px",controlHeightLarge:"calc("+Zt("controlHeight")+" * 1.2)",controlHeightSmall:"calc("+Zt("controlHeight")+" * 0.8)",controlHeightXLarge:"calc("+Zt("controlHeight")+" * 1.4)",controlHeightXSmall:"calc("+Zt("controlHeight")+" * 0.67)",controlHeightXXSmall:"calc("+Zt("controlHeight")+" * 0.4)",controlPaddingX:"12px",controlPaddingXLarge:"calc("+Zt("controlPaddingX")+" * 1.3334)",controlPaddingXSmall:"calc("+Zt("controlPaddingX")+" / 1.3334)",controlPrimaryTextColorActive:Zt("white"),controlPrimaryTextColor:Zt("white"),controlSurfaceBoxShadow:Mr(["0 1px 1px rgba(0, 0, 0, 0.2)"],["0 1px 2px rgba(0, 0, 0, 0.2)"]),controlSurfaceColor:Zt("white"),controlTextActiveColor:Zt("colorAdmin"),controlInnerControltextColor:Zt("colorAdmin")},mo={buttonPaddingXRatio:"calc(4/3)",buttonPaddingX:Mr.calc(Zt("controlPaddingX"),"*",Zt("buttonPaddingXRatio")),buttonTextColor:Zt("colorAdmin"),buttonTextColorActive:Zt("buttonTextColor"),buttonPrimaryColor:Zt("colorAdmin"),buttonPrimaryColorHover:Zt("buttonPrimaryColor"),buttonPrimaryColorActive:Zt("colorText"),buttonPrimaryColorFocus:Zt("buttonPrimaryColor"),buttonPrimaryBorderColor:Zt("buttonPrimaryColor"),buttonPrimaryBorderColorHover:Zt("buttonPrimaryColor"),buttonPrimaryBorderColorFocus:Zt("buttonPrimaryColor"),buttonPrimaryBorderColorActive:Zt("buttonPrimaryColor"),buttonPrimaryTextColor:Zt("controlPrimaryTextColor"),buttonPrimaryTextColorHover:Zt("controlPrimaryTextColor"),buttonPrimaryTextColorActive:Zt("controlPrimaryTextColor"),buttonPrimaryTextColorFocus:Zt("controlPrimaryTextColor"),buttonSecondaryColor:"transparent",buttonSecondaryColorHover:Zt("buttonSecondaryColor"),buttonSecondaryColorActive:"rgba(0, 0, 0, 0.05)",buttonSecondaryColorFocus:Zt("buttonSecondaryColor"),buttonSecondaryBorderColor:Zt("buttonPrimaryColor"),buttonSecondaryTextColor:Zt("buttonPrimaryColor"),buttonSecondaryTextColorFocus:Zt("buttonPrimaryColor"),buttonSecondaryTextColorActive:Zt("buttonPrimaryColor"),buttonSecondaryBorderColorHover:Zt("buttonPrimaryColor"),buttonSecondaryBorderColorActive:Zt("buttonPrimaryColor"),buttonSecondaryBorderColorFocus:Zt("buttonPrimaryColor"),buttonTertiaryColor:"transparent",buttonTertiaryColorHover:Zt("buttonTertiaryColor"),buttonTertiaryColorActive:"rgba(0, 0, 0, 0.05)",buttonTertiaryColorFocus:Zt("buttonTertiaryColor"),buttonTertiaryBorderColor:"transparent",buttonTertiaryTextColor:Zt("buttonPrimaryColor"),buttonTertiaryTextColorFocus:Zt("buttonPrimaryColor"),buttonTertiaryTextColorActive:Zt("buttonPrimaryColor"),buttonTertiaryBorderColorHover:Zt("buttonPrimaryColor"),buttonTertiaryBorderColorActive:Zt("buttonPrimaryColor"),buttonTertiaryBorderColorFocus:Zt("buttonPrimaryColor"),buttonControlActiveStateColor:Zt("colorText"),buttonControlActiveStateColorHover:Zt("buttonControlActiveStateColor"),buttonControlActiveStateColorActive:Zt("buttonControlActiveStateColor"),buttonControlActiveStateColorFocus:Zt("buttonControlActiveStateColor"),buttonControlActiveStateTextColor:Zt("buttonPrimaryTextColor"),buttonControlActiveStateBorderColorFocus:Zt("buttonPrimaryColor"),buttonControlActiveStateBoxShadowFocus:Mr(["0 0 0",Zt("controlBoxShadowFocusSize"),Zt("colorAdmin")],["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("buttonControlActiveStateTextColor"),"inset"])},ho={cardBorderRadius:"2px",cardPaddingX:jr(3),cardPaddingY:jr(3),cardPadding:Mr(Zt("cardPaddingX"),Zt("cardPaddingY")),cardHeaderFooterPaddingY:jr(1),cardHeaderHeight:"44px"},yo={flexGap:jr(2),flexItemMarginRight:Zt("flexGap")},vo={linkColor:Zt("colorAdmin"),linkColorHover:Zt("colorAdmin"),linkColorActive:Zt("colorAdmin"),linkColorFocus:Zt("colorAdmin")},bo={menuItemBorderWidth:"1px",menuItemFocusBackgroundColor:"transparent",menuItemFocusBorderColor:Zt("colorAdmin"),menuItemFocusTextColor:Zt("menuItemFocusBorderColor"),menuItemFocusBoxShadow:Zt("controlBorderSubtleColor"),menuItemActiveBackgroundColor:Zt("controlBackgroundColor"),menuItemActiveBorderColor:Zt("menuItemFocusBorderColor"),menuItemActiveTextColor:Zt("colorText"),menuItemActiveBoxShadow:Zt("controlBorderSubtleColor"),menuItemHeight:"30px",menuItemHeightLarge:"calc("+Zt("menuItemHeight")+" * 1.2)",menuItemHeightSmall:"calc("+Zt("menuItemHeight")+" * 0.8)",menuItemHeightXLarge:"calc("+Zt("menuItemHeight")+" * 1.4)",menuItemHeightXSmall:"calc("+Zt("menuItemHeight")+" * 0.67)",menuItemHeightXXSmall:"calc("+Zt("menuItemHeight")+" * 0.4)"},_o={panelHeaderPadding:jr(3)+" "+jr(4),panelBodyPadding:jr(2)+" "+jr(4)+" "+jr(3)},wo={radioBoxShadow:Zt("checkboxBoxShadow"),radioSize:Zt("checkboxSize"),radioDotSize:"10px"},Eo={segmentedControlFontSize:"12px",segmentedControlBackgroundColor:Zt("controlBackgroundColor"),segmentedControlBorderColor:Zt("controlBorderColor"),segmentedControlBackdropBackgroundColor:Zt("controlSurfaceColor"),segmentedControlBackdropBorderColor:Zt("controlBorderColor"),segmentedControlBackdropBoxShadow:"transparent",segmentedControlButtonColorActive:Zt("controlBackgroundColor")},$o={sliderThumbBorderColor:"transparent",sliderThumbBoxShadow:"none",sliderThumbBoxShadowSizeFocus:"3px",sliderThumbBoxShadowColorFocus:Zt("colorAdminRgba20"),sliderThumbBackgroundColor:Zt("colorAdmin")},Co={switchBackdropBackgroundColor:Zt("lightGray900"),switchBackdropBackgroundColorActive:Zt("colorAdmin"),switchBackdropBorderColor:Zt("lightGray900"),switchBackdropBorderColorActive:Zt("colorAdmin"),switchBackdropBorderColorFocus:Zt("white"),switchToggleBackgroundColor:Zt("colorTextInverted"),switchToggleBackgroundColorActive:Zt("colorTextInverted"),switchToggleBoxShadow:"none",switchPaddingOffset:"6px"},ko=co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co({},oo),uo),ho),fo),{elevationIntensity:1}),yo),go),po),{transitionDuration:"200ms",transitionDurationFast:"160ms",transitionDurationFaster:"120ms",transitionDurationFastest:"100ms",transitionTimingFunction:"cubic-bezier(0.08, 0.52, 0.52, 1)",transitionTimingFunctionControl:"cubic-bezier(0.12, 0.8, 0.32, 1)"}),mo),{checkboxBoxShadow:"none",checkboxSize:"16px"}),{gridBase:"4px"}),vo),bo),_o),wo),Eo),$o),Co);function So(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function xo(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?So(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):So(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Oo=xo(xo(xo({},io),so),{},{buttonPrimaryTextColorActive:Zt("controlPrimaryTextColorActive"),buttonControlActiveStateTextColor:Zt("colorTextInverted"),colorBodyBackground:"#18191A",colorDivider:"rgba(255, 255, 255, 0.1)",colorScrollbarThumb:"rgba(255, 255, 255, 0.2)",colorScrollbarThumbHover:"rgba(255, 255, 255, 0.5)",colorScrollbarTrack:"rgba(0, 0, 0, 0.04)",colorText:"#E4E6EB",colorTextInverted:"#050505",colorTextHeading:"#ffffff",controlBackgroundColor:Zt("colorBodyBackground"),controlBackgroundColorHover:"rgba(255, 255, 255, 0.3)",controlBackgroundBrightColor:"rgba(255, 255, 255, 0.08)",controlBackgroundDimColor:"rgba(255, 255, 255, 0.2)",controlBorderSubtleColor:"rgba(255, 255, 255, 0.5)",controlPrimaryTextColorActive:Zt("black"),controlPrimaryTextColor:Zt("white"),controlSurfaceColor:"rgba(255, 255, 255, 0.3)",controlTextActiveColor:Zt("white"),surfaceBackgroundColor:Zt("colorBodyBackground"),surfaceBackgroundSubtleColor:"#151515",surfaceBackgroundTintColor:"#252525",surfaceBackgroundTertiaryColor:"#000",surfaceBorderColor:"rgba(255, 255, 255, 0.1)",surfaceBorderBoldColor:"rgba(255, 255, 255, 0.15)",surfaceBorderSubtleColor:"rgba(255, 255, 255, 0.05)",surfaceColor:"#292929"}),Po=xo({},Oo),Ao=function(e){void 0===e&&(e=Rr);var t=Nr(Nr({},Rr),e),n=t.baseStyles,r=t.compilerOptions,o=function(e){var t=e.config,n=void 0===t?{}:t,r=e.darkModeConfig,o=void 0===r?{}:r,a=e.highContrastModeConfig,i=void 0===a?{}:a,s=e.darkHighContrastModeConfig,l=void 0===s?{}:s,c=function(e){void 0===e&&(e={});for(var t={},n=0,r=Object.entries(e);n<r.length;n++){var o=Et(r[n],2),a=o[0],i=o[1],s="var("+Qt(a)+", "+i+")";t[a]=s}return t}(n);return{theme:c,globalVariables:Xt(n),globalCSSVariables:Jt(":root",n),darkModeCSSVariables:Jt((0,ie.repeat)(Ut,3),o),highContrastModeCSSVariables:Jt((0,ie.repeat)(Vt,3),i),darkHighContrastModeCSSVariables:Jt((0,ie.repeat)(Yt,3),l)}}({config:t.config,darkHighContrastModeConfig:t.darkHighContrastModeConfig,darkModeConfig:t.darkModeConfig,highContrastModeConfig:t.highContrastModeConfig}),a=Gn(o.globalVariables);a.setState(o.globalVariables);var i=hr(Nr(Nr({},r),{},{rootStore:a})),s=i.css,l=i.cx,u=function(e){for(var t,n=e.baseStyles,r=e.compiler,o=e.globalStyles,a={},i=function(e){return Er(e,{baseStyles:n,compiler:r,globalStyles:o})},s=function(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Cr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Cr(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}($r);!(t=s()).done;){var l=t.value;a[l]=i(l)}return a}({baseStyles:n,compiler:i,globalStyles:o}),d=function(e){var t=e.compiler,n=e.core,r=t.css,o=t.cx,a=n.div;function i(e,t){void 0===t&&(t={});var n=t.props;return function(){for(var s=arguments.length,l=new Array(s),u=0;u<s;u++)l[u]=arguments[u];var d=h().forwardRef((function(t,i){var s=t.as,u=t.className,d=c(t,["as","className"]),g=Pr(Pr(Pr({},n),d),{},{ref:i}),p=en(l,d),f=o(r.apply(void 0,p),u);return h().createElement(a,Object.assign({as:s||e},g,{className:f}))}));return d.displayName="string"==typeof e?"Styled("+xr(e)+")":zt.defined(null==e?void 0:e.displayName)?e.displayName:"Styled("+xr(e)+")",d.withComponent=function(e,n){return i(e,void 0!==n?Pr(Pr({},t||{}),n):t).apply(void 0,l)},"string"!=typeof e?Sr()(d,e):d}}var s=i.bind(void 0);return $r.forEach((function(e){s[e]=i(e)})),s}({compiler:i,core:u}),g=u.div;return{compiler:i,core:u,createCoreElement:function(e){return Er(e,{baseStyles:n,compiler:i,globalStyles:o})},createToken:Qt,css:s,cx:l,get:function(e){return"var("+Qt(e.toString())+")"},styled:d,View:g,ThemeProvider:function(e){return h().createElement(kn,Object.assign({},e,{compiler:i,globalStyles:o}))},rootStore:a}}({baseStyles:{MozOsxFontSmoothing:"grayscale",WebkitFontSmoothing:"antialiased",fontFamily:Zt("fontFamily"),fontSize:Zt("fontSize"),fontWeight:Zt("fontWeight"),margin:0},config:ko,darkModeConfig:Po,highContrastModeConfig:{colorDivider:"#444",controlBorderColor:"#444",controlBorderColorHover:"#444",controlBorderColorSubtle:"#444",surfaceBorderColor:"#444"},darkHighContrastModeConfig:{colorDivider:"#eee",controlBorderColor:"#eee",controlBorderColorHover:"#eee",controlBorderColorSubtle:"#eee",surfaceBorderColor:"#eee"}}),No=(Ao.ThemeProvider,Ao.compiler),Ro=Ao.core,To=(Ao.createCoreElement,Ao.createToken),Mo=Ao.get,jo=(Ao.styled,No.breakpoints,No.cache,No.cx);function Io(e){return"number"==typeof e?"calc("+Mo("gridBase")+" * "+e+")":e}No.flush,No.getRegisteredStyles,No.hydrate,No.injectGlobal,No.keyframes,No.merge,No.sheet;var Fo=No.css,Do={gridGap:"space",gridColumnGap:"space",gridRowGap:"space",gap:"space",columnGap:"space",rowGap:"space"},Lo={space:Io};function Go(e,t){var n=Do[e],r=t;return n&&Lo&&(r=(0,Lo[n])(t)),r}function Bo(e){void 0===e&&(e={});var t={};for(var n in e)t[n]=Go(n,e[n]);return t}function qo(e){if(zt.objectInterpolation(e))return Fo(Bo(Hn(e,Go)));for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];if(Array.isArray(e)){for(var o=0,a=e.length;o<a;o++){var i=e[o];zt.objectInterpolation(i)&&(e[o]=Bo(Hn(i,Go)))}return Fo.apply(void 0,[e].concat(n))}return Fo.apply(void 0,[e].concat(n))}var zo=(0,m.createContext)({}),Ho="data-g2-component";function Uo(e,t){var n,r=(0,m.useContext)(zo),o=Array.isArray(t)?t[0]:t,a=(null==r?void 0:r[o])||{},i=((n={})["data-g2-c16t"]=!0,n),s=function(e){var t;return(t={})[Ho]=e,t}(o);for(var l in s)"string"==typeof s[l]&&(i[l]=s[l]);var u=a._overrides,d=a.css,g=c(a,["_overrides","css"]),p=Object.entries(g).length?Object.assign({},g,e):e,f=jo(d&&qo(d),p.css&&qo(p.css),Wo(o),e.className),h="function"==typeof p.renderChildren?p.renderChildren(p):p.children;for(var y in p)"css"!==y&&(i[y]=p[y]);for(var v in u)i[v]=u[v];return i.children=h,i.className=f,i}function Vo(e){if(!e||"string"!=typeof e)return"";var t=(0,ie.kebabCase)(e);return"components-"+t+" wp-components-"+t}var Wo=Wn()((function(e){return e?Array.isArray(e)?jo((0,ie.uniq)(e).map(Vo)):"string"==typeof e?Vo(e):"":""}));function Yo(e,t,n){void 0===n&&(n={});var r=n.memo,o=void 0===r||r,a=(0,m.forwardRef)(e);o&&(a=h().memo(a));var i=Array.isArray(t)?t[0]:t||a.name,s=a.__contextSystemKey__||[i];return Array.isArray(t)&&(s=[].concat(s,t)),"string"==typeof t&&(s=[].concat(s,[t])),a.displayName=i,a.__contextSystemKey__=(0,ie.uniq)(s),a}function Ko(e){if(!e)return[];var t=[];return e.__contextSystemKey__&&(t=e.__contextSystemKey__),e.type&&e.type.__contextSystemKey__&&(t=e.type.__contextSystemKey__),t}var Qo=__webpack_require__(4155),Zo=Ro.div;Zo.displayName="View";var Xo=Zo,Jo={bottom:qo({alignItems:"flex-end",display:"flex",justifyContent:"center"}),center:qo({alignItems:"center",display:"flex",justifyContent:"center"}),left:qo({alignItems:"center",display:"flex",justifyContent:"flex-start"}),right:qo({alignItems:"center",display:"flex",justifyContent:"flex-end"}),top:qo({alignItems:"flex-start",display:"flex",justifyContent:"center"})},ea={center:qo({margin:"auto"}),content:Jo,left:qo({marginRight:"auto"}),right:qo({marginLeft:"auto"})};function ta(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function na(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ta(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ta(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ra={transitionDuration:Mo("transitionDuration"),transitionProperty:"all",transitionTimingFunction:"ease-in-out"},oa=function(e){return qo({transition:e})};oa.default=qo(na(na({},ra),{},{transitionTimingFunction:"ease"})),oa.bounce=qo(na(na({},ra),{},{transitionTimingFunction:"cubic-bezier(.8, .5, .2, 1.4)"})),oa.delay=function(e){return qo({transitionDelay:e+"s"})},oa.duration=function(e){return qo({transitionDuration:e+"s"})},oa.ease=qo(na(na({},ra),{},{transitionTimingFunction:"ease"})),oa.easeIn=qo(na(na({},ra),{},{transitionTimingFunction:"ease-in"})),oa.easeInOut=qo(na(na({},ra),{},{transitionTimingFunction:"ease-in-out"})),oa.easeOut=qo(na(na({},ra),{},{transitionTimingFunction:"ease-out"})),oa.easing=function(e){return qo(na(na({},ra),{},{transitionTimingFunction:e}))},oa.linear=qo(na(na({},ra),{},{transitionTimingFunction:"linear"}));var aa=["blue","red","purple","green","yellow","orange","darkGray","lightGray"];function ia(){var e=tn(["\n\t\t"," & {\n\t\t\t","\n\t\t}\n\t"]);return ia=function(){return e},e}function sa(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ia(),Wt,o)}function la(){var e=tn(["",""]);return la=function(){return e},e}function ca(){var e=tn(["\n\t\t",";\n\t\t",";\n\t"]);return ca=function(){return e},e}function ua(e,t){if(void 0===t&&(t={}),!aa.includes(e))return"";var n,r=t,o=r.isBold,a=r.isSubtle,i=o?"Rgba20":"Rgba10",s=qo({background:Mo(o?e+"Rgba70":a?e+"Rgba10":e+"Rgba20")});return"green"===e&&(n=qo({backgroundImage:"repeating-linear-gradient(45deg, transparent, transparent 10px, "+Mo("colorBackgroundGreen")+" 10px, "+Mo("colorBackgroundGreen")+" 20px)"})),"red"===e&&(n=qo({backgroundImage:"linear-gradient(45deg, "+Mo("red"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("red"+i)+" 75%, "+Mo("red"+i)+"),\n linear-gradient(-45deg, "+Mo("red"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("red"+i)+" 75%, "+Mo("red"+i)+")",backgroundSize:"10px 10px"})),"yellow"===e&&(n=qo({backgroundImage:"linear-gradient(45deg, "+Mo("yellow"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("yellow"+i)+" 75%, "+Mo("yellow"+i)+"),\n linear-gradient(-45deg, "+Mo("yellow"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("yellow"+i)+" 75%, "+Mo("yellow"+i)+")",backgroundSize:"10px 10px"})),qo(ca(),s,sa(la(),n))}function da(e){return qo({background:e})}da.black=da(Mo("black")),da.white=da(Mo("white")),da.admin=da(Mo("colorAdmin")),da.blue=ua("blue"),da.darkGray=ua("darkGray"),da.green=ua("green"),da.lightGray=ua("lightGray"),da.orange=ua("orange"),da.purple=ua("purple"),da.red=ua("red"),da.yellow=ua("yellow"),da.control=da(Mo("controlBackgroundColor")),da.surface=da(Mo("surfaceBackgroundColor")),da.secondary=da(Mo("surfaceBackgroundSubtleColor"));var ga={default:qo({border:"1px solid "+Mo("controlBorderColor")}),focus:qo({border:"1px solid "+Mo("colorAdmin"),boxShadow:Mo("controlBoxShadowFocus")}),subtle:qo({border:"1px solid "+Mo("controlBorderSubtleColor")})},pa={all:qo({border:"1px solid "+Mo("surfaceBorderColor")}),bottom:qo({borderBottom:"1px solid "+Mo("surfaceBorderColor")}),control:ga,left:qo({borderLeft:"1px solid "+Mo("surfaceBorderColor")}),right:qo({borderRight:"1px solid "+Mo("surfaceBorderColor")}),top:qo({borderTop:"1px solid "+Mo("surfaceBorderColor")})};function fa(e){return qo({borderRadius:e})}function ma(){var e=tn(["\n\t\t@media not all and (min-resolution: 0.001dpcm) {\n\t\t\t@supports (-webkit-appearance: none) {\n\t\t\t\t","\n\t\t\t}\n\t\t}\n\t"]);return ma=function(){return e},e}function ha(){var e=tn(["\n\t\t@-moz-document url-prefix() {\n\t\t\t",";\n\t\t}\n\t"]);return ha=function(){return e},e}function ya(){var e=tn(["\n\t\t@media screen and (-ms-high-contrast: active),\n\t\t\t(-ms-high-contrast: none) {\n\t\t\t",";\n\t\t}\n\t"]);return ya=function(){return e},e}fa.none=fa(0),fa.round=fa(Mo("controlBorderRadius")),fa.circle=fa(99999);var va={ie:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ya(),o)},firefox:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ha(),o)},safari:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ma(),o)}},ba=function(e){return le()(e)};ba.admin=Mo("colorAdmin"),ba.text=Mo("colorText"),ba.textInverted=Mo("colorTextInverted"),ba.border=Mo("surfaceBorderColor"),ba.positive=Mo("colorPositive"),ba.destructive=Mo("colorDestructive"),["blue","red","purple","green","yellow","orange","darkGray","lightGray"].forEach((function(e){[null,100,300,500,700,900].forEach((function(t){t?ba[""+e+t]=Mo(""+e+t):ba[e]=Mo(e+"500")}))})),Object.keys(oo).forEach((function(e){ba[e]=Mo(e)}));var _a=function(e){var t=e.height,n=e.width,r=[];return zt.defined(n)&&r.push([qo({maxWidth:"100%",width:n})]),zt.defined(t)&&r.push([qo({height:t,maxHeight:"100%"})]),qo(r)};_a.width=function(e){return qo({maxWidth:"100%",width:e})},_a.height=function(e){return qo({height:e,maxHeight:"100%"})};var wa={body:13,caption:10,footnote:11,largeTitle:28,subheadline:12,title:20};function Ea(e){return void 0===e&&(e=13),wa[e]?Ea(wa[e]):"number"!=typeof e?e:"calc("+e/13+" * "+Mo("fontSize")+")"}function $a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ca(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?$a(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):$a(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ka(e){return qo({color:e})}ka.black=ka(Mo("black")),ka.white=ka(Mo("white")),ka.admin=ka(Mo("colorAdmin")),ka.purple=ka(Mo("purple500")),ka.green=ka(Mo("green500")),ka.yellow=ka(Mo("yellow500")),ka.orange=ka(Mo("orange500")),ka.darkGray=ka(Mo("darkGray500")),ka.lightGray=ka(Mo("lightGray500")),ka.text=ka(Mo("colorText")),ka.textInverted=ka(Mo("colorTextInverted"));var Sa={default:qo({color:Mo("colorText"),fontFamily:Mo("fontFamily"),fontWeight:400}),monospace:qo({fontFamily:Mo("fontFamilyMono")})},xa={bold:qo({fontWeight:600}),italic:qo({fontStyle:"italic"}),smallCaps:qo({fontSize:Ea(10),fontWeight:600,textTransform:"uppercase"}),caption:qo({fontSize:Ea(10),fontWeight:600,textTransform:"uppercase",opacity:.5})},Oa={body:qo({fontSize:Ea(13)}),caption:qo({fontSize:Ea(10)}),footnote:qo({fontSize:Ea(11)}),headline:jo(xa.bold,qo({fontSize:Ea(13)})),largeTitle:qo({fontSize:Ea(28)}),subheadline:qo({fontSize:Ea(12)}),title:qo({fontSize:Ea(20)})},Pa={color:ka,size:function(e){return qo({fontSize:Ea(e)})}},Aa={alignment:{left:qo({textAlign:"left"}),center:qo({textAlign:"center"}),right:qo({textAlign:"right"})}},Na=Ca(Ca(Ca(Ca(Ca({},Sa),Oa),xa),Pa),Aa);function Ra(){var e=tn(["\n\t\t"," & {\n\t\t\t","\n\t\t}\n\t"]);return Ra=function(){return e},e}function Ta(){var e=tn(["\n\t\t"," & {\n\t\t\t","\n\t\t}\n\t"]);return Ta=function(){return e},e}var Ma={};function ja(e){return qo({opacity:e})}Ma.colorBlind=sa,Ma.dark=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(Ra(),Ut,o)},Ma.highContrast=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(Ta(),Vt,o)},ja.subtle=ja(.7),ja.muted=ja(.5),ja.hidden=ja(0);var Ia={absolute:qo({position:"absolute"}),fixed:qo({position:"fixed"}),bottom:qo({bottom:0,position:"absolute"}),bottomLeft:qo({bottom:0,left:0,position:"absolute"}),bottomRight:qo({bottom:0,position:"absolute",right:0}),full:qo({bottom:0,left:0,position:"absolute",right:0,top:0}),left:qo({left:0,position:"absolute"}),relative:qo({position:"relative"}),right:qo({position:"absolute",right:0}),sticky:qo({position:"sticky",top:0}),top:qo({position:"absolute",top:0}),topLeft:qo({left:0,position:"absolute",top:0}),topRight:qo({position:"absolute",right:0,top:0})};function Fa(e){return zt.numeric(e)?e+"px":e}function Da(e){return"0 "+Fa(e)+" "+Fa(2*e)+" 0\n\trgba(0 ,0, 0, "+e/20+")"}function La(e){return qo({margin:Io(e)})}function Ga(e){return qo({padding:Io(e)})}function Ba(){var e=tn(["\n\t\t"," {\n\t\t\t",";\n\t\t}\n\t"]);return Ba=function(){return e},e}La.x=function(e){return qo({marginLeft:Io(e),marginRight:Io(e)})},La.y=function(e){return qo({marginBottom:Io(e),marginTop:Io(e)})},La.top=function(e){return qo({marginTop:Io(e)})},La.bottom=function(e){return qo({marginBottom:Io(e)})},La.left=function(e){return qo({marginLeft:Io(e)})},La.right=function(e){return qo({marginRight:Io(e)})},Ga.x=function(e){return qo({paddingLeft:Io(e),paddingRight:Io(e)})},Ga.y=function(e){return qo({paddingBottom:Io(e),paddingTop:Io(e)})},Ga.top=function(e){return qo({paddingTop:Io(e)})},Ga.bottom=function(e){return qo({paddingBottom:Io(e)})},Ga.left=function(e){return qo({paddingLeft:Io(e)})},Ga.right=function(e){return qo({paddingRight:Io(e)})};var qa=function(e){return this[Ho]=e,this};qa.prototype.getSelector=function(){return'[data-g2-component="'+this[Ho]+'"]'},qa.prototype.css=function(){var e=qo.apply(void 0,arguments);return qo(Ba(),this.getSelector(),e)};function za(e){return"number"==typeof e||"string"==typeof e}function Ha(e,t){if(void 0===t&&(t=0),za(e)){var n=za(t)?t:0;return qo({transform:"translate("+Fa(e)+", "+Fa(n)+")"})}if(zt.plainObject(e)){var r=e.x,o=void 0===r?0:r,a=e.y,i=void 0===a?0:a;return qo({transform:"translate("+Fa(o)+", "+Fa(i)+")"})}return""}Ha.x=function(e){return qo({transform:"translateX("+Fa(e)+")"})},Ha.y=function(e){return qo({transform:"translateY("+Fa(e)+")"})};var Ua={};function Va(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}Ua.clamp=function(e,t,n){return"max("+t+", min("+n+", "+e+"))"},Ua.color=ba,Ua.space=Io,Ua.px=Fa;var Wa={Tooltip:999999,Popover:9999,Dropdown:9998,Modal:999,ControlFocus:1};function Ya(e,t){return"number"==typeof e?e:"string"!=typeof e?t:(Wa[e]||"number"!=typeof t||(Wa[e]=t),Wa[e])}function Ka(e,t){return qo({zIndex:Ya(e,t)})}Ka.get=function(){return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Va(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Va(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},Wa)};var Qa={$:function(e){return new qa(e)},active:function(){return qo({"&:active":qo.apply(void 0,arguments)})},alignment:ea,animation:oa,background:da,border:pa,borderRadius:fa,browsers:va,color:ba,createToken:To,css:qo,flow:Mr,focus:function(){return qo({"&:focus":qo.apply(void 0,arguments)})},font:Na,frame:_a,get:Mo,getTokenValue:function(e){var t=Mo(e).replace("var(","").replace(/\)$/g,"");return window.getComputedStyle(document.documentElement).getPropertyValue(t)},hover:function(){return qo({"&:hover":qo.apply(void 0,arguments)})},margin:La,mode:Ma,offset:Ha,opacity:ja,padding:Ga,position:Ia,rotate:function(e){return qo({transform:"rotate("+e+"deg)"})},scale:function(e){return qo({transform:"scale("+e+")"})},scaleX:function(e){return qo({transform:"scaleX("+e+")"})},scaleY:function(e){return qo({transform:"scaleY("+e+")"})},shadow:function(e){if("number"==typeof e)return qo({boxShadow:Da(e)});if(!zt.plainObject(e))return"";var t=e.color,n=void 0===t?"black":t,r=e.radius,o=void 0===r?10:r,a=e.x,i=void 0===a?0:a,s=e.y,l=void 0===s?5:s,c=le()(n).setAlpha(.3).toRgbString()||"rgba(0, 0, 0, 0.3)";return qo({boxShadow:Fa(i)+" "+Fa(l)+" "+Fa(o)+" "+c})},space:Io,value:Ua,zIndex:Ka};function Za(){var e=He(["\n\tdisplay: block;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n"]);return Za=function(){return e},e}var Xa=qo(Za());function Ja(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ei(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ja(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ja(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ti,ni="auto",ri="head",oi="middle",ai="none",ii={ellipsis:"…",ellipsizeMode:ni,limit:0,numberOfLines:0};function si(e,t,n,r){if("string"!=typeof e)return"";var o=e.length,a=~~t,i=~~n,s=(0,ie.isNil)(r)?"…":r;return 0===a&&0===i||a>=o||i>=o||a+i>=o?e:0===i?e.slice(0,a)+s:e.slice(0,a)+s+e.slice(o-i)}function li(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ci(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?li(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):li(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ui(){var e=He(["\n\t\t\t-webkit-box-orient: vertical;\n\t\t\t-webkit-line-clamp: ",";\n\t\t\tdisplay: -webkit-box;\n\t\t\toverflow: hidden;\n\t\t"]);return ui=function(){return e},e}var di=Wn()((function(e){var t;if("string"!=typeof e)return"";if(function(e){return"string"==typeof e&&le()(e).isValid()}(e))return e;if(!e.includes("var("))return"";if("undefined"==typeof document)return"";var n=function(){if("undefined"!=typeof document){if(!ti){var e=document.createElement("div");e.setAttribute("data-g2-color-computation-node",""),document.body.appendChild(e),ti=e}return ti}}();if(!n)return"";n.style.background=e;var r=null===(t=window)||void 0===t?void 0:t.getComputedStyle(n).background;return n.style.background="",r||""}));function gi(){var e=He(["\n\ttext-transform: uppercase;\n"]);return gi=function(){return e},e}function pi(){var e=He(["\n\tmark {\n\t\tbackground: ",";\n\t\tborder-radius: 2px;\n\t\tbox-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.05 ) inset,\n\t\t\t0 -1px 0 rgba( 0, 0, 0, 0.1 ) inset;\n\t}\n"]);return pi=function(){return e},e}function fi(){var e=He(["\n\tcolor: ",";\n"]);return fi=function(){return e},e}function mi(){var e=He(["\n\tcolor: ",";\n"]);return mi=function(){return e},e}function hi(){var e=He(["\n\tcolor: ",";\n"]);return hi=function(){return e},e}function yi(){var e=He(["\n\tdisplay: block;\n"]);return yi=function(){return e},e}function vi(){var e=He(["\n\tcolor: ",";\n\tline-height: ",";\n"]);return vi=function(){return e},e}var bi=qo(vi(),Qa.color.text,Qa.get("fontLineHeightBase")),_i=qo(yi()),wi=qo(hi(),Qa.color.positive),Ei=qo(mi(),Qa.color.destructive),$i=qo(fi(),Qa.get("colorTextMuted")),Ci=qo(pi(),Qa.get("yellowRgba70")),ki=qo(gi());function Si(e){return Si="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Si(e)}var xi=__webpack_require__(6928);function Oi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Oi(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Oi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ai=Wn()((function(e){var t={};for(var n in e)t[n.toLowerCase()]=e[n];return t}));function Ni(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ri(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ni(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ni(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ti=function(e){var t=e.as,n=e.name,r=void 0===n?"Component":n,o=e.useHook,a=void 0===o?ie.identity:o,i=e.memo,c=void 0===i||i;function u(e,n){var r=a(e);return(0,s.createElement)(Xo,l({as:t||"div"},r,{ref:n}))}return u.displayName=r,Yo(u,r,{memo:c})}({as:"span",useHook:function(t){var n=Uo(t,"Text"),r=n.adjustLineHeightForInnerControls,o=n.align,a=n.children,i=n.className,l=n.color,u=n.ellipsizeMode,d=n.isDestructive,g=void 0!==d&&d,p=n.display,f=n.highlightEscape,m=void 0!==f&&f,h=n.highlightCaseSensitive,y=void 0!==h&&h,v=n.highlightWords,b=n.highlightSanitize,_=n.isBlock,w=void 0!==_&&_,E=n.letterSpacing,$=n.lineHeight,C=n.optimizeReadabilityFor,k=n.size,S=n.truncate,x=void 0!==S&&S,O=n.upperCase,P=void 0!==O&&O,A=n.variant,N=n.weight,R=void 0===N?Qa.get("fontWeight"):N,T=c(n,["adjustLineHeightForInnerControls","align","children","className","color","ellipsizeMode","isDestructive","display","highlightEscape","highlightCaseSensitive","highlightWords","highlightSanitize","isBlock","letterSpacing","lineHeight","optimizeReadabilityFor","size","truncate","upperCase","variant","weight"]),M=a,j=Array.isArray(v),I="caption"===k;j&&(M=function(e){var t=e.activeClassName,n=void 0===t?"":t,r=e.activeIndex,o=void 0===r?-1:r,a=e.activeStyle,i=e.autoEscape,l=e.caseSensitive,c=void 0!==l&&l,u=e.children,d=e.findChunks,g=e.highlightClassName,p=void 0===g?"":g,f=e.highlightStyle,m=void 0===f?{}:f,h=e.highlightTag,y=void 0===h?"mark":h,v=e.sanitize,b=e.searchWords,_=void 0===b?[]:b,w=e.unhighlightClassName,E=void 0===w?"":w,$=e.unhighlightStyle;if(!u)return null;if("string"!=typeof u)return u;var C,k=u,S=(0,xi.findAll)({autoEscape:i,caseSensitive:c,findChunks:d,sanitize:v,searchWords:_,textToHighlight:k}),x=y,O=-1,P="",A=S.map((function(e,t){var r=k.substr(e.start,e.end-e.start);if(e.highlight){var i;O++,i="object"===Si(p)?c?p[r]:(p=Ai(p))[r.toLowerCase()]:p;var l=O===+o;P="".concat(i," ").concat(l?n:""),C=!0===l&&null!==a?Object.assign({},m,a):m;var u=Pi(Pi({},Qa.$("TextHighlight")),{},{children:r,className:P,key:t,style:C});return"string"!=typeof x&&(u.highlightIndex=O),(0,s.createElement)(x,u)}return(0,s.createElement)("span",Pi(Pi({},Qa.$("Text")),{},{children:r,className:E,key:t,style:$}))}));return A}({autoEscape:m,children:a,caseSensitive:y,searchWords:v,sanitize:b}));var F,D=(0,s.useMemo)((function(){var t,n={},a=function(e){var t=e.adjustLineHeightForInnerControls,n=e.lineHeight;if(!(0,ie.isNil)(n))return n;if(t){var r="calc(".concat(Qa.get("controlHeight")," + ").concat(Qa.space(2),")");switch(t){case"large":r="calc(".concat(Qa.get("controlHeightLarge")," + ").concat(Qa.space(2),")");break;case"small":r="calc(".concat(Qa.get("controlHeightSmall")," + ").concat(Qa.space(2),")");break;case"xSmall":r="calc(".concat(Qa.get("controlHeightXSmall")," + ").concat(Qa.space(2),")")}return r}}({lineHeight:$,adjustLineHeightForInnerControls:r});if(n.Base=qo({color:l,display:p,fontSize:Ea(k),fontWeight:R,lineHeight:a,letterSpacing:E,textAlign:o}),n.upperCase=qo({textTransform:"uppercase"}),n.optimalTextColor=null,C){var s="dark"==(t=function(e){var t=di(e);return le().isReadable(t,"#000000")?"#000000":"#ffffff"}(C),"#000000"===t?"dark":"light");n.optimalTextColor=qo(s?{color:Qa.get("black")}:{color:Qa.get("white")})}return jo(bi,n.Base,n.optimalTextColor,g&&Ei,!!j&&Ci,w&&_i,I&&$i,A&&e[A],P&&n.upperCase,i)}),[r,o,i,l,p,w,I,g,j,E,$,C,k,P,A,R]);!0===x&&(F="auto"),!1===x&&(F="none");var L=function(e){var t=Uo(e,"Truncate"),n=t.className,r=t.children,o=t.ellipsis,a=void 0===o?"…":o,i=t.ellipsizeMode,l=void 0===i?ni:i,u=t.limit,d=void 0===u?0:u,g=t.numberOfLines,p=void 0===g?0:g,f=c(t,["className","children","ellipsis","ellipsizeMode","limit","numberOfLines"]),m=function(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1?arguments[1]:void 0,o=ei(ei({},ii),r),a=o.ellipsis,i=o.ellipsizeMode,s=o.limit;if(i===ai)return n;switch(i){case ri:e=0,t=s;break;case oi:e=Math.floor(s/2),t=Math.floor(s/2);break;default:e=s,t=0}return i!==ni?si(n,e,t,a):n}("string"==typeof r?r:"",{ellipsis:a,ellipsizeMode:l,limit:d,numberOfLines:p}),h=l===ni,y=(0,s.useMemo)((function(){var e={};return e.numberOfLines=qo(ui(),p),jo(h&&!p&&Xa,h&&!!p&&e.numberOfLines,n)}),[n,p,h]);return ci(ci({},f),{},{className:y,children:m})}(Ri(Ri({},T),{},{className:D,children:a,ellipsizeMode:u||F}));return!x&&Array.isArray(a)&&(M=s.Children.map(a,(function(e){return(0,ie.isPlainObject)(e)&&"props"in e&&(n=["Link"],(t=e)&&("string"==typeof n?Ko(t).includes(n):Array.isArray(n)&&n.some((function(e){return Ko(t).includes(e)}))))?(0,s.cloneElement)(e,{size:e.props.size||"inherit"}):e;var t,n}))),Ri(Ri({},L),{},{children:x?L.children:M})},name:"Text"});function Mi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var ji=1===__webpack_require__(4155).env.COMPONENT_SYSTEM_PHASE?Ti:void 0,Ii=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return null},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){return null},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"Component",r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(e){return e};return 1===Qo.env.COMPONENT_SYSTEM_PHASE?Yo((function(o,a){var i=Uo(o,n),u=i.__unstableVersion,d=c(i,["__unstableVersion"]);if("next"===u){var g=r(d);return(0,s.createElement)(t,l({},g,{ref:a}))}return(0,s.createElement)(e,l({},o,{ref:a}))}),n):e}(J("p",{target:"e15wbhsk0",label:"Text"})("\n\tbox-sizing: border-box;\n\tmargin: 0;\n",yt,""),ji,"WPComponentsText",(function(e){var t=e.as,n=e.variant,r=c(e,["as","variant"]);return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Mi(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Mi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({as:t,css:yt({variant:n}).styles},r)})),Fi=__webpack_require__(4802),Di=()=>(0,s.createElement)(De,{className:"gla-get-started-benefits-card",isBorderless:!0},(0,s.createElement)(qe,null,(0,s.createElement)("div",{className:"gla-get-started-benefits-card__image"},(0,s.createElement)("img",{src:Fi,alt:(0,o.__)("Google Listings & Ads Benefits","google-listings-and-ads"),width:"100%",height:"100%"})),(0,s.createElement)(ze,null,(0,s.createElement)(Ii,{variant:"title.medium",className:"gla-get-started-benefits-card__title"},(0,s.createInterpolateElement)((0,o.__)("Increase clicks by <strong>50%</strong>","google-listings-and-ads"),{strong:(0,s.createElement)("strong",null)})),(0,s.createElement)(Ii,{variant:"body",className:"gla-get-started-benefits-card__description"},(0,o.__)("Using free listings and ads together increased clicks by 50% and doubled impressions. Small-to-medium merchants saw the largest share of the increases.","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-benefits-card__hint"},(0,o.__)("Source: Google Internal Data, July 2020","google-listings-and-ads"))))),Li=(0,s.forwardRef)((function(e,t){var n=e.className,r=c(e,["className"]),o=d()("components-flex__block",n);return(0,s.createElement)(re,l({},r,{className:o,ref:t}))}));function Gi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Bi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Gi(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Gi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var qi={isBorderless:!1,isShady:!1,size:"medium"},zi=function(e){var t=e.className,n=e.isShady,r=c(e,["className","isShady"]),o=Bi(Bi(Bi({},qi),p()),e),a=o.isBorderless,i=o.size,u=d()("components-card__header",a&&"is-borderless",n&&"is-shady",i&&"is-size-".concat(i),t);return(0,s.createElement)(Ae,l({},r,{className:u}))},Hi=__webpack_require__(1704);const Ui=e=>{let{quote:t,name:n}=e;return(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Hi,alt:(0,o.__)("An image of a quote.","google-listings-and-ads"),width:"34",height:"34"}),(0,s.createElement)(Ii,{className:"gla-get-started-customer-quotes-card__content",variant:"body"},t),(0,s.createElement)(Ii,{className:"gla-get-started-customer-quotes-card__name"},n))};var Vi=()=>(0,s.createElement)(De,{className:"gla-get-started-customer-quotes-card",isBorderless:!0},(0,s.createElement)(zi,null,(0,s.createElement)(Ii,{className:"gla-get-started-customer-quotes-card__title",variant:"title.medium"},(0,o.__)("21,000+ WooCommerce store owners like you already list products on Google for free","google-listings-and-ads"))),(0,s.createElement)(ae,{gap:0},(0,s.createElement)(Ui,{quote:(0,o.__)("Thank you Google and WooCommerce for creating this app. It’s so simple to use and connect your products to Merchant Center.","google-listings-and-ads"),name:(0,o.__)("joshualukewhite","google-listings-and-ads")}),(0,s.createElement)(Ui,{quote:(0,o.__)("It does everything smoothly. Perfect and must need add-on from WooCommerce. Some things are just “essentials”.","google-listings-and-ads"),name:(0,o.__)("Anonymous","google-listings-and-ads")}))),Wi=function(e){var t=e.label,n=e.children;return(0,s.createElement)("div",{className:"components-panel__header"},t&&(0,s.createElement)("h2",null,t),n)},Yi=(0,s.forwardRef)((function(e,t){var n=e.header,r=e.className,o=e.children,a=d()(r,"components-panel");return(0,s.createElement)("div",{className:a,ref:t},n&&(0,s.createElement)(Wi,{label:n}),o)}));function Ki(e){var t=Et((0,s.useState)((function(){return!(!e||"undefined"==typeof window||!window.matchMedia(e).matches)})),2),n=t[0],r=t[1];return(0,s.useEffect)((function(){if(e){var t=function(){return r(window.matchMedia(e).matches)};t();var n=window.matchMedia(e);return n.addListener(t),function(){n.removeListener(t)}}}),[e]),e&&n}var Qi=__webpack_require__(4155),Zi="undefined"!=typeof window&&window.navigator.userAgent.indexOf("Trident")>=0,Xi=Qi.env.FORCE_REDUCED_MOTION||Zi?function(){return!0}:function(){return Ki("(prefers-reduced-motion: reduce)")};function Ji(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function es(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ji(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ji(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ts=function(e){return(0,s.createElement)("circle",e)},ns=function(e){return(0,s.createElement)("path",e)},rs=function(e){var t=e.className,n=e.isPressed,r=es(es({},c(e,["className","isPressed"])),{},{className:d()(t,{"is-pressed":n})||void 0,role:"img","aria-hidden":!0,focusable:!1});return(0,s.createElement)("svg",r)},os=(0,s.createElement)(rs,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,s.createElement)(ns,{d:"M6.5 12.4L12 8l5.5 4.4-.9 1.2L12 10l-4.5 3.6-1-1.2z"})),as=(0,s.createElement)(rs,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,s.createElement)(ns,{d:"M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"})),is=window.wp.deprecated,ss=__webpack_require__.n(is),ls=window.wp.dom,cs=window.wp.keycodes,us={huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},ds={">=":"min-width","<":"max-width"},gs={">=":function(e,t){return t>=e},"<":function(e,t){return t<e}},ps=(0,s.createContext)(null),fs=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:">=",n=(0,s.useContext)(ps),r=!n&&"(".concat(ds[t],": ").concat(us[e],"px)"),o=Ki(r);return n?gs[t](us[e],n):o};fs.__experimentalWidthProvider=ps.Provider;var ms=fs,hs=__webpack_require__(5464),ys=__webpack_require__.n(hs)(),vs=function(){return(0,s.useCallback)((function(e){e&&e.addEventListener("keydown",(function(t){if(t.keyCode===cs.TAB){var n=ls.focus.tabbable.find(e);if(n.length){var r=n[0],o=n[n.length-1];t.shiftKey&&t.target===r?(t.preventDefault(),o.focus()):(t.shiftKey||t.target!==o)&&n.includes(t.target)||(t.preventDefault(),r.focus())}}}))}),[])},bs=function(e){var t=(0,s.useRef)(),n=(0,s.useRef)(),r=(0,s.useRef)(e);return(0,s.useEffect)((function(){r.current=e}),[e]),(0,s.useCallback)((function(e){if(e){if(t.current=e,n.current)return;n.current=e.ownerDocument.activeElement}else if(n.current){var o=t.current.contains(t.current.ownerDocument.activeElement);if(t.current.isConnected&&!o)return;r.current?r.current():n.current.focus()}}),[])};function _s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"firstElement",t=(0,s.useRef)(e);return(0,s.useEffect)((function(){t.current=e}),[e]),(0,s.useCallback)((function(e){if(e&&!1!==t.current&&!e.contains(e.ownerDocument.activeElement)){var n=e;if("firstElement"===t.current){var r=ls.focus.tabbable.find(e)[0];r&&(n=r)}n.focus()}}),[])}var ws=["button","submit"];function Es(e){var t=(0,s.useRef)(e);(0,s.useEffect)((function(){t.current=e}),[e]);var n=(0,s.useRef)(!1),r=(0,s.useRef)(),o=(0,s.useCallback)((function(){clearTimeout(r.current)}),[]);(0,s.useEffect)((function(){return function(){return o()}}),[]),(0,s.useEffect)((function(){e||o()}),[e,o]);var a=(0,s.useCallback)((function(e){var t=e.type,r=e.target;(0,ie.includes)(["mouseup","touchend"],t)?n.current=!1:function(e){if(!(e instanceof window.HTMLElement))return!1;switch(e.nodeName){case"A":case"BUTTON":return!0;case"INPUT":return(0,ie.includes)(ws,e.type)}return!1}(r)&&(n.current=!0)}),[]),i=(0,s.useCallback)((function(e){e.persist(),n.current||(r.current=setTimeout((function(){document.hasFocus()?"function"==typeof t.current&&t.current(e):e.preventDefault()}),0))}),[]);return{onFocus:o,onMouseDown:a,onMouseUp:a,onTouchStart:a,onTouchEnd:a,onBlur:i}}var $s=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));function Cs(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ks(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Cs(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Cs(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ss(e,t,n,r,a,i,s,l){var c=t.width;"left"===n&&(0,o.isRTL)()?n="right":"right"===n&&(0,o.isRTL)()&&(n="left"),"left"===r&&(0,o.isRTL)()?r="right":"right"===r&&(0,o.isRTL)()&&(r="left");var u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-c/2>0?c/2:u)+(u+c/2>window.innerWidth?window.innerWidth-u:c/2)},g=e.left;"right"===r?g=e.right:"middle"!==i&&(g=u);var p=e.right;"left"===r?p=e.left:"middle"!==i&&(p=u);var f,m={popoverLeft:g,contentWidth:g-c>0?c:g},h={popoverLeft:p,contentWidth:p+c>window.innerWidth?window.innerWidth-p:c},y=n,v=null;if(!a&&!l)if("center"===n&&d.contentWidth===c)y="center";else if("left"===n&&m.contentWidth===c)y="left";else if("right"===n&&h.contentWidth===c)y="right";else{var b="left"==(y=m.contentWidth>h.contentWidth?"left":"right")?m.contentWidth:h.contentWidth;c>window.innerWidth&&(v=window.innerWidth),b!==c&&(y="center",d.popoverLeft=window.innerWidth/2)}if(f="center"===y?d.popoverLeft:"left"===y?m.popoverLeft:h.popoverLeft,s){var _=s.getBoundingClientRect();f=Math.min(f,_.right-c)}return{xAxis:y,popoverLeft:f,contentWidth:v}}function xs(e,t,n,r,o,a,i,s){var l=t.height;if(o){var c=o.getBoundingClientRect().top+l-i;if(e.top<=c)return{yAxis:n,popoverTop:Math.min(e.bottom,c)}}var u=e.top+e.height/2;"bottom"===r?u=e.bottom:"top"===r&&(u=e.top);var d={popoverTop:u,contentHeight:(u-l/2>0?l/2:u)+(u+l/2>window.innerHeight?window.innerHeight-u:l/2)},g={popoverTop:e.top,contentHeight:e.top-10-l>0?l:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+l>window.innerHeight?window.innerHeight-10-e.bottom:l},f=n,m=null;if(!o&&!s)if("middle"===n&&d.contentHeight===l)f="middle";else if("top"===n&&g.contentHeight===l)f="top";else if("bottom"===n&&p.contentHeight===l)f="bottom";else{var h="top"==(f=g.contentHeight>p.contentHeight?"top":"bottom")?g.contentHeight:p.contentHeight;m=h!==l?h:null}return{yAxis:f,popoverTop:"middle"===f?d.popoverTop:"top"===f?g.popoverTop:p.popoverTop,contentHeight:m}}function Os(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ps(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function As(e,t,n){return t&&Ps(e.prototype,t),n&&Ps(e,n),e}function Ns(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_(e,t)}function Rs(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ts(e,t){if(t&&("object"===Si(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return Rs(e)}function Ms(e){return Ms=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Ms(e)}function js(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=Ms(e);if(t){var o=Ms(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Ts(this,n)}}var Is=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.htmlDocument,n=void 0===t?document:t,r=e.className,o=void 0===r?"lockscroll":r,a=0,i=0;function l(e){var t=n.scrollingElement||n.body;e&&(i=t.scrollTop);var r=e?"add":"remove";t.classList[r](o),n.documentElement.classList[r](o),e||(t.scrollTop=i)}function c(){0===a&&l(!0),++a}function u(){1===a&&l(!1),--a}return function(e){Ns(n,e);var t=js(n);function n(){return Os(this,n),t.apply(this,arguments)}return As(n,[{key:"componentDidMount",value:function(){c()}},{key:"componentWillUnmount",value:function(){u()}},{key:"render",value:function(){return null}}]),n}(s.Component)}();function Fs(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=Ms(e)););return e}function Ds(){return Ds="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(e,t,n){var r=Fs(e,t);if(r){var o=Object.getOwnPropertyDescriptor(r,t);return o.get?o.get.call(arguments.length<3?e:n):o.value}},Ds.apply(this,arguments)}function Ls(e){return function(e){if(Array.isArray(e))return bt(e)}(e)||Pn(e)||_t(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}window.wp.warning;var Gs=__webpack_require__(4155),Bs=(0,s.createContext)({slots:{},fills:{},registerSlot:function(){void 0!==Gs&&Gs.env},updateSlot:function(){},unregisterSlot:function(){},registerFill:function(){},unregisterFill:function(){}});var qs=(0,s.createContext)({registerSlot:function(){},unregisterSlot:function(){},registerFill:function(){},unregisterFill:function(){},getSlot:function(){},getFills:function(){},subscribe:function(){}}),zs=(qs.Provider,qs.Consumer);s.Component;var Hs=function(e){Ns(o,e);var t,n,r=(t=o,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=Ms(t);if(n){var o=Ms(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return Ts(this,e)});function o(){var e;return Os(this,o),(e=r.apply(this,arguments)).isUnmounted=!1,e.bindNode=e.bindNode.bind(Rs(e)),e}return As(o,[{key:"componentDidMount",value:function(){(0,this.props.registerSlot)(this.props.name,this)}},{key:"componentWillUnmount",value:function(){var e=this.props.unregisterSlot;this.isUnmounted=!0,e(this.props.name,this)}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.name,r=t.unregisterSlot,o=t.registerSlot;e.name!==n&&(r(e.name),o(n,this))}},{key:"bindNode",value:function(e){this.node=e}},{key:"forceUpdate",value:function(){this.isUnmounted||Ds(Ms(o.prototype),"forceUpdate",this).call(this)}},{key:"render",value:function(){var e=this.props,t=e.children,n=e.name,r=e.fillProps,o=void 0===r?{}:r,a=e.getFills,i=(0,ie.map)(a(n,this),(function(e){var t=e.occurrence,n=(0,ie.isFunction)(e.children)?e.children(o):e.children;return s.Children.map(n,(function(e,n){if(!e||(0,ie.isString)(e))return e;var r="".concat(t,"---").concat(e.key||n);return(0,s.cloneElement)(e,{key:r})}))})).filter((0,ie.negate)(s.isEmptyElement));return(0,s.createElement)(s.Fragment,null,(0,ie.isFunction)(t)?t(i):i)}}]),o}(s.Component),Us=function(e){return(0,s.createElement)(zs,null,(function(t){var n=t.registerSlot,r=t.unregisterSlot,o=t.getFills;return(0,s.createElement)(Hs,l({},e,{registerSlot:n,unregisterSlot:r,getFills:o}))}))},Vs=0;function Ws(e){var t=e.name,n=e.children,r=e.registerFill,o=e.unregisterFill,a=function(e){var t=(0,s.useContext)(qs),n=t.getSlot,r=t.subscribe,o=Et((0,s.useState)(n(e)),2),a=o[0],i=o[1];return(0,s.useEffect)((function(){return i(n(e)),r((function(){i(n(e))}))}),[e]),a}(t),i=(0,s.useRef)({name:t,children:n});return i.current.occurrence||(i.current.occurrence=++Vs),(0,s.useLayoutEffect)((function(){return r(t,i.current),function(){return o(t,i.current)}}),[]),(0,s.useLayoutEffect)((function(){i.current.children=n,a&&a.forceUpdate()}),[n]),(0,s.useLayoutEffect)((function(){t!==i.current.name&&(o(i.current.name,i.current),i.current.name=t,r(t,i.current))}),[t]),a&&a.node?((0,ie.isFunction)(n)&&(n=n(a.props.fillProps)),(0,s.createPortal)(n,a.node)):null}var Ys=function(e){return(0,s.createElement)(zs,null,(function(t){var n=t.registerFill,r=t.unregisterFill;return(0,s.createElement)(Ws,l({},e,{registerFill:n,unregisterFill:r}))}))};function Ks(e){var t=e.name,n=e.fillProps,r=void 0===n?{}:n,o=e.as,a=void 0===o?"div":o,i=c(e,["name","fillProps","as"]),u=(0,s.useContext)(Bs),d=(0,s.useRef)();return(0,s.useLayoutEffect)((function(){return u.registerSlot(t,d,r),function(){u.unregisterSlot(t,d)}}),[u.registerSlot,u.unregisterSlot,t]),(0,s.useLayoutEffect)((function(){u.updateSlot(t,r)})),(0,s.createElement)(a,l({ref:d},i))}function Qs(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Zs(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Qs(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Qs(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Xs(e){var t=(0,s.useContext)(Bs),n=t.slots[e]||{},r=t.fills[e],o=(0,s.useMemo)((function(){return r||[]}),[r]),a=(0,s.useCallback)((function(n){t.updateSlot(e,n)}),[e,t.updateSlot]),i=(0,s.useCallback)((function(n){t.unregisterSlot(e,n)}),[e,t.unregisterSlot]),l=(0,s.useCallback)((function(n){t.registerFill(e,n)}),[e,t.registerFill]),c=(0,s.useCallback)((function(n){t.unregisterFill(e,n)}),[e,t.unregisterFill]);return Zs(Zs({},n),{},{updateSlot:a,unregisterSlot:i,fills:o,registerFill:l,unregisterFill:c})}function Js(e){var t,n=e.name,r=e.children,o=Xs(n),a=(0,s.useRef)({rerender:(t=Et((0,s.useState)({}),2)[1],function(){return t({})})});return(0,s.useEffect)((function(){return o.registerFill(a),function(){o.unregisterFill(a)}}),[o.registerFill,o.unregisterFill]),o.ref&&o.ref.current?("function"==typeof r&&(r=r(o.fillProps)),(0,s.createPortal)(r,o.ref.current)):null}function el(e){var t=e.bubblesVirtually,n=c(e,["bubblesVirtually"]);return t?(0,s.createElement)(Ks,n):(0,s.createElement)(Us,n)}function tl(e){return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Ys,e),(0,s.createElement)(Js,e))}var nl="Popover";function rl(e,t){var n=t.defaultView,r=n.frameElement;if(!r)return e;var o=r.getBoundingClientRect();return new n.DOMRect(e.left+o.left,e.top+o.top,e.width,e.height)}function ol(e,t){var n,r=(n=t).ownerDocument.defaultView.getComputedStyle(n),o=r.paddingTop,a=r.paddingBottom,i=r.paddingLeft,s=r.paddingRight,l=o?parseInt(o,10):0,c=a?parseInt(a,10):0,u=i?parseInt(i,10):0,d=s?parseInt(s,10):0;return{x:e.left+u,y:e.top+l,width:e.width-u-d,height:e.height-l-c,left:e.left+u,right:e.right-d,top:e.top+l,bottom:e.bottom-c}}function al(e,t,n){n?e.getAttribute(t)!==n&&e.setAttribute(t,n):e.hasAttribute(t)&&e.removeAttribute(t)}function il(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";e.style[t]!==n&&(e.style[t]=n)}function sl(e,t,n){n?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}var ll=function(e){var t=e.headerTitle,n=e.onClose,r=e.onKeyDown,o=e.children,a=e.className,i=e.noArrow,u=void 0===i||i,g=e.isAlternate,p=e.position,m=void 0===p?"bottom right":p,h=(e.range,e.focusOnMount),y=void 0===h?"firstElement":h,v=e.anchorRef,b=e.shouldAnchorIncludePadding,_=e.anchorRect,w=e.getAnchorRect,E=e.expandOnMobile,$=e.animate,C=void 0===$||$,k=e.onClickOutside,S=e.onFocusOutside,x=e.__unstableStickyBoundaryElement,O=e.__unstableSlotName,P=void 0===O?nl:O,A=e.__unstableObserveElement,N=e.__unstableBoundaryParent,R=e.__unstableForcePosition,T=c(e,["headerTitle","onClose","onKeyDown","children","className","noArrow","isAlternate","position","range","focusOnMount","anchorRef","shouldAnchorIncludePadding","anchorRect","getAnchorRect","expandOnMobile","animate","onClickOutside","onFocusOutside","__unstableStickyBoundaryElement","__unstableSlotName","__unstableObserveElement","__unstableBoundaryParent","__unstableForcePosition"]),M=(0,s.useRef)(null),j=(0,s.useRef)(null),I=(0,s.useRef)(),F=ms("medium","<"),D=Et((0,s.useState)(),2),L=D[0],G=D[1],B=Xs(P),q=E&&F,z=Et(ys(),2),H=z[0],U=z[1];u=q||u,(0,s.useLayoutEffect)((function(){if(q)return sl(I.current,"is-without-arrow",u),sl(I.current,"is-alternate",g),al(I.current,"data-x-axis"),al(I.current,"data-y-axis"),il(I.current,"top"),il(I.current,"left"),il(j.current,"maxHeight"),void il(j.current,"maxWidth");var e=function(){if(I.current&&j.current){var e=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=arguments.length>4?arguments[4]:void 0;if(t)return t;if(n){if(!e.current)return;return n(e.current)}if(!1!==r){if(!(r&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==r?void 0:r.cloneRange))return rl((0,ls.getRectangleFromRange)(r),r.endContainer.ownerDocument);if("function"==typeof(null==r?void 0:r.getBoundingClientRect)){var a=rl(r.getBoundingClientRect(),r.ownerDocument);return o?a:ol(a,r)}var i=r.top,s=r.bottom,l=i.getBoundingClientRect(),c=s.getBoundingClientRect(),u=rl(new window.DOMRect(l.left,l.top,l.width,c.bottom-l.top),i.ownerDocument);return o?u:ol(u,r)}if(e.current){var d=e.current.parentNode,g=d.getBoundingClientRect();return o?g:ol(g,d)}}(M,_,w,v,b);if(e){var t,n,r=I.current,o=r.offsetParent,a=r.ownerDocument,i=0;if(o&&o!==a.body){var s=o.getBoundingClientRect();i=s.top,e=new window.DOMRect(e.left-s.left,e.top-s.top,e.width,e.height)}N&&(t=null===(n=I.current.closest(".popover-slot"))||void 0===n?void 0:n.parentNode);var l=function(e,t){var n=arguments.length>3?arguments[3]:void 0,r=arguments.length>5?arguments[5]:void 0,o=arguments.length>6?arguments[6]:void 0,a=arguments.length>7?arguments[7]:void 0,i=Et((arguments.length>2&&void 0!==arguments[2]?arguments[2]:"top").split(" "),3),s=i[0],l=i[1],c=void 0===l?"center":l,u=i[2],d=xs(e,t,s,u,n,0,r,a);return ks(ks({},Ss(e,t,c,u,n,d.yAxis,o,a)),d)}(e,U.height?U:j.current.getBoundingClientRect(),m,x,I.current,i,t,R),c=l.popoverTop,d=l.popoverLeft,p=l.xAxis,f=l.yAxis,h=l.contentHeight,y=l.contentWidth;"number"==typeof c&&"number"==typeof d&&(il(I.current,"top",c+"px"),il(I.current,"left",d+"px")),sl(I.current,"is-without-arrow",u||"center"===p&&"middle"===f),sl(I.current,"is-alternate",g),al(I.current,"data-x-axis",p),al(I.current,"data-y-axis",f),il(j.current,"maxHeight","number"==typeof h?h+"px":""),il(j.current,"maxWidth","number"==typeof y?y+"px":""),G(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[f]||"middle"))}}};e();var t,n=I.current.ownerDocument,r=n.defaultView,o=r.setInterval(e,500),a=function(){r.cancelAnimationFrame(t),t=r.requestAnimationFrame(e)};r.addEventListener("click",a),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);var i,s=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(v);return s&&s!==n&&(s.defaultView.addEventListener("resize",e),s.defaultView.addEventListener("scroll",e,!0)),A&&(i=new r.MutationObserver(e)).observe(A,{attributes:!0}),function(){r.clearInterval(o),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",a),r.cancelAnimationFrame(t),s&&s!==n&&(s.defaultView.removeEventListener("resize",e),s.defaultView.removeEventListener("scroll",e,!0)),i&&i.disconnect()}}),[q,_,w,v,b,m,U,x,A,N]);var V=vs(),W=bs(),Y=_s(y),K=Es((function(e){if(S)S(e);else if(k){var t;try{t=new window.MouseEvent("click")}catch(e){(t=document.createEvent("MouseEvent")).initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null)}Object.defineProperty(t,"target",{get:function(){return e.relatedTarget}}),ss()("Popover onClickOutside prop",{alternative:"onFocusOutside"}),k(t)}else n&&n()})),Q=[I,y?V:null,y?W:null,y?Y:null],Z=(0,s.useCallback)(nn(Q),Q),X=Boolean(C&&L)&&function(e){if("loading"===e.type)return d()("components-animate__loading");var t=e.type,n=e.origin,r=void 0===n?function(e){return"appear"===e?"top":"left"}(t):n;if("appear"===t){var o,a=Et(r.split(" "),2),i=a[0],s=a[1],l=void 0===s?"center":s;return d()("components-animate__appear",(f(o={},"is-from-"+l,"center"!==l),f(o,"is-from-"+i,"middle"!==i),o))}return"slide-in"===t?d()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:L}),J=(0,s.createElement)("div",l({className:d()("components-popover",a,X,{"is-expanded":q,"is-without-arrow":u,"is-alternate":g})},T,{onKeyDown:function(e){e.keyCode===cs.ESCAPE&&n&&(e.stopPropagation(),n()),r&&r(e)}},K,{ref:Z,tabIndex:"-1"}),q&&(0,s.createElement)(Is,null),q&&(0,s.createElement)("div",{className:"components-popover__header"},(0,s.createElement)("span",{className:"components-popover__header-title"},t),(0,s.createElement)(xl,{className:"components-popover__close",icon:$s,onClick:n})),(0,s.createElement)("div",{ref:j,className:"components-popover__content"},(0,s.createElement)("div",{style:{position:"relative"}},H,o)));return B.ref&&(J=(0,s.createElement)(tl,{name:P},J)),v||_?J:(0,s.createElement)("span",{ref:M},J)};ll.Slot=function(e){var t=e.name,n=void 0===t?nl:t;return(0,s.createElement)(el,{bubblesVirtually:!0,name:n,className:"popover-slot"})};var cl=ll,ul=function(e){var t,n,r=e.shortcut,o=e.className;return r?((0,ie.isString)(r)&&(t=r),(0,ie.isObject)(r)&&(t=r.display,n=r.ariaLabel),(0,s.createElement)("span",{className:o,"aria-label":n},t)):null};function dl(e,t){var n=(0,m.useState)((function(){return{inputs:t,result:e()}}))[0],r=(0,m.useRef)(!0),o=(0,m.useRef)(n),a=r.current||Boolean(t&&o.current.inputs&&function(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}(t,o.current.inputs))?o.current:{inputs:t,result:e()};return(0,m.useEffect)((function(){r.current=!1,o.current=a}),[a]),a.result}function gl(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?gl(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):gl(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var fl=(0,s.createElement)("div",{className:"event-catcher"}),ml=function(e){var t=e.eventHandlers,n=e.child,r=e.childrenWithPopover;return(0,s.cloneElement)((0,s.createElement)("span",{className:"disabled-element-wrapper"},(0,s.cloneElement)(fl,t),(0,s.cloneElement)(n,{children:r}),","),t)},hl=function(e){var t=e.child,n=e.eventHandlers,r=e.childrenWithPopover;return(0,s.cloneElement)(t,pl(pl({},n),{},{children:r}))},yl=function(e,t,n){if(1===s.Children.count(e)){var r=s.Children.only(e);"function"==typeof r.props[t]&&r.props[t](n)}},vl=function(e){var t=e.children,n=e.position,r=e.text,o=e.shortcut,a=Et((0,s.useState)(!1),2),i=a[0],l=a[1],c=Et((0,s.useState)(!1),2),u=c[0],d=c[1],g=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=dl((function(){return ie.debounce.apply(void 0,t)}),t);return(0,s.useEffect)((function(){return function(){return r.cancel()}}),[r]),r}(d,700),p=function(e){yl(t,"onMouseDown",e),document.addEventListener("mouseup",h),l(!0)},f=function(e){yl(t,"onMouseUp",e),document.removeEventListener("mouseup",h),l(!1)},m=function(e){return"mouseUp"===e?f:"mouseDown"===e?p:void 0},h=m("mouseUp"),y=function(e,n){return function(r){if(yl(t,e,r),!(r.currentTarget.disabled||"focus"===r.type&&i)){g.cancel();var o=(0,ie.includes)(["focus","mouseenter"],r.type);o!==u&&(n?g(o):d(o))}}},v=function(){g.cancel()};if((0,s.useEffect)((function(){return v}),[]),1!==s.Children.count(t))return t;var b={onMouseEnter:y("onMouseEnter",!0),onMouseLeave:y("onMouseLeave"),onClick:y("onClick"),onFocus:y("onFocus"),onBlur:y("onBlur"),onMouseDown:m("mouseDown")},_=s.Children.only(t),w=_.props,E=w.children,$=w.disabled?ml:hl,C=function(e){var t=e.grandchildren,n=e.isOver,r=e.position,o=e.text,a=e.shortcut;return(0,s.concatChildren)(t,n&&(0,s.createElement)(cl,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},o,(0,s.createElement)(ul,{className:"components-tooltip__shortcut",shortcut:a})))}(pl({grandchildren:E},{isOver:u,position:n,text:r,shortcut:o}));return $({child:_,eventHandlers:b,childrenWithPopover:C})},bl=function(e){var t=e.icon,n=e.className,r=c(e,["icon","className"]),o=["dashicon","dashicons","dashicons-"+t,n].filter(Boolean).join(" ");return(0,s.createElement)("span",l({className:o},r))};function _l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function wl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_l(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var El=function(e){var t=e.icon,n=void 0===t?null:t,r=e.size,o=c(e,["icon","size"]);if("string"==typeof n)return(0,s.createElement)(bl,l({icon:n},o));if(n&&bl===n.type)return(0,s.cloneElement)(n,wl({},o));var a=r||24;if("function"==typeof n)return n.prototype instanceof s.Component?(0,s.createElement)(n,wl({size:a},o)):n(wl({size:a},o));if(n&&("svg"===n.type||n.type===rs)){var i=wl(wl({width:a,height:a},n.props),o);return(0,s.createElement)(rs,i)}return(0,s.isValidElement)(n)?(0,s.cloneElement)(n,wl({size:a},o)):n};function $l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var Cl=function(e){var t=e.as,n=void 0===t?"div":t,r=e.className,o=c(e,["as","className"]);return function(e){var t=e.as,n=void 0===t?"div":t,r=c(e,["as"]);return"function"==typeof r.children?r.children(r):(0,s.createElement)(n,r)}(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?$l(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):$l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({as:n,className:d()("components-visually-hidden",r)},o))};function kl(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Sl=["onMouseDown","onClick"],xl=(0,s.forwardRef)((function(e,t){var n=e.href,r=e.target,o=e.isPrimary,a=e.isSmall,i=e.isTertiary,u=e.isPressed,g=e.isBusy,p=e.isDefault,f=e.isSecondary,m=e.isLink,h=e.isDestructive,y=e.className,v=e.disabled,b=e.icon,_=e.iconPosition,w=void 0===_?"left":_,E=e.iconSize,$=e.showTooltip,C=e.tooltipPosition,k=e.shortcut,S=e.label,x=e.children,O=e.text,P=e.__experimentalIsFocusable,A=e.describedBy,N=c(e,["href","target","isPrimary","isSmall","isTertiary","isPressed","isBusy","isDefault","isSecondary","isLink","isDestructive","className","disabled","icon","iconPosition","iconSize","showTooltip","tooltipPosition","shortcut","label","children","text","__experimentalIsFocusable","describedBy"]);p&&ss()("Button isDefault prop",{alternative:"isSecondary"});var R=d()("components-button",y,{"is-secondary":p||f,"is-primary":o,"is-small":a,"is-tertiary":i,"is-pressed":u,"is-busy":g,"is-link":m,"is-destructive":h,"has-text":!!b&&!!x,"has-icon":!!b}),T=v&&!P,M=void 0===n||T?"button":"a",j="a"===M?{href:n,target:r}:{type:"button",disabled:T,"aria-pressed":u};if(v&&P){j["aria-disabled"]=!0;var I,F=function(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return kl(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?kl(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,s=!1;return{s:function(){n=e[Symbol.iterator]()},n:function(){var e=n.next();return i=e.done,e},e:function(e){s=!0,a=e},f:function(){try{i||null==n.return||n.return()}finally{if(s)throw a}}}}(Sl);try{for(F.s();!(I=F.n()).done;)N[I.value]=function(e){e.stopPropagation(),e.preventDefault()}}catch(e){F.e(e)}finally{F.f()}}var D=!T&&($&&S||k||!!S&&(!x||(0,ie.isArray)(x)&&!x.length)&&!1!==$),L=A?(0,ie.uniqueId)():null,G=N["aria-describedby"]||L,B=(0,s.createElement)(M,l({},j,N,{className:R,"aria-label":N["aria-label"]||S,"aria-describedby":G,ref:t}),b&&"left"===w&&(0,s.createElement)(El,{icon:b,size:E}),O&&(0,s.createElement)(s.Fragment,null,O),b&&"right"===w&&(0,s.createElement)(El,{icon:b,size:E}),x);return D?(0,s.createElement)(s.Fragment,null,(0,s.createElement)(vl,{text:A||S,shortcut:k,position:C},B),A&&(0,s.createElement)(Cl,null,(0,s.createElement)("span",{id:L},A))):(0,s.createElement)(s.Fragment,null,B,A&&(0,s.createElement)(Cl,null,(0,s.createElement)("span",{id:L},A)))}));function Ol(e){return null!=e}function Pl(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0;return null!==(e=t.find(Ol))&&void 0!==e?e:n}function Al(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Nl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Al(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Al(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Rl={initial:void 0,fallback:""},Tl=function(e,t){var n=(0,s.useRef)(!1);(0,s.useEffect)((function(){if(n.current)return e();n.current=!0}),t)},Ml=(0,s.forwardRef)((function(e,t){var n=e.isOpened,r=e.icon,o=e.title,a=c(e,["isOpened","icon","title"]);return o?(0,s.createElement)("h2",{className:"components-panel__body-title"},(0,s.createElement)(xl,l({className:"components-panel__body-toggle","aria-expanded":n,ref:t},a),(0,s.createElement)("span",{"aria-hidden":"true"},(0,s.createElement)(El,{className:"components-panel__arrow",icon:n?os:as})),o,r&&(0,s.createElement)(El,{icon:r,className:"components-panel__icon",size:20}))):null})),jl=(0,s.forwardRef)((function(e,t){var n=e.buttonProps,r=void 0===n?{}:n,o=e.children,a=e.className,i=e.icon,c=e.initialOpen,u=e.onToggle,g=void 0===u?ie.noop:u,p=e.opened,f=e.title,m=e.scrollAfterOpen,h=void 0===m||m,y=Et(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Rl,n=Nl(Nl({},Rl),t),r=n.initial,o=n.fallback,a=Et((0,s.useState)(e),2),i=a[0],l=a[1],c=Ol(e);return(0,s.useEffect)((function(){c&&i&&l(void 0)}),[c,i]),[Pl([e,i,r],o),function(e){c||l(e)}]}(p,{initial:void 0===c||c}),2),v=y[0],b=y[1],_=(0,s.useRef)(),w=Xi()?"auto":"smooth",E=(0,s.useRef)();E.current=h,Tl((function(){var e;v&&E.current&&null!==(e=_.current)&&void 0!==e&&e.scrollIntoView&&_.current.scrollIntoView({inline:"nearest",block:"nearest",behavior:w})}),[v,w]);var $=d()("components-panel__body",a,{"is-opened":v});return(0,s.createElement)("div",{className:$,ref:nn([_,t])},(0,s.createElement)(Ml,l({icon:i,isOpened:v,onClick:function(e){e.preventDefault();var t=!v;b(t),g(t)},title:f},r)),"function"==typeof o?o({opened:v}):v&&o)}));jl.displayName="PanelBody";var Il=jl,Fl=function(e){var t=e.className,n=e.children,r=d()("components-panel__row",t);return(0,s.createElement)("div",{className:r},n)},Dl=__webpack_require__(4940);const Ll=(e,t,n)=>r=>{(0,Dl.recordEvent)(e,{id:t,action:r?"expand":"collapse",context:n})};function Gl(e){let{trackName:t,faqItems:n,className:r,context:a}=e;return(0,s.createElement)(Yi,{className:d()("gla-faqs-panel",r),header:(0,o.__)("Frequently asked questions","google-listings-and-ads")},n.map((e=>{let{trackId:n,question:r,answer:o}=e;return(0,s.createElement)(Il,{key:n,title:r,initialOpen:!1,onToggle:Ll(t,n,a)},(0,s.createElement)(Fl,null,o))})))}var Bl=window.wc.components,ql=e=>{const{eventName:t,eventProps:n,onClick:r=(()=>{}),...o}=e;return(0,s.createElement)(Bl.Link,l({},o,{onClick:e=>{t&&(0,Dl.recordEvent)(t,n),r(e)}}))},zl=e=>{const{context:t,linkId:n,href:r,...o}=e;return(0,s.createElement)(ql,l({eventProps:{context:t,link_id:n,href:r},type:"external",target:"_blank",href:r},o,{eventName:"gla_documentation_link_click"}))};const Hl=[{trackId:"what-do-i-need-to-get-started",question:(0,o.__)("What do I need to get started?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("In order to sync your WooCommerce store with Google and begin showcasing your products online, you will need to provide the following during setup; Google account access, target audience, shipping information, tax rate information (required for US only), and ensure your store is running on a compatible PHP version. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"general-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/#general-requirements"})}))},{trackId:"what-if-i-already-have-free-listings",question:(0,o.__)("What if I already have Google listings or ads set up? Will syncing my store replace my current Google listings?","google-listings-and-ads"),answer:(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,o.__)("Once you link an existing account to connect your store, your Shopping ads and free listings will stop running. You’ll need to re-upload your feed and product data in order to run Shopping ads and show free listings.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Learn more about claiming URLs <link>here</link>.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"claiming-urls",href:"https://support.google.com/merchants/answer/7527436"})})),(0,s.createElement)("p",null,(0,o.__)("If you have an existing Content API feed, it will not be changed, overwritten or deleted by this WooCommerce integration. Instead, products will be added to your existing Content API feed.","google-listings-and-ads")))},{trackId:"is-my-store-ready-to-sync-with-google",question:(0,o.__)("Is my store ready to sync with Google?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("In order to meet the Google Merchant Center requirements make sure your website has the following; secure checkout process and payment information, refund and return policies, billing terms and conditions, business contact information. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"google-merchant-center-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/#google-merchant-center-requirements"})}))},{trackId:"what-is-a-performance-max-campaign",question:(0,o.__)("What is a Performance Max campaign?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Performance Max campaigns make it easy to connect your WooCommerce store to Google Shopping ads so you can showcase your products to shoppers across Google Search, Maps, Shopping, YouTube, Gmail, the Display Network and Discover feed to drive traffic and sales for your store. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"performance-max",href:"https://woocommerce.com/document/google-listings-and-ads/#google-performance-max-campaigns"})}))},{trackId:"what-are-free-listings",question:(0,o.__)("What are free listings?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Google Free Listings allows stores to showcase eligible products to shoppers looking for what you offer and drive traffic to your store with Google’s free listings on the Shopping tab. Your products can also appear on Google Search, Google Images, and Gmail if you’re selling in the United States. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"free-listings",href:"https://woocommerce.com/document/google-listings-and-ads/#free-listings-on-google"})}))},{trackId:"where-to-track-free-listings-and-performance-max-campaign-performance",question:(0,o.__)("Where can I track my free listings and Performance Max campaign performance?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Once your free listings and Performance Max campaigns are set up, you will be able to track your performance straight from your WooCommerce dashboard. You can view your reports yearly, quarterly, monthly, weekly, or daily. The following metrics will be visible within your report: conversions, clicks, impressions, total sales and total spend. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"campaign-analytics",href:"https://woocommerce.com/document/google-listings-and-ads/#getting-started-with-campaign-analytics"})}))},{trackId:"how-to-sync-products-to-google-free-listings",question:(0,o.__)("How do I sync my products to Google free listings?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,o.__)("The Google Listings and Ads plugin allows you to upload your store and product data to Google. Your products will sync automatically to make relevant information available for free listings, Google Ads, and other Google services. You can create a new Merchant Center account or link an existing account to connect your store and list products across Google.","google-listings-and-ads"))},{trackId:"can-i-run-both-shopping-ads-and-free-listings-campaigns",question:(0,o.__)("Can I run both Shopping ads and free listings campaigns at the same time?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,o.__)("Yes, you can run both at the same time, and we recommend it! In the US, advertisers running free listings and ads together have seen an average of over 50% increase in clicks and over 100% increase in impressions on both free listings and ads on the Shopping tab. Your store is automatically opted into free listings automatically and can choose to run a paid Performance Max campaign.","google-listings-and-ads"))},{trackId:"how-can-i-get-the-ad-credit-offer",question:(0,o.__)("How can I get the $500 ad credit offer?","google-listings-and-ads"),answer:(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,o.__)("Create a new Google Ads account through Google Listings & Ads and a promotional code will be automatically applied to your account. You’ll have 60 days to spend $500 to qualify for the $500 ads credit.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Ad credit amounts vary by country and region. Full terms and conditions can be found <link>here</link>.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"terms-and-conditions-of-google-ads-coupons",href:"https://www.google.com/ads/coupons/terms/"})})))}];var Ul=()=>(0,s.createElement)(Gl,{className:"gla-get-started-faqs",trackName:"gla_faq",context:"get-started",faqItems:Hl}),Vl=__webpack_require__(2454),Wl=__webpack_require__(9648),Yl=__webpack_require__(434);const Kl=e=>{let{linkId:t,href:n}=e;return(0,s.createElement)(Ii,{className:"gla-get-started-features-card__learn-more",variant:"body"},(0,s.createInterpolateElement)((0,o.__)("<link>Learn More →</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"get-started",linkId:t,href:n})}))};var Ql=()=>(0,s.createElement)(De,{className:"gla-get-started-features-card",isBorderless:!0},(0,s.createElement)(zi,null,(0,s.createElement)(Ii,{className:"gla-get-started-features-card__title",variant:"title.medium"},(0,o.__)("49% of shoppers surveyed say they use Google to discover or find a new item or product","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__description",variant:"body"},(0,o.__)("With Google Listings & Ads, connect with the right shoppers at the right moment when they’re looking to buy products like yours.","google-listings-and-ads"))),(0,s.createElement)(ae,{gap:0},(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Vl,alt:(0,o.__)("Drawing of WooCommerce and Google","google-listings-and-ads"),width:"183",height:"100"}),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__label",variant:"label"},(0,o.__)("Show products automatically on Google for free","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__content",variant:"body"},(0,o.__)("When your products are added and approved, they’ll be eligible for free listings, reaching shoppers across Google’s network.","google-listings-and-ads")),(0,s.createElement)(Kl,{linkId:"get-started-features-free-listing-learn-more",href:"https://woocommerce.com/document/google-listings-and-ads/#free-listings-on-google"})),(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Wl,alt:(0,o.__)("Drawing of a mobile and product ads","google-listings-and-ads"),width:"183",height:"100"}),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__label",variant:"label"},(0,o.__)("Promote products and drive more sales with paid ads","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__content",variant:"body"},(0,o.__)("Connect your Google Ads account, choose a budget, and Google will optimize your ads so they appear at the right time and place. ","google-listings-and-ads")),(0,s.createElement)(Kl,{linkId:"get-started-features-google-ads-learn-more",href:"https://woocommerce.com/document/google-listings-and-ads/#google-performance-max-campaigns"})),(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Yl,alt:(0,o.__)("Drawing of a bar and line charts heading up","google-listings-and-ads"),width:"183",height:"100"}),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__label",variant:"label"},(0,o.__)("Track performance straight from your store dashboard","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__content",variant:"body"},(0,o.__)("Real-time reporting all within your WooCommerce dashboard means you know how your campaigns are performing at all times.","google-listings-and-ads")),(0,s.createElement)(Kl,{linkId:"get-started-features-dashboard-learn-more",href:"https://woocommerce.com/document/google-listings-and-ads/#getting-started-with-campaign-analytics"}))));const Zl=window.glaData,Xl="report-source",Jl="paid",ec="free",tc=Jl,nc="programs",rc="submission-success",oc="campaign-creation-success",ac="gla-can-onboarding-setup-ces-prompt-open",ic="GOOGLE_DISCONNECTED",sc="flat_rate",lc="product",cc="account",uc="request-review";var dc=__webpack_require__(4682),gc=e=>{const{className:t,disabled:n,loading:r,eventName:o,eventProps:a,text:i,onClick:c=(()=>{}),...u}=e,g=["app-button",t];let p;return r&&(p=(0,s.createElement)(Bl.Spinner,null)),i&&(p=(0,s.createElement)(s.Fragment,null,r&&(0,s.createElement)(Bl.Spinner,null),i),u.icon&&g.push("app-button--icon-with-text"),"right"===u.iconPosition&&g.push("app-button--icon-position-right")),(0,s.createElement)(xl,l({className:d()(...g),disabled:n||r,text:p,onClick:function(){o&&(0,Dl.recordEvent)(o,a),c(...arguments)}},u))},pc=window.wc.navigation;const fc="/google/dashboard",mc="/google/settings",hc="/free-listings/edit",yc="/campaigns/edit",vc="/campaigns/create",bc="/edit-phone-number",_c="/edit-store-address",wc="/reconnect-wpcom-account",Ec="/reconnect-google-account",$c=fc,Cc=mc,kc=()=>(0,pc.getNewPath)({subpath:vc},$c),Sc=()=>(0,pc.getNewPath)(null,"/google/setup-mc",null),xc=()=>(0,pc.getNewPath)(null,$c,null),Oc=()=>(0,pc.getNewPath)(null,Cc,null),Pc=e=>{let t;switch(e){case"JETPACK_DISCONNECTED":t=wc;break;case ic:t=Ec;break;default:return}return(0,pc.getNewPath)({subpath:t},Cc,null)};var Ac=()=>{const e=!Zl.mcSupportedLanguage;return(0,s.createElement)(De,{className:"gla-get-started-card",isBorderless:!0},(0,s.createElement)(ze,{className:"motivation-image"},(0,s.createElement)("img",{src:dc,alt:(0,o.__)("Google Shopping search results example","google-listings-and-ads"),width:"279",height:"185"})),(0,s.createElement)(qe,null,(0,s.createElement)(Ii,{variant:"title.medium",className:"gla-get-started-card__title"},(0,o.__)("Get your products in front of more shoppers with Google Listings & Ads","google-listings-and-ads")),(0,s.createElement)(gc,{isPrimary:!0,disabled:e,href:Sc(),eventName:"gla_setup_mc",eventProps:{target:"set_up_free_listings",trigger:"click",context:"get-started"}},(0,o.__)("Start listing products →","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-card__terms-notice"},(0,s.createInterpolateElement)((0,o.__)("By clicking ‘Start listing products‘, you agree to our <link>Terms of Service.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"get-started",linkId:"wp-terms-of-service",href:"https://wordpress.com/tos/"})}))))},Nc=function(e){return(0,s.createElement)("div",{className:"components-tip"},(0,s.createElement)(rs,{width:"24",height:"24",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})),(0,s.createElement)("p",null,e.children))};const Rc={allow:"fullscreen",allowtransparency:"true",scrolling:"no",width:"100%",height:"100%",className:"wistia_embed",name:"wistia_embed"};var Tc=e=>{const{id:t,src:n,title:r,iframeProps:a={}}=e,[i,c]=(0,s.useState)(!1);return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ie.noop;(0,s.useEffect)((()=>{const n=document.createElement("script");return n.src=e,n.async=!0,document.body.appendChild(n),n.onload=()=>{t()},()=>{document.body.removeChild(n)}}),[e,t])}("https://fast.wistia.com/assets/external/E-v1.js",(0,s.useCallback)((()=>{window._wq&&window._wq.push({id:t,onReady:e=>{e.bind("play",(()=>c(!0)))}})}),[t,c])),(0,s.createElement)("div",{className:d()("gla-wistia-video",i?"is-playing":"")},(0,s.createElement)("div",{className:"gla-wistia-video__container"},(0,s.createElement)("iframe",l({src:n,title:r?(0,o.sprintf)(// translators: %s: The title of the iframe.
2
- (0,o.__)("%s Video","google-listings-and-ads"),r):(0,o.__)("Wistia Video","google-listings-and-ads")},Rc,a))))},Mc=__webpack_require__(5314),jc=()=>{const e=!Zl.mcSupportedLanguage;return(0,s.createElement)(De,{className:"gla-get-started-with-video-card",isBorderless:!0},(0,s.createElement)(zi,null,(0,s.createElement)("p",null,(0,o.__)("The official extension for WooCommerce, built in collaboration with","google-listings-and-ads")),(0,s.createElement)("img",{src:Mc,alt:(0,o.__)("Google Logo","google-listings-and-ads"),width:"71",height:"24"})),(0,s.createElement)(Li,{className:"motivation-video"},(0,s.createElement)(Tc,{id:"lpvgtsjwrg",src:"https://fast.wistia.net/embed/iframe/lpvgtsjwrg?seo=false&videoFoam=true",title:"WooCommerce-Google-Listings-Ads"})),(0,s.createElement)(qe,null,(0,s.createElement)(Ii,{variant:"title.medium",className:"gla-get-started-with-video-card__title"},(0,o.__)("Reach new customers across Google with free product listings and paid ads","google-listings-and-ads")),(0,s.createElement)(Ii,{variant:"body",className:"gla-get-started-with-video-card__description"},(0,o.__)("Sync your products directly to Google, manage your product feed, and create Google Ad campaigns–without leaving your WooCommerce dashboard. The official extension, built in collaboration with Google.","google-listings-and-ads")),(0,s.createElement)(gc,{className:"gla-get-started-with-video-card__button",isPrimary:!0,disabled:e,href:Sc(),eventName:"gla_setup_mc",eventProps:{target:"set_up_free_listings",trigger:"click",context:"get-started-with-video"}},(0,o.__)("Start listing products →","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-with-video-card__hint"},(0,o.__)("Estimated setup time: 15 min","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-with-video-card__terms-notice",variant:"body"},(0,s.createInterpolateElement)((0,o.__)("By clicking ‘Start listing products’, you agree to our <link>Terms of Service.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"get-started-with-video",linkId:"wp-terms-of-service",href:"https://wordpress.com/tos/"})}))),(0,s.createElement)(Nc,null,(0,o.__)("If you’re already using another extension to manage your product feed with Google, make sure to deactivate or uninstall it first to prevent duplicate product feeds.","google-listings-and-ads")))},Ic=window.wp.a11y,Fc=function(e){var t=e.className,n=e.status,r=void 0===n?"info":n,a=e.children,i=e.spokenMessage,l=void 0===i?a:i,c=e.onRemove,u=void 0===c?ie.noop:c,g=e.isDismissible,p=void 0===g||g,f=e.actions,m=void 0===f?[]:f,h=e.politeness,y=void 0===h?function(e){switch(e){case"success":case"warning":case"info":return"polite";default:return"assertive"}}(r):h,v=e.__unstableHTML;!function(e,t){var n="string"==typeof e?e:(0,s.renderToString)(e);(0,s.useEffect)((function(){n&&(0,Ic.speak)(n,t)}),[n,t])}(l,y);var b=d()(t,"components-notice","is-"+r,{"is-dismissible":p});return v&&(a=(0,s.createElement)(s.RawHTML,null,a)),(0,s.createElement)("div",{className:b},(0,s.createElement)("div",{className:"components-notice__content"},a,m.map((function(e,t){var n=e.className,r=e.label,o=e.isPrimary,a=e.noDefaultClasses,i=void 0!==a&&a,l=e.onClick,c=e.url;return(0,s.createElement)(xl,{key:t,href:c,isPrimary:o,isSecondary:!i&&!c,isLink:!i&&!!c,onClick:c?void 0:l,className:d()("components-notice__action",n)},r)}))),p&&(0,s.createElement)(xl,{className:"components-notice__dismiss",icon:$s,label:(0,o.__)("Dismiss this notice"),onClick:u,showTooltip:!1}))},Dc=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}));const Lc="wc/gla",Gc="core/notices";var Bc,qc,zc=window.wp.dataControls,Hc=window.wp.apiFetch,Uc=__webpack_require__.n(Hc),Vc="RECEIVE_SHIPPING_RATES",Wc="UPSERT_SHIPPING_RATES",Yc="DELETE_SHIPPING_RATES",Kc="RECEIVE_SHIPPING_TIMES",Qc="UPSERT_SHIPPING_TIMES",Zc="DELETE_SHIPPING_TIMES",Xc="RECEIVE_SETTINGS",Jc="SAVE_SETTINGS",eu="RECEIVE_ACCOUNTS_JETPACK",tu="RECEIVE_ACCOUNTS_GOOGLE",nu="RECEIVE_ACCOUNTS_GOOGLE_ACCESS",ru="RECEIVE_ACCOUNTS_GOOGLE_MC",ou="RECEIVE_ACCOUNTS_GOOGLE_MC_EXISTING",au="RECEIVE_ACCOUNTS_GOOGLE_ADS",iu="DISCONNECT_ACCOUNTS_GOOGLE",su="DISCONNECT_ACCOUNTS_GOOGLE_ADS",lu="DISCONNECT_ACCOUNTS_ALL",cu="RECEIVE_ACCOUNTS_GOOGLE_ADS_BILLING_STATUS",uu="RECEIVE_ACCOUNTS_GOOGLE_ADS_EXISTING",du="RECEIVE_MC_CONTACT_INFORMATION",gu="VERIFIED_MC_PHONE_NUMBER",pu="RECEIVE_MC_COUNTRIES_AND_CONTINENTS",fu="RECEIVE_TARGET_AUDIENCE",mu="SAVE_TARGET_AUDIENCE",hu="RECEIVE_ADS_CAMPAIGNS",yu="CREATE_ADS_CAMPAIGN",vu="UPDATE_ADS_CAMPAIGN",bu="DELETE_ADS_CAMPAIGN",_u="RECEIVE_MC_SETUP",wu="RECEIVE_REPORT",Eu="RECEIVE_MC_PRODUCT_STATISTICS",$u="RECEIVE_MC_REVIEW_REQUEST",Cu="RECEIVE_MC_ISSUES",ku="RECEIVE_MC_PRODUCT_FEED",Su="UPDATE_MC_PRODUCTS_VISIBILITY";function xu(e){const t=e.targeted_locations.length>0,n=t?e.targeted_locations:[e.country];return{...e,allowMultiple:t,displayCountries:n}}function Ou(e,t){const{createNotice:n}=(0,dn.dispatch)("core/notices");401!==e.statusCode&&n("error",t),console.log(e)}function*Pu(){try{const e=(yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/rates"})).map((e=>({...e,rate:Number(e.rate)})));return{type:Vc,shippingRates:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading shipping rates.","google-listings-and-ads"))}}function*Au(e){const t=(yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/rates/batch",method:"POST",data:{rates:e}})).success.map((e=>({...e.rate,rate:Number(e.rate.rate)})));return{type:Wc,shippingRates:t}}function*Nu(e){return yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/rates/batch",method:"DELETE",data:{ids:e}}),{type:Yc,ids:e}}function*Ru(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/times"}),t=Object.values(e).map((e=>({countryCode:e.country_code,time:Number(e.time)})));return{type:Kc,shippingTimes:t}}catch(e){yield Ou(e,(0,o.__)("There was an error loading shipping times.","google-listings-and-ads"))}}function*Tu(e){const{countryCodes:t,time:n}=e;try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/times/batch",method:"POST",data:{country_codes:t,time:n}}),{type:Qc,shippingTime:e}}catch(e){yield Ou(e,(0,o.__)("There was an error trying to add / update shipping times. Please try again later.","google-listings-and-ads"))}}function*Mu(e){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/times/batch",method:"DELETE",data:{country_codes:e}}),{type:Zc,countryCodes:e}}catch(e){yield Ou(e,(0,o.__)("There was an error trying to delete shipping times. Please try again later.","google-listings-and-ads"))}}function*ju(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/settings"});return{type:Xc,settings:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading merchant center settings.","google-listings-and-ads"))}}function*Iu(e){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/settings",method:"POST",data:e}),{type:Jc,settings:e}}catch(e){yield Ou(e,(0,o.__)("There was an error trying to save settings. Please try again later.","google-listings-and-ads"))}}function*Fu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/jetpack/connected"});return{type:eu,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Jetpack account info.","google-listings-and-ads"))}}function*Du(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/google/connected"});return{type:tu,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google account info.","google-listings-and-ads"))}}function Lu(e){return{type:nu,data:e}}function*Gu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/connection"});return{type:ru,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google Merchant Center account info.","google-listings-and-ads"))}}function*Bu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/accounts"});return{type:ou,accounts:e}}catch(e){yield Ou(e,(0,o.__)("There was an error getting your Google Merchant Center accounts.","google-listings-and-ads"))}}function*qu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/ads/connection"});return{type:au,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google Ads account info.","google-listings-and-ads"))}}function*zu(){try{return yield(0,zc.apiFetch)({path:"/wc/gla/google/connect",method:"DELETE"}),{type:iu}}catch(e){throw yield Ou(e,(0,o.__)("Unable to disconnect your Google account. Please try again later.","google-listings-and-ads")),e}}function*Hu(){try{return yield(0,zc.apiFetch)({path:"/wc/gla/ads/connection",method:"DELETE"}),{type:su}}catch(e){throw yield Ou(e,(0,o.__)("Unable to disconnect your Google Ads account. Please try again later.","google-listings-and-ads")),e}}function*Uu(){try{return yield(0,zc.apiFetch)({path:"/wc/gla/connections",method:"DELETE"}),{type:lu}}catch(e){throw yield Ou(e,(0,o.__)("Unable to disconnect all your accounts. Please try again later.","google-listings-and-ads")),e}}function*Vu(){try{return td(yield(0,zc.apiFetch)({path:"/wc/gla/ads/billing-status"}))}catch(e){yield Ou(e,(0,o.__)("There was an error getting the billing status of your Google Ads account.","google-listings-and-ads"))}}function*Wu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/ads/accounts"});return{type:uu,accounts:e}}catch(e){yield Ou(e,(0,o.__)("There was an error getting your Google Ads accounts.","google-listings-and-ads"))}}function Yu(e){return{type:du,data:e}}function*Ku(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/contact-information",method:"POST"});yield Yu(e)}catch(e){throw yield Ou(e,(0,o.__)("Unable to update your Google Merchant Center contact information. Please try again later.","google-listings-and-ads")),e}}function*Qu(e,t,n){try{return{verificationId:(yield(0,zc.apiFetch)({path:"/wc/gla/mc/phone-verification/request",method:"POST",data:{phone_region_code:e,phone_number:t,verification_method:n}})).verification_id}}catch(e){if("rateLimitExceeded"===e.reason)throw{...e,display:(0,o.__)("Unable to initiate the verification code request. A maximum of five attempts to verify the same phone number every four hours. Please try again later.","google-listings-and-ads")};yield Ou(e,(0,o.__)("Unable to request the phone verification code. Please try again later.","google-listings-and-ads"))}}function*Zu(e,t,n){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/phone-verification/verify",method:"POST",data:{verification_id:e,verification_code:t,verification_method:n}}),{type:gu}}catch(e){const{reason:t,message:n=""}=e;if("badRequest"===t){const[,t]=n.match(/^\[(\w+)\]/)||[],r={verificationCode:(0,o.__)("Wrong verification code. Please try again.","google-listings-and-ads"),verificationId:(0,o.__)("The verification code has expired. Please initiate a new verification request by the resend button.","google-listings-and-ads")};if(t in r)throw{...e,display:r[t]}}yield Ou(e,(0,o.__)("Unable to verify your phone number. Please try again later.","google-listings-and-ads"))}}function*Xu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/target_audience"});return{type:fu,target_audience:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading target audience.","google-listings-and-ads"))}}function Ju(e){return{type:ru,account:e}}function ed(e){return{type:au,account:e}}function td(e){return{type:cu,billingStatus:e}}function*nd(e){return yield(0,zc.apiFetch)({path:"/wc/gla/mc/target_audience",method:"POST",data:e}),{type:mu,target_audience:e}}function*rd(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/ads/campaigns"});return{type:hu,adsCampaigns:e.map(xu)}}catch(e){yield Ou(e,(0,o.__)("There was an error loading ads campaigns.","google-listings-and-ads"))}}function*od(e,t){try{const n=yield(0,zc.apiFetch)({path:"/wc/gla/ads/campaigns",method:"POST",data:{amount:e,targeted_locations:t}});return{type:yu,createdCampaign:xu(n)}}catch(e){throw yield Ou(e,(0,o.__)("Unable to create your paid ads campaign. Please try again later.","google-listings-and-ads")),e}}function*ad(e,t){try{return yield(0,zc.apiFetch)({path:`/wc/gla/ads/campaigns/${e}`,method:"PATCH",data:t}),{type:vu,id:e,data:t}}catch(e){throw yield Ou(e,(0,o.__)("Unable to update your paid ads campaign. Please try again later.","google-listings-and-ads")),e}}function*id(e){try{return yield(0,zc.apiFetch)({path:`/wc/gla/ads/campaigns/${e}`,method:"DELETE"}),{type:bu,id:e}}catch(e){throw yield Ou(e,(0,o.__)("Unable to delete your paid ads campaign. Please try again later.","google-listings-and-ads")),e}}function sd(e,t){return{type:wu,reportKey:e,data:t}}function*ld(){try{return cd(yield(0,zc.apiFetch)({path:"/wc/gla/mc/setup"}))}catch(e){yield Ou(e,(0,o.__)("There was an error loading your merchant center setup status.","google-listings-and-ads"))}}function*cd(e){return{type:_u,mcSetup:e}}function*ud(e){return{type:Eu,mcProductStatistics:e}}function*dd(e){return{type:$u,mcReviewRequest:e}}function*gd(e,t){return{type:Cu,query:e,data:t}}function*pd(e,t){return{type:ku,query:e,data:t}}function*fd(e,t){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/product-visibility",method:"POST",data:{ids:e,visible:t}}),{type:Su}}catch(e){throw yield Ou(e,(0,o.__)("Unable to update the channel visibility of products. Please try again later.","google-listings-and-ads")),e}}function*md(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/review",method:"POST"});return yield dd(e)}catch(e){throw yield Ou(e,null==e?void 0:e.message),e}}function hd(e){return[e]}function yd(e){return!!e&&"object"==typeof e}function vd(){var e={clear:function(){e.head=null}};return e}function bd(e,t,n){var r;if(e.length!==t.length)return!1;for(r=n;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}function _d(e,t){var n,r;function o(){n=qc?new WeakMap:vd()}function a(){var n,o,a,i,s,l=arguments.length;for(i=new Array(l),a=0;a<l;a++)i[a]=arguments[a];for(s=t.apply(null,i),(n=r(s)).isUniqueByDependants||(n.lastDependants&&!bd(s,n.lastDependants,0)&&n.clear(),n.lastDependants=s),o=n.head;o;){if(bd(o.args,i,1))return o!==n.head&&(o.prev.next=o.next,o.next&&(o.next.prev=o.prev),o.next=n.head,o.prev=null,n.head.prev=o,n.head=o),o.val;o=o.next}return o={val:e.apply(null,i)},i[0]=null,o.args=i,n.head&&(n.head.prev=o,o.next=n.head),n.head=o,o.val}return t||(t=hd),r=qc?function(e){var t,r,o,a,i=n,s=!0;for(t=0;t<e.length;t++){if(!yd(r=e[t])){s=!1;break}i.has(r)?i=i.get(r):(o=new WeakMap,i.set(r,o),i=o)}return i.has(Bc)||((a=vd()).isUniqueByDependants=s,i.set(Bc,a)),i.get(Bc)}:function(){return n},a.getDependants=t,a.clear=o,o(),a}Bc={},qc="undefined"!=typeof WeakMap;var wd=window.wp.date,Ed=__webpack_require__(9171);const $d=["clicks","impressions"],Cd=["sales","conversions","spend",...$d],kd=Object.freeze({NONE:0,FOR_METRIC:1,FOR_REQUEST:2});function Sd(e,t,n){const r=(0,Ed.getCurrentDates)(t);return{after:(0,wd.format)("Y-m-d",r[n].after),before:(0,wd.format)("Y-m-d",r[n].before),fields:"free"===e?$d:Cd}}function xd(e,t,n){return`${e}:${t}:${JSON.stringify(n,Object.keys(n).sort())}`}function Od(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;return(n||Object.keys(e)).reduce(((n,r)=>({...n,[r]:Pd(e[r],t[r],e[r]&&t[r]?kd.NONE:kd.FOR_REQUEST)})),{})}const Pd=(e,t,n)=>({value:e,delta:Ad(e,t),prevValue:t,missingFreeListingsData:n});function Ad(e,t){let n=null;if("number"==typeof e&&"number"==typeof t&&(n=0,e!==t)){const r=(e-t)/t*100;n=Number.isFinite(r)?function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;const n=Math.pow(10,t);return Math.round(e*n)/n}(r):null}return n}const Nd=e=>e.mc.shipping.rates,Rd=e=>e.mc.shipping.times,Td=e=>e.mc.settings,Md=e=>e.mc.accounts.jetpack,jd=e=>e.mc.accounts.google,Id=e=>e.mc.accounts.google_access,Fd=e=>e.mc.accounts.mc,Dd=e=>e.mc.accounts.existing_mc,Ld=e=>e.mc.accounts.ads,Gd=e=>e.mc.accounts.ads_billing_status,Bd=e=>e.mc.accounts.existing_ads,qd=e=>e.mc.contact,zd=(0,dn.createRegistrySelector)((e=>t=>{const n=e(Lc);return{loaded:!!qd(t)||n.hasFinishedResolution("getGoogleMCContactInformation"),data:n.getGoogleMCContactInformation()}})),Hd=_d((e=>{const{countries:t,continents:n}=e.mc;return{countries:t,continents:n}}),(e=>[e.mc.countries,e.mc.continents])),Ud=e=>e.mc.target_audience,Vd=e=>e.ads_campaigns,Wd=e=>e.mc_setup,Yd=e=>e.mc_product_statistics,Kd=e=>e.mc_review_request,Qd=_d(((e,t)=>{const n=e.mc_issues[t.issue_type];if(!n)return n;const r=(t.page-1)*t.per_page,o=r+t.per_page;return{issues:n.issues.slice(r,o),total:n.total}}),(e=>[e.mc_issues])),Zd=(e,t)=>e.mc_product_feed?{products:e.mc_product_feed.pages[t.page],total:e.mc_product_feed.total}:e.mc_product_feed,Xd=(e,t,n,r)=>{const o=xd(t,n,r);return e.report[o]||null},Jd=(0,dn.createRegistrySelector)((e=>(t,n,r,o,a)=>{const i=e(Lc),s=function(e,t,n,r){const o=Sd(t,n,r),{order:a="desc"}=n;let{orderby:i}=n;i&&o.fields.includes(i)||(i=o.fields[0]);const s={...o,interval:"day",orderby:i,order:a};return"programs"===e&&n.programs?s.ids=n.programs:"products"===e&&n.products&&(s.ids=n.products.replace(/\d+/g,"gla_$&")),s}(n,r,o,a),l=[n,r,s];return{reportQuery:s,loaded:i.hasFinishedResolution("getReportByApiQuery",l),data:i.getReportByApiQuery(...l)}})),eg=(0,dn.createRegistrySelector)((e=>(t,n,r,o)=>{const a=e(Lc),i=["programs",n,Sd(n,r,o)],s=a.getReportByApiQuery(...i);return{data:s?s.totals:null,loaded:a.hasFinishedResolution("getReportByApiQuery",i)}}));var tg=window.wp.url;function*ng(){yield Pu()}function*rg(){yield Ru()}function*og(){yield ju()}function*ag(){yield Fu()}function*ig(){yield Du()}function*sg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/google/reconnected"});yield Lu(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google account access info.","google-listings-and-ads"))}}function*lg(){yield Gu()}function*cg(){yield Bu()}function*ug(){yield qu()}function*dg(){yield Vu()}function*gg(){yield Wu()}function*pg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/contact-information"});yield Yu(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google Merchant Center contact information.","google-listings-and-ads"))}}function*fg(){try{const e={continents:!0},t=(0,tg.addQueryArgs)("/wc/gla/mc/countries",e),n=yield(0,zc.apiFetch)({path:t});return{type:pu,data:n}}catch(e){yield Ou(e,(0,o.__)("There was an error loading supported country details.","google-listings-and-ads"))}}function*mg(){yield Xu()}function*hg(){yield rd()}function*yg(){yield ld()}function*vg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/product-statistics"});yield ud(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading your merchant center product statistics.","google-listings-and-ads"))}}function*bg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/review"});yield dd(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading your merchant center product review request status.","google-listings-and-ads"))}}function*_g(e){try{const{issue_type:t,...n}=e,r=yield(0,zc.apiFetch)({path:(0,tg.addQueryArgs)(`/wc/gla/mc/issues/${t||cc}`,n)});yield gd(e,r)}catch(e){yield Ou(e,(0,o.__)("There was an error loading issues to resolve.","google-listings-and-ads"))}}function*wg(e){try{const t=yield(0,zc.apiFetch)({path:(0,tg.addQueryArgs)("/wc/gla/mc/product-feed",e)});yield pd(e,t)}catch(e){yield Ou(e,(0,o.__)("There was an error loading product feed.","google-listings-and-ads"))}}ig.shouldInvalidate=e=>e.type===iu,sg.shouldInvalidate=e=>e.type===iu,pg.shouldInvalidate=e=>e.type===gu,_g.shouldInvalidate=e=>e.type===Su,wg.shouldInvalidate=(e,t)=>e.type===Su||e.type===ku&&(e.query.per_page!==t.per_page||e.query.orderby!==t.orderby||e.query.order!==t.order);const Eg=new Map([[ec,"mc"],[Jl,"ads"]]);function*$g(e,t,n){const r=`/wc/gla/${Eg.get(t)}/reports/${e}`,a=(0,tg.addQueryArgs)(r,n);try{const r=yield(0,zc.apiFetch)({path:a}),o=xd(e,t,n);yield sd(o,r)}catch(e){yield Ou(e,(0,o.__)("There was an error loading report.","google-listings-and-ads"))}}const Cg={mc:{target_audience:null,countries:null,continents:null,shipping:{rates:[],times:[]},settings:null,accounts:{jetpack:null,google:null,mc:null,ads:null,existing_mc:null,existing_ads:null,ads_billing_status:null,google_access:null},contact:null},ads_campaigns:null,mc_setup:null,mc_product_statistics:null,mc_issues:{account:null,product:null},mc_review_request:{status:null,cooldown:null,issues:null,reviewEligibleRegions:[]},mc_product_feed:null,report:{}};function kg(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const n=Object.assign(e.constructor(),e),r=e=>null==e?{}:(0,ie.clone)(e),o=e=>t?Array.isArray(t)||Array.isArray(e)?[].concat(t,e):`${t}.${e}`:e;return{setIn(e,t){const a=o(e);return(0,ie.setWith)(n,a,t,r),this},end:()=>n}}function Sg(e,t,n){return kg(e).setIn(t,n).end()}function xg(e,t){return t?e.json?e.json():Promise.reject(e):e}(0,dn.registerStore)(Lc,{actions:t,selectors:n,resolvers:r,controls:zc.controls,reducer:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Cg,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case Vc:return Sg(e,"mc.shipping.rates",t.shippingRates);case Wc:{const{shippingRates:n}=t,r=[...e.mc.shipping.rates];return n.forEach((e=>{const t=r.findIndex((t=>t.id===e.id));t>=0?r[t]=e:r.push(e)})),Sg(e,"mc.shipping.rates",r)}case Yc:{const{ids:n}=t,r=e.mc.shipping.rates.filter((e=>!n.includes(e.id)));return Sg(e,"mc.shipping.rates",r)}case Kc:return Sg(e,"mc.shipping.times",t.shippingTimes);case Qc:{const{countryCodes:n,time:r}=t.shippingTime,o=[...e.mc.shipping.times];return n.forEach((e=>{const t={countryCode:e,time:r},n=o.findIndex((t=>t.countryCode===e));n>=0?o[n]=t:o.push(t)})),Sg(e,"mc.shipping.times",o)}case Zc:{const n=new Set(t.countryCodes),r=e.mc.shipping.times.filter((e=>!n.has(e.countryCode)));return Sg(e,"mc.shipping.times",r)}case Xc:return Sg(e,"mc.settings",t.settings);case Jc:return Sg(e,"mc.settings",{...e.mc.settings,...t.settings});case eu:return Sg(e,"mc.accounts.jetpack",t.account);case tu:return Sg(e,"mc.accounts.google",t.account);case nu:return Sg(e,"mc.accounts.google_access",t.data);case ru:return Sg(e,"mc.accounts.mc",t.account);case ou:return Sg(e,"mc.accounts.existing_mc",t.accounts);case au:return Sg(e,"mc.accounts.ads",t.account);case su:return Sg(e,"mc.accounts.ads",Cg.mc.accounts.ads);case cu:return Sg(e,"mc.accounts.ads_billing_status",t.billingStatus);case uu:return Sg(e,"mc.accounts.existing_ads",t.accounts);case du:return Sg(e,"mc.contact",t.data);case pu:{const{data:n}=t;return kg(e,"mc").setIn("countries",n.countries).setIn("continents",n.continents).end()}case fu:case mu:return Sg(e,"mc.target_audience",t.target_audience);case hu:return Sg(e,"ads_campaigns",t.adsCampaigns);case yu:return Sg(e,"ads_campaigns",[...e.ads_campaigns||[],t.createdCampaign]);case vu:{const{id:n,data:r}=t,o=e.ads_campaigns.findIndex((e=>e.id===n)),a={...e.ads_campaigns[o],...r},i=[...e.ads_campaigns];return i[o]=a,Sg(e,"ads_campaigns",i)}case bu:{const{id:n}=t,r=e.ads_campaigns.filter((e=>e.id!==n));return Sg(e,"ads_campaigns",r)}case _u:return Sg(e,"mc_setup",t.mcSetup);case Eu:return Sg(e,"mc_product_statistics",t.mcProductStatistics);case $u:return Sg(e,"mc_review_request",t.mcReviewRequest);case Cu:{var n;const{query:r,data:o}=t,a=(null===(n=e.mc_issues[r.issue_type])||void 0===n?void 0:n.issues.slice())||[];return a.splice((r.page-1)*r.per_page,r.per_page,...o.issues),kg(e,`mc_issues.${r.issue_type}`).setIn("issues",a).setIn("total",o.total).end()}case ku:{const{query:n,data:r}=t,o=e.mc_product_feed||{},a=kg(e,"mc_product_feed");return o.per_page===n.per_page&&o.order===n.order&&o.orderby===n.orderby||a.setIn("pages",{}),a.setIn(["pages",n.page],r.products).setIn("per_page",n.per_page).setIn("order",n.order).setIn("orderby",n.orderby).setIn("total",r.total).end()}case wu:{const{reportKey:n,data:r}=t;return Sg(e,["report",n],r)}default:return e}}}),Uc().use(function(e){const t=new RegExp("^/wc/gla/");return function(n,r){if(!t.test(n.path))return r(n);const{parse:o=!0}=n;return r({...n,parse:!1}).catch(e).catch((async e=>Promise.reject(await xg(e,o)))).then((e=>o&&204===e.status?null:xg(e,o)))}}((e=>{if(Zl.mcSetupComplete&&401===e.status)return(e.json||e.text).call(e).then((e=>"string"==typeof e?{message:e}:e)).then((e=>{const t=Pc(e.code);return t&&(0,pc.getHistory)().replace(t),e})).then((t=>Promise.reject({...t,statusCode:e.status})));throw e})));const Og=()=>(0,dn.useDispatch)(Lc);var Pg=e=>{const t=(0,s.useRef)(e);return(0,ie.isEqual)(t.current,e)||(t.current=e),t.current},Ag=function(e){const{invalidateResolution:t}=Og();for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];const a=Pg(r),i=(0,s.useCallback)((()=>{t(e,a)}),[t,e,a]);return(0,dn.useSelect)((t=>{const{isResolving:n,hasFinishedResolution:r}=t(Lc),o=t(Lc)[e](...a);return{isResolving:n(e,a),hasFinishedResolution:r(e,a),data:o,invalidateResolution:i}}),[i,e,a])},Ng=()=>Ag("getTargetAudience"),Rg=window.wc.data;function Tg(){return(0,dn.useSelect)((e=>{const{getSetting:t}=e(Rg.SETTINGS_STORE_NAME),n=(0,i.getSetting)("countries"),r=t("general","general"),[o]=r.woocommerce_default_country.split(":");return{code:o,name:n[o]}}),[])}const Mg=()=>(0,s.createElement)(El,{className:"gla-get-started-notice__icon",icon:Dc,size:18}),jg=()=>{const{data:e}=Ng();return e?(0,s.createElement)(Fc,{className:"gla-get-started-notice",status:"error",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("Your site language is <language />. This language is currently not supported by Google Listings & Ads. <settingsLink>You can change your site language here</settingsLink>. <supportedLanguagesLink>Read more about supported languages</supportedLanguagesLink>","google-listings-and-ads"),{language:(0,s.createElement)("strong",null,e.language),settingsLink:(0,s.createElement)(Bl.Link,{className:"gla-get-started-notice__link",type:"wp-admin",href:"/wp-admin/options-general.php"}),supportedLanguagesLink:(0,s.createElement)(zl,{className:"gla-get-started-notice__link",href:"https://support.google.com/merchants/answer/160637",context:"get-started",linkId:"supported-languages"})}),(0,s.createElement)(Mg,null)):null},Ig=()=>{const{name:e}=Tg();return e?(0,s.createElement)(Fc,{className:"gla-get-started-notice",status:"warning",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("Your store’s country is <country />. This country is currently not supported by Google Listings & Ads. However, you can still choose to list your products in another supported country, if you are able to sell your products to customers there. <settingsLink>Change your store’s country here</settingsLink>. <supportedCountriesLink>Read more about supported countries</supportedCountriesLink>","google-listings-and-ads"),{country:(0,s.createElement)("strong",null,e),settingsLink:(0,s.createElement)(Bl.Link,{className:"gla-get-started-notice__link",type:"wp-admin",href:"/wp-admin/admin.php?page=wc-settings"}),supportedCountriesLink:(0,s.createElement)(zl,{className:"gla-get-started-notice__link",href:"https://support.google.com/merchants/answer/160637",context:"get-started",linkId:"supported-countries"})}),(0,s.createElement)(Mg,null)):null};function Fg(){const{mcSupportedLanguage:e,mcSupportedCountry:t}=Zl;return(0,s.createElement)(s.Fragment,null,!e&&(0,s.createElement)(jg,null),!t&&(0,s.createElement)(Ig,null))}var Dg=()=>(0,s.createElement)("div",{className:"woocommerce-marketing-google-get-started-page"},(0,s.createElement)(Fg,null),(0,s.createElement)(jc,null),(0,s.createElement)(Di,null),(0,s.createElement)(Ql,null),(0,s.createElement)(Vi,null),(0,s.createElement)(Ac,null),(0,s.createElement)(Ul,null));const Lg={"full-page":["woocommerce-admin-full-screen","is-wp-toolbar-disabled","gla-full-page"],"full-content":["gla-full-content"]};function Gg(e){(0,s.useEffect)((()=>{if(!Lg.hasOwnProperty(e))return;const t=document.body.classList,n=Lg[e].filter((e=>!t.contains(e)));return t.add(...n),()=>{t.remove(...n)}}),[e])}var Bg=__webpack_require__(8222),qg=e=>{let{title:t,backHref:n,helpButton:r,onBackButtonClick:o}=e;return(0,s.createElement)("div",{className:"gla-stepper-top-bar"},(0,s.createElement)(Bl.Link,{className:"back-button",href:n,type:"wc-admin",onClick:o},(0,s.createElement)(Bg.Z,null)),(0,s.createElement)("span",{className:"title"},t),(0,s.createElement)("div",{className:"actions"},r))},zg=__webpack_require__(7719),Hg=e=>{const{icon:t,text:n,className:r="",...o}=e;return(0,s.createElement)(gc,l({className:`app-icon-button ${r}`},o),(0,s.createElement)("div",null,t),n)},Ug=e=>{const{eventContext:t,...n}=e;return(0,s.createElement)(Hg,l({icon:(0,s.createElement)(zg.Z,null),text:(0,o.__)("Help","google-listings-and-ads"),href:"https://docs.woocommerce.com/document/google-listings-and-ads/",target:"_blank",eventName:"gla_help_click",eventProps:{context:t}},n))},Vg=()=>(0,s.createElement)(qg,{title:(0,o.__)("Get started with Google Listings & Ads","google-listings-and-ads"),helpButton:(0,s.createElement)(Ug,{eventContext:"setup-mc"}),backHref:(0,pc.getNewPath)({},"/google/start"),onBackButtonClick:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"back",trigger:"click"})}}),Wg=()=>(0,s.createElement)("div",{className:"app-spinner"},(0,s.createElement)(Bl.Spinner,null)),Yg=()=>(0,dn.useSelect)((e=>({jetpack:e(Lc).getJetpackAccount(),isResolving:e(Lc).isResolving("getJetpackAccount"),hasFinishedResolution:e(Lc).hasFinishedResolution("getJetpackAccount")})),[]);const Kg="https://www.googleapis.com/auth/content",Qg="https://www.googleapis.com/auth/siteverification.verify_only",Zg="https://www.googleapis.com/auth/adwords";function Xg(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];const n={adsRequired:t.includes(Zg)};return n.gmcRequired=t.includes(Kg)&&t.includes(Qg),n.glaRequired=e?n.gmcRequired&&n.adsRequired:n.gmcRequired,n}var Jg=()=>{const{jetpack:e,isResolving:t,hasFinishedResolution:n}=Yg();return(0,dn.useSelect)((r=>{if(!e||"no"===e.active)return{google:void 0,scope:Xg(Zl.adsSetupComplete),isResolving:t,hasFinishedResolution:n};const{getGoogleAccount:o,isResolving:a,hasFinishedResolution:i}=r(Lc),s=o();return{google:s,scope:Xg(Zl.adsSetupComplete,null==s?void 0:s.scope),isResolving:a("getGoogleAccount"),hasFinishedResolution:i("getGoogleAccount")}}),[e,t,n])},ep=()=>{const{google:e,scope:t,isResolving:n,hasFinishedResolution:r}=Jg();return(0,dn.useSelect)((o=>{if(!e||"no"===e.active||!t.gmcRequired)return{googleMCAccount:void 0,isResolving:n,hasFinishedResolution:r};const{getGoogleMCAccount:a,isResolving:i,hasFinishedResolution:s}=o(Lc);return{googleMCAccount:a(),isResolving:i("getGoogleMCAccount"),hasFinishedResolution:s("getGoogleMCAccount")}}),[e,t.gmcRequired,n,r])},tp=e=>{const{className:t="",children:n,...r}=e;return(0,s.createElement)("div",l({className:`gla-step-content ${t}`},r),(0,s.createElement)("div",{className:"gla-step-content__container"},n))},np=e=>{const{className:t="",title:n,description:r}=e;return(0,s.createElement)("header",{className:`gla-step-content-header ${t}`},(0,s.createElement)("h1",null,n),(0,s.createElement)("div",{className:"description"},r))},rp=e=>{const{className:t="",...n}=e;return(0,s.createElement)("div",l({className:`gla-step-content-footer ${t}`},n))};function op(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ap(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?op(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):op(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ip={isBorderless:!1,isShady:!1,size:"medium"},sp=function(e){var t=e.className,n=e.isShady,r=c(e,["className","isShady"]),o=ap(ap(ap({},ip),p()),e),a=o.isBorderless,i=o.size,u=d()("components-card__footer",a&&"is-borderless",n&&"is-shady",i&&"is-size-".concat(i),t);return(0,s.createElement)(Re,l({},r,{className:u}))};const lp=e=>{const{className:t="",...n}=e;return(0,s.createElement)("div",l({className:`wcdl-subsection ${t}`},n))};lp.Title=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",l({className:d()("wcdl-subsection-title",t)},n))},lp.Body=e=>{const{children:t}=e;return(0,s.createElement)("div",{className:"wcdl-subsection-body"},t)},lp.HelperText=e=>{const{className:t,children:n}=e;return(0,s.createElement)("div",{className:d()("wcdl-subsection-helper-text",t)},n)};var cp=lp;const up=e=>{let{size:t="",...n}=e;return(0,s.createElement)(De,l({},n,{size:t}))};up.Body=e=>{const{className:t,...n}=e;return(0,s.createElement)(qe,l({className:d()("wcdl-section-card-body",t)},n))},up.Footer=e=>{const{children:t,...n}=e;return(0,s.createElement)(sp,l({className:"wcdl-section-card-footer"},n),t)},up.Title=e=>{const{className:t,...n}=e;return(0,s.createElement)(cp.Title,l({className:d()("wcdl-section-card-title",t)},n))};const dp=e=>{let{className:t,title:n,description:r,children:o,disabled:a}=e;const i=d()("wcdl-section",!!a&&"wcdl-section--is-disabled",t);return(0,s.createElement)("section",{className:i},(0,s.createElement)("header",null,n&&(0,s.createElement)("h1",null,n),r),(0,s.createElement)("div",{className:"wcdl-section__body"},o))};dp.Card=up;var gp=dp;const pp={normal:!1,large:"gla-vertical-gap-layout__large",overlap:"gla-vertical-gap-layout__overlap"};var fp=e=>{const{className:t,size:n="normal",...r}=e;return(0,s.createElement)("div",l({className:d()("gla-vertical-gap-layout",pp[n],t)},r))};function mp(e){return"yes"!==e.active?"":"yes"===e.owner?e.email:(0,o.__)("Successfully connected through Jetpack","google-listings-and-ads")}var hp=__webpack_require__(4886);function yp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var vp=function(e){var t=e.icon,n=e.size,r=void 0===n?24:n,o=c(e,["icon","size"]);return(0,s.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yp(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yp(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:r,height:r},o))},bp=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{fillRule:"evenodd",d:"M19.75 11H21V8.667L19.875 4H4.125L3 8.667V11h1.25v8.75h15.5V11zm-1.5 0H5.75v7.25H10V13h4v5.25h4.25V11zm-5.5-5.5h2.067l.486 3.24.028.76H12.75v-4zm-3.567 0h2.067v4H8.669l.028-.76.486-3.24zm7.615 3.1l-.464-3.1h2.36l.806 3.345V9.5h-2.668l-.034-.9zM7.666 5.5h-2.36L4.5 8.845V9.5h2.668l.034-.9.464-3.1z",clipRule:"evenodd"})),_p=__webpack_require__(8026),wp=__webpack_require__(4515);const Ep={EMPTY:"empty",WPCOM:"wpcom",GOOGLE:"google",GOOGLE_MERCHANT_CENTER:"google_merchant_center",GOOGLE_ADS:"google_ads",PHONE:"phone",ADDRESS:"address"},$p=(0,s.createElement)("img",{src:_p,alt:(0,o.__)("Google Logo","google-listings-and-ads"),width:"40",height:"40"}),Cp=(0,s.createElement)("img",{src:wp,alt:(0,o.__)("WordPress.com Logo","google-listings-and-ads"),width:"40",height:"40"}),kp={[Ep.EMPTY]:{},[Ep.WPCOM]:{icon:Cp,title:"WordPress.com"},[Ep.GOOGLE]:{icon:$p,title:(0,o.__)("Google","google-listings-and-ads")},[Ep.GOOGLE_MERCHANT_CENTER]:{icon:$p,title:(0,o.__)("Google Merchant Center","google-listings-and-ads"),description:(0,o.__)("Required to sync products and list on Google Shopping","google-listings-and-ads")},[Ep.GOOGLE_ADS]:{icon:$p,title:(0,o.__)("Google Ads","google-listings-and-ads"),description:(0,o.__)("Required to create paid campaigns with your product listings","google-listings-and-ads")},[Ep.PHONE]:{icon:(0,s.createElement)(hp.Z,{size:32}),title:(0,o.__)("Phone number","google-listings-and-ads")},[Ep.ADDRESS]:{icon:(0,s.createElement)(vp,{icon:bp,size:32}),title:(0,o.__)("Store address","google-listings-and-ads")}},Sp={center:!1,top:"gla-account-card__styled--align-top"};function xp(e){let{className:t,disabled:n=!1,appearance:r=Ep.EMPTY,icon:o=kp[r].icon,title:a=kp[r].title,description:i=kp[r].description,helper:c,alignIcon:u="center",indicator:g,alignIndicator:p="center",children:f,...m}=e;const h=d()("gla-account-card",!!n&&"gla-account-card--is-disabled",t),y=d()("gla-account-card__icon",Sp[u]),v=d()("gla-account-card__indicator",Sp[p]);return(0,s.createElement)(gp.Card,l({className:h},m),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(ae,{gap:4},o&&(0,s.createElement)(ze,{className:y},o),(0,s.createElement)(Li,null,a&&(0,s.createElement)(cp.Title,{className:"gla-account-card__title"},a),i&&(0,s.createElement)("div",{className:"gla-account-card__description"},i),c&&(0,s.createElement)("div",{className:"gla-account-card__helper"},c)),g&&(0,s.createElement)(ze,{className:v},g))),f)}var Op=__webpack_require__(3836),Pp=e=>{const{className:t}=e;return(0,s.createElement)(ae,{className:d()("gla-connected-icon-label",t),align:"center",gap:1},(0,s.createElement)(ze,null,(0,s.createElement)(Op.Z,null)),(0,s.createElement)(ze,null,(0,o.__)("Connected","google-listings-and-ads")))},Ap=e=>{let{jetpack:t}=e;return(0,s.createElement)(xp,{appearance:Ep.WPCOM,description:mp(t),indicator:(0,s.createElement)(Pp,null)})},Np=()=>(0,dn.useDispatch)("core/notices");const Rp="START",Tp="FINISH",Mp="ERROR",jp="RESET",Ip={loading:!1,error:void 0,data:void 0,response:void 0,options:void 0},Fp=(e,t)=>{switch(t.type){case Rp:return{...e,loading:!0,options:t.options};case Tp:return{...e,loading:!1,data:t.data,response:t.response,options:t.options};case Mp:return{...e,loading:!1,error:t.error,response:t.response,options:t.options};case jp:return t.state}},Dp=e=>{const{parse:t=!0}=e;return t};var Lp=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ip;const n=Pg(e),r={...Ip,...t},[o,a]=(0,s.useReducer)(Fp,r),i=(0,s.useCallback)((async e=>{const t={...n,...e};a({type:Rp,options:t});try{const e=await Uc()({...t,parse:!1}),n=e.clone(),r=n.json&&await n.json();return a({type:Tp,data:r,response:e,options:t}),Dp(t)?r:e}catch(e){if("fetch_error"===e.code)throw a({type:Mp,error:e,response:void 0,options:t}),e;const n=e,r=n.clone(),o=r.json?await r.json():new Error("No content body in fetch response.");throw a({type:Mp,error:o,response:n,options:t}),Dp(t)?o:n}}),[n]),l=e=>{a({type:jp,state:{...r,...e}})},c={...o,reset:l};return[i,c]},Gp=()=>{const{createNotice:e}=Np(),t=Zl.mcSetupComplete?"reconnect":"setup-mc",n={next_page_name:t},r=(0,tg.addQueryArgs)("/wc/gla/jetpack/connect",n),[a,{loading:i,data:l}]=Lp({path:r});return(0,s.createElement)(xp,{appearance:Ep.WPCOM,description:(0,o.__)("Required to connect with Google","google-listings-and-ads"),indicator:(0,s.createElement)(gc,{isSecondary:!0,loading:i||l,eventName:"gla_wordpress_account_connect_button_click",eventProps:{context:t},onClick:async()=>{try{const e=await a();window.location.href=e.url}catch(t){e("error",(0,o.__)("Unable to connect your WordPress.com account. Please try again later.","google-listings-and-ads"))}}},(0,o.__)("Connect","google-listings-and-ads"))})},Bp=e=>{let{jetpack:t}=e;return"yes"===t.active?(0,s.createElement)(Ap,{jetpack:t}):(0,s.createElement)(Gp,null)},qp=(0,s.createElement)(zl,{context:"setup-mc-accounts",linkId:"required-google-permissions",href:"https://docs.woocommerce.com/document/google-listings-and-ads/#required-google-permissions"});function zp(e,t){const n=(0,s.useMemo)((()=>{const n={next_page_name:e,login_hint:t};return{path:(0,tg.addQueryArgs)("/wc/gla/google/connect",n)}}),[e,t]);return Lp(n)}var Hp=(e,t)=>{const{createNotice:n}=Np(),[r,a]=zp(e,t);return[async()=>{try{const{url:e}=await r();window.location.href=e}catch(e){n("error",(0,o.__)("Unable to connect your Google account. Please try again later.","google-listings-and-ads"))}},a]},Up=e=>{let{additionalScopeEmail:t}=e;const n=Zl.mcSetupComplete?"reconnect":"setup-mc",[r,{loading:a,data:i}]=Hp(n,t);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE,alignIcon:"top",description:(0,s.createElement)(s.Fragment,null,t,(0,s.createElement)("p",null,(0,s.createElement)("em",null,(0,s.createInterpolateElement)((0,o.__)("<alert>Uh-oh!</alert> You did not allow WooCommerce sufficient access to your Google account. You must allow all required permissions in the Google authorization page to proceed. <link>Read more</link>","google-listings-and-ads"),{alert:(0,s.createElement)("span",{className:"gla-authorize-google-account-card__error-text"}),link:qp})))),alignIndicator:"top",indicator:(0,s.createElement)(gc,{isSecondary:!0,isDestructive:!0,loading:a||i,eventName:"gla_google_account_connect_button_click",eventProps:{context:n,action:"scope"},text:(0,o.__)("Allow full access","google-listings-and-ads"),onClick:r})})},Vp=e=>{let{googleAccount:t,helper:n,hideAccountSwitch:r=!1}=e;const[a,{loading:i}]=(()=>{const{createNotice:e,removeNotice:t}=Np(),[n,{loading:r}]=Lp({path:"/wc/gla/mc/connection",method:"DELETE"}),[a,{loading:i}]=Lp({path:"/wc/gla/google/connect",method:"DELETE"}),[s,{loading:l,data:c}]=zp("setup-mc");return[async()=>{const{notice:r}=await e("info",(0,o.__)("Connecting to a different Google account, please wait…","google-listings-and-ads"));try{await n(),await a();const{url:e}=await s();window.location.href=e}catch(n){t(r.id),e("error",(0,o.__)("Unable to connect to a different Google account. Please try again later.","google-listings-and-ads"))}},{loading:r||i||l||c}]})();return(0,s.createElement)(xp,{appearance:Ep.GOOGLE,description:t.email,helper:n,indicator:(0,s.createElement)(Pp,null)},!r&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:i,text:(0,o.__)("Or, connect to a different Google account","google-listings-and-ads"),eventName:"gla_google_account_connect_different_account_button_click",onClick:a})))},Wp=e=>{let{disabled:t}=e;const n=Zl.mcSetupComplete?"reconnect":"setup-mc",[r,{loading:a,data:i}]=Hp(n);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE,disabled:t,alignIcon:"top",description:(0,s.createElement)(s.Fragment,null,(0,o.__)("Required to sync with Google Merchant Center and Google Ads.","google-listings-and-ads"),(0,s.createElement)("p",null,(0,s.createElement)("em",null,(0,s.createInterpolateElement)((0,o.__)("You will be prompted to give WooCommerce access to your Google account. Please check all the checkboxes to give WooCommerce all required permissions. <link>Read more</link>","google-listings-and-ads"),{link:qp})))),alignIndicator:"top",indicator:(0,s.createElement)(gc,{isSecondary:!0,disabled:t,loading:a||i,eventName:"gla_google_account_connect_button_click",eventProps:{context:n,action:"authorization"},text:(0,o.__)("Connect","google-listings-and-ads"),onClick:r})})};function Yp(e){let{disabled:t=!1}=e;const{google:n,scope:r,hasFinishedResolution:o}=Jg();if(!o)return(0,s.createElement)(xp,{description:(0,s.createElement)(Wg,null)});const a="yes"===(null==n?void 0:n.active);return a&&r.glaRequired?(0,s.createElement)(Vp,{googleAccount:n}):a&&!r.glaRequired?(0,s.createElement)(Up,{additionalScopeEmail:n.email}):(0,s.createElement)(Wp,{disabled:t})}var Kp=e=>{const{children:t,...n}=e;return(0,s.createElement)(vl,n,(0,s.createElement)("div",{className:"app-tooltip__children-container"},t))},Qp=()=>(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(Wg,null))),Zp=e=>{let{googleMCAccount:t,hideAccountSwitch:n=!1}=e;const{createNotice:r,removeNotice:a}=Np(),{invalidateResolution:l}=Og(),[c,{loading:u}]=Lp({path:"/wc/gla/mc/connection",method:"DELETE"}),d=new URL((0,i.getSetting)("homeUrl")).host;return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_MERCHANT_CENTER,description:(0,o.sprintf)(// translators: 1: account domain, 2: account ID.
3
  (0,o.__)("%1$s (%2$s)","google-listings-and-ads"),d,t.id),indicator:(0,s.createElement)(Pp,null)},!n&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:u,text:(0,o.__)("Or, connect to a different Google Merchant Center account","google-listings-and-ads"),eventName:"gla_mc_account_connect_different_account_button_click",onClick:async()=>{const{notice:e}=await r("info",(0,o.__)("Disconnecting your Google Merchant Center account, please wait…","google-listings-and-ads"));try{await c(),l("getExistingGoogleMCAccounts",[]),l("getGoogleMCAccount",[])}catch(e){r("error",(0,o.__)("Unable to disconnect your Google Merchant Center account. Please try again later.","google-listings-and-ads"))}a(e.id)}})))},Xp=()=>(0,s.createElement)(xp,{disabled:!0,appearance:Ep.GOOGLE_MERCHANT_CENTER,indicator:(0,s.createElement)(xl,{isSecondary:!0,disabled:!0},(0,o.__)("Create Account","google-listings-and-ads"))}),Jp=()=>Ag("getExistingGoogleMCAccounts"),ef=function(e){var t=e.className,n=c(e,["className"]),r=d()("components-card__divider",t);return(0,s.createElement)(Te,l({},n,{children:null,className:r,role:"separator"}))},tf=new WeakMap;function nf(e){var t=tf.get(e)||0;return tf.set(e,t+1),t}function rf(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return(0,s.useMemo)((function(){if(n)return n;var r=nf(e);return t?"".concat(t,"-").concat(r):r}),[e])}var of={"default.fontFamily":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif","default.fontSize":"13px","helpText.fontSize":"12px",mobileTextMinFontSize:"16px"};function af(e){return(0,ie.get)(of,e,"")}var sf=J("div",{target:"e1puf3u0",label:"Wrapper"})("font-family:",af("default.fontFamily"),";font-size:",af("default.fontSize"),";"),lf=J("div",{target:"e1puf3u1",label:"StyledField"})("margin-bottom:",Ce(1),";.components-panel__row &{margin-bottom:inherit;}"),cf=J("label",{target:"e1puf3u2",label:"StyledLabel"})("display:inline-block;margin-bottom:",Ce(1),";"),uf=J("p",{target:"e1puf3u3",label:"StyledHelp"})("margin-top:-",Ce(1),";font-size:",af("helpText.fontSize"),";font-style:normal;color:",$e("mediumGray.text"),";");function df(e){var t=e.id,n=e.label,r=e.hideLabelFromVision,o=e.help,a=e.className,i=e.children;return(0,s.createElement)(sf,{className:d()("components-base-control",a)},(0,s.createElement)(lf,{className:"components-base-control__field"},n&&t&&(r?(0,s.createElement)(Cl,{as:"label",htmlFor:t},n):(0,s.createElement)(cf,{className:"components-base-control__label",htmlFor:t},n)),n&&!t&&(r?(0,s.createElement)(Cl,{as:"label"},n):(0,s.createElement)(df.VisualLabel,null,n)),i),!!o&&(0,s.createElement)(uf,{id:t+"__help",className:"components-base-control__help"},o))}df.VisualLabel=function(e){var t=e.className,n=e.children;return t=d()("components-base-control__label",t),(0,s.createElement)("span",{className:t},n)};var gf=df,pf=new RegExp(/-left/g),ff=new RegExp(/-right/g),mf=new RegExp(/Left/g),hf=new RegExp(/Right/g);function yf(e){return"left"===e?"right":"right"===e?"left":pf.test(e)?e.replace(pf,"-right"):ff.test(e)?e.replace(ff,"-left"):mf.test(e)?e.replace(mf,"Right"):hf.test(e)?e.replace(hf,"Left"):e}var vf=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,ie.mapKeys)(e,(function(e,t){return yf(t)}))};function bf(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return function(){return t?(0,o.isRTL)()?U(t,""):U(e,""):(0,o.isRTL)()?U(vf(e),""):U(e,"")}}var _f={name:"1dacand",styles:"padding-top:0;"},wf=function(){return _f},Ef={name:"r6z5ec",styles:"z-index:1;"},$f=function(e){return e.isFocused?Ef:""},Cf={name:"uz6002",styles:"align-items:flex-start;flex-direction:column;"},kf={name:"53hdd7",styles:"align-items:flex-start;flex-direction:column-reverse;"},Sf={name:"x4dmss",styles:"justify-content:space-between;"},xf=function(e){switch(e.labelPosition){case"top":return Cf;case"bottom":return kf;case"edge":return Sf;default:return""}},Of=J(ae,{target:"e1cr7zh10",label:"Root"})("position:relative;border-radius:2px;",wf," ",$f," ",xf,""),Pf={name:"8atqhb",styles:"width:100%;"},Af=J("div",{target:"e1cr7zh11",label:"Container"})("align-items:center;box-sizing:border-box;border-radius:inherit;display:flex;flex:1;position:relative;",(function(e){var t=$e(e.disabled?"ui.backgroundDisabled":"ui.background");return U({backgroundColor:t},"")})," ",(function(e){var t=e.__unstableInputWidth,n=e.labelPosition;return t?"side"===n?"":U("edge"===n?{flex:"0 0 ".concat(t)}:{width:t},""):Pf}),""),Nf={name:"103r1kr",styles:"&::-webkit-input-placeholder{line-height:normal;}"},Rf=J("input",{target:"e1cr7zh12",label:"Input"})("&&&{background-color:transparent;box-sizing:border-box;border:none;box-shadow:none !important;color:",$e("black"),";display:block;margin:0;outline:none;padding-left:8px;padding-right:8px;width:100%;",(function(e){var t=e.isDragging,n=e.dragCursor,r="",o="";return t&&(r=U("cursor:",n,";user-select:none;&::-webkit-outer-spin-button,&::-webkit-inner-spin-button{-webkit-appearance:none !important;margin:0 !important;}")),t&&n&&(o=U("&:active{cursor:",n,";}")),U(r," ",o,"")})," ",(function(e){return e.disabled?U({color:$e("ui.textDisabled")},""):""})," ",(function(e){var t={default:"13px",small:"11px"}[e.size];return t?U("font-size:","16px",";@media ( min-width:600px ){font-size:",t,";}"):""})," ",(function(e){var t=e.size,n={default:{height:30,lineHeight:1,minHeight:30},small:{height:24,lineHeight:1,minHeight:24}};return U(n[t]||n.default,"")})," ",(function(){return Nf}),"}"),Tf={name:"8uhtka",styles:"overflow:hidden;text-overflow:ellipsis;white-space:nowrap;"},Mf=function(){return Tf},jf=function(e){var t=e.labelPosition,n=4;return"edge"!==t&&"side"!==t||(n=0),U({paddingTop:0,paddingBottom:n},"")},If=J(Ii,{target:"e1cr7zh13",label:"BaseLabel"})("&&&{box-sizing:border-box;color:currentColor;display:block;margin:0;max-width:100%;z-index:1;",jf," ",Mf,"}"),Ff=function(e){return(0,s.createElement)(If,l({},e,{as:"label"}))},Df=J(ze,{target:"e1cr7zh14",label:"LabelWrapper"})({name:"120o8im",styles:"max-width:calc( 100% - 10px );"}),Lf=J("div",{target:"e1cr7zh15",label:"BackdropUI"})("&&&{box-sizing:border-box;border-radius:inherit;bottom:0;left:0;margin:0;padding:0;pointer-events:none;position:absolute;right:0;top:0;",(function(e){var t=e.disabled,n=e.isFocused,r=$e(n?"ui.borderFocus":"ui.border"),o=null;return n&&(o="0 0 0 1px ".concat($e("ui.borderFocus")," inset")),t&&(r=$e("ui.borderDisabled")),U({boxShadow:o,borderColor:r,borderStyle:"solid",borderWidth:1},"")})," ",bf({paddingLeft:2}),"}"),Gf=J("span",{target:"e1cr7zh16",label:"Prefix"})({name:"1pxuk39",styles:"box-sizing:border-box;display:block;"}),Bf=J("span",{target:"e1cr7zh17",label:"Suffix"})({name:"1pxuk39",styles:"box-sizing:border-box;display:block;"}),qf=(0,s.memo)((function(e){var t=e.disabled,n=void 0!==t&&t,r=e.isFocused,o=void 0!==r&&r;return(0,s.createElement)(Lf,{"aria-hidden":"true",className:"components-input-control__backdrop",disabled:n,isFocused:o})})),zf=qf;function Hf(e){var t=e.children,n=e.hideLabelFromVision,r=e.htmlFor,o=c(e,["children","hideLabelFromVision","htmlFor"]);return t?n?(0,s.createElement)(Cl,{as:"label",htmlFor:r},t):(0,s.createElement)(Ff,l({htmlFor:r},o),t):null}var Uf=(0,s.forwardRef)((function e(t,n){var r=t.__unstableInputWidth,o=t.children,a=t.className,i=t.disabled,u=void 0!==i&&i,d=t.hideLabelFromVision,g=void 0!==d&&d,p=t.labelPosition,f=t.id,m=t.isFocused,h=void 0!==m&&m,y=t.label,v=t.prefix,b=t.size,_=void 0===b?"default":b,w=t.suffix,E=c(t,["__unstableInputWidth","children","className","disabled","hideLabelFromVision","labelPosition","id","isFocused","label","prefix","size","suffix"]),$=function(t){var n=rf(e),r="input-base-control-".concat(n);return t||r}(f);return(0,s.createElement)(Of,l({},E,{className:a,isFocused:h,labelPosition:p,ref:n}),(0,s.createElement)(Df,null,(0,s.createElement)(Hf,{className:"components-input-control__label",hideLabelFromVision:g,labelPosition:p,htmlFor:$,size:_},y)),(0,s.createElement)(Af,{__unstableInputWidth:r,className:"components-input-control__container",disabled:u,isFocused:h,labelPosition:p},v&&(0,s.createElement)(Gf,{className:"components-input-control__prefix"},v),o,w&&(0,s.createElement)(Bf,{className:"components-input-control__suffix"},w),(0,s.createElement)(zf,{"aria-hidden":"true",disabled:u,isFocused:h,label:y,size:_})))})),Vf=J("select",{target:"e12x0a390",label:"Select"})("&&&{appearance:none;background:transparent;box-sizing:border-box;border:none;box-shadow:none !important;color:",$e("black"),";display:block;margin:0;width:100%;",(function(e){return e.disabled?U({color:$e("ui.textDisabled")},""):""}),";",(function(e){var t={default:"13px",small:"11px"}[e.size];return t?U("font-size:","16px",";@media ( min-width:600px ){font-size:",t,";}"):""}),";",(function(e){var t=e.size,n={default:{height:30,lineHeight:1,minHeight:30},small:{height:24,lineHeight:1,minHeight:24}};return U(n[t]||n.default,"")}),";",bf({paddingLeft:8,paddingRight:24})(),"}"),Wf=J("div",{target:"e12x0a391",label:"DownArrowWrapper"})("align-items:center;bottom:0;box-sizing:border-box;display:flex;padding:0 4px;pointer-events:none;position:absolute;top:0;",bf({right:0})()," svg{display:block;}");var Yf=(0,s.forwardRef)((function e(t,n){var r=t.className,o=t.disabled,a=void 0!==o&&o,i=t.help,u=t.hideLabelFromVision,g=t.id,p=t.label,f=t.multiple,m=void 0!==f&&f,h=t.onBlur,y=void 0===h?ie.noop:h,v=t.onChange,b=void 0===v?ie.noop:v,_=t.onFocus,w=void 0===_?ie.noop:_,E=t.options,$=void 0===E?[]:E,C=t.size,k=void 0===C?"default":C,S=t.value,x=t.labelPosition,O=void 0===x?"top":x,P=c(t,["className","disabled","help","hideLabelFromVision","id","label","multiple","onBlur","onChange","onFocus","options","size","value","labelPosition"]),A=Et((0,s.useState)(!1),2),N=A[0],R=A[1],T=function(t){var n=rf(e),r="inspector-select-control-".concat(n);return t||r}(g),M=i?"".concat(T,"__help"):void 0;if((0,ie.isEmpty)($))return null;var j=d()("components-select-control",r);return(0,s.createElement)(gf,{help:i},(0,s.createElement)(Uf,{className:j,disabled:a,hideLabelFromVision:u,id:T,isFocused:N,label:p,size:k,suffix:(0,s.createElement)(Wf,null,(0,s.createElement)(vp,{icon:as,size:18})),labelPosition:O},(0,s.createElement)(Vf,l({},P,{"aria-describedby":M,className:"components-select-control__input",disabled:a,id:T,multiple:m,onBlur:function(e){y(e),R(!1)},onChange:function(e){if(m){var t=Ls(e.target.options).filter((function(e){return e.selected})),n=t.map((function(e){return e.value}));b(n)}else b(e.target.value,{event:e})},onFocus:function(e){w(e),R(!0)},ref:n,size:k,value:S}),$.map((function(e,t){var n=e.id||"".concat(e.label,"-").concat(e.value,"-").concat(t);return(0,s.createElement)("option",{key:n,value:e.value,disabled:e.disabled},e.label)})))))})),Kf=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",{className:d()("app-select-control",t)},(0,s.createElement)(Yf,n))},Qf=e=>{const{data:t=[]}=Jp(),n=t.map((e=>({value:e.id,label:(0,o.sprintf)(// translators: 1: account name, 2: account domain, 3: account ID.
4
  (0,o.__)("%1$s ・ %2$s (%3$s)","google-listings-and-ads"),e.name,e.domain,e.id)})));return n.sort(((e,t)=>e.label.localeCompare(t.label))),n.unshift({value:"",label:(0,o.__)("Select one","google-listings-and-ads")}),(0,s.createElement)(Kf,l({options:n},e))},Zf=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",l({className:d()("gla-content-button-layout",t)},n))},Xf=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"}));function Jf(e,t){return e.map((function(e,n){return e+t[n]}))}function em(e,t){return e.map((function(e,n){return e-t[n]}))}function tm(e){return Math.hypot.apply(Math,e)}function nm(e){return Math.sign?Math.sign(e):Number(e>0)-Number(e<0)||+e}function rm(e,t,n){return 0===t||Math.abs(t)===1/0?function(e,t){return Math.pow(e,5*t)}(e,n):e*t*n/(t+n*e)}function om(e,t,n,r){return void 0===r&&(r=.15),0===r?function(e,t,n){return Math.max(t,Math.min(e,n))}(e,t,n):e<t?-rm(t-e,n-t,r)+t:e>n?+rm(e-n,n-t,r)+n:e}function am(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function im(){return im=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},im.apply(this,arguments)}function sm(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function lm(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cm(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function um(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return cm(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?cm(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}function dm(){}function gm(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?dm:1===t.length?t[0]:function(){for(var e,n,r=um(t);!(n=r()).done;){var o=n.value;e=o.apply(this,arguments)||e}return e}}function pm(e,t){if(void 0===e){if(void 0===t)throw new Error("Must define fallback value if undefined is expected");e=t}return Array.isArray(e)?e:[e,e]}function fm(e){if("function"==typeof e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return e.apply(void 0,n)}return e}function mm(e,t){void 0===e&&(e={});for(var n={},r=0,o=Object.entries(t);r<o.length;r++){var a=o[r],i=a[0],s=a[1];switch(typeof s){case"function":n[i]=s.call(n,e[i],i,e);break;case"object":n[i]=mm(e[i],s);break;case"boolean":s&&(n[i]=e[i])}}return n}function hm(){return"undefined"!=typeof window&&"ontouchstart"in window}function ym(e){return"pointerId"in e?null:"touchend"===e.type?e.changedTouches:e.targetTouches}function vm(e){return Array.from(ym(e)).map((function(e){return e.identifier}))}function bm(e){return{buttons:"buttons"in e?e.buttons:0,shiftKey:e.shiftKey,altKey:e.altKey,metaKey:e.metaKey,ctrlKey:e.ctrlKey}}var _m=function(e){return e};function wm(e,t){void 0===t&&(t=_m);var n=ym(e),r=n?n[0]:e;return t([r.clientX,r.clientY])}var Em={threshold:function(e){return void 0===e&&(e=0),pm(e)},rubberband:function(e){switch(void 0===e&&(e=0),e){case!0:return pm(.15);case!1:return pm(0);default:return pm(e)}},enabled:function(e){return void 0===e&&(e=!0),e},triggerAllEvents:function(e){return void 0===e&&(e=!1),e},initial:function(e){return void 0===e&&(e=0),"function"==typeof e?e:pm(e)},transform:!0},$m=im({},Em,{axis:!0,lockDirection:function(e){return void 0===e&&(e=!1),e},bounds:function(e){if(void 0===e&&(e={}),"function"==typeof e)return function(t){return $m.bounds(e(t))};var t=e,n=t.left,r=void 0===n?-1/0:n,o=t.right,a=void 0===o?1/0:o,i=t.top,s=void 0===i?-1/0:i,l=t.bottom;return[[r,a],[s,void 0===l?1/0:l]]}}),Cm="undefined"!=typeof window&&window.document&&window.document.createElement,km={enabled:function(e){return void 0===e&&(e=!0),e},domTarget:!0,window:function(e){function t(_x){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(e){return void 0===e&&(e=Cm?window:void 0),e})),eventOptions:function(e){var t=void 0===e?{}:e,n=t.passive,r=void 0===n||n,o=t.capture;return{passive:r,capture:void 0!==o&&o}},transform:!0},Sm=im({},$m,{useTouch:function(e){void 0===e&&(e=!1);var t=hm(),n="undefined"!=typeof window&&"onpointerdown"in window;return!(!e||!t)||!(!t||n)},experimental_preventWindowScrollY:function(e){return void 0===e&&(e=!1),e},threshold:function(e,t,n){var r=n.filterTaps,o=void 0!==r&&r,a=n.lockDirection,i=void 0!==a&&a,s=n.axis,l=pm(e,o?3:i||(void 0===s?void 0:s)?1:0);return this.filterTaps=o,l},swipeVelocity:function(e){return void 0===e&&(e=.5),pm(e)},swipeDistance:function(e){return void 0===e&&(e=50),pm(e)},swipeDuration:function(e){return void 0===e&&(e=250),e},delay:function(e){switch(void 0===e&&(e=0),e){case!0:return 180;case!1:return 0;default:return e}}});function xm(e){var t=e.domTarget,n=e.eventOptions,r=e.window,o=e.enabled,a=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,["domTarget","eventOptions","window","enabled"]),i=function(e){return void 0===e&&(e={}),mm(e,km)}({domTarget:t,eventOptions:n,window:r,enabled:o});return i.drag=function(e){return void 0===e&&(e={}),mm(e,Sm)}(a),i}function Om(e){return im({_active:!1,_blocked:!1,_intentional:[!1,!1],_movement:[0,0],_initial:[0,0],_bounds:[[-1/0,1/0],[-1/0,1/0]],_threshold:[0,0],_lastEventType:void 0,_dragStarted:!1,_dragPreventScroll:!1,_dragIsTap:!0,_dragDelayed:!1,event:void 0,intentional:!1,values:[0,0],velocities:[0,0],delta:[0,0],movement:[0,0],offset:[0,0],lastOffset:[0,0],direction:[0,0],initial:[0,0],previous:[0,0],first:!1,last:!1,active:!1,timeStamp:0,startTime:0,elapsedTime:0,cancel:dm,canceled:!1,memo:void 0,args:void 0},e)}function Pm(){return{shared:{hovering:!1,scrolling:!1,wheeling:!1,dragging:!1,moving:!1,pinching:!1,touches:0,buttons:0,down:!1,shiftKey:!1,altKey:!1,metaKey:!1,ctrlKey:!1,locked:!1},drag:Om({_pointerId:void 0,axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0,tap:!1,swipe:[0,0]}),pinch:Om({_pointerIds:[],da:[0,0],vdva:[0,0],origin:void 0,turns:0}),wheel:Om({axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0}),move:Om({axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0}),scroll:Om({axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0})}}var Am=new Map,Nm=function(e){return e},Rm=function(){function e(e,t){var n=this;void 0===t&&(t=[]),this.controller=e,this.args=t,this.debounced=!0,this.setTimeout=function(e,t){var r;void 0===t&&(t=140),clearTimeout(n.controller.timeouts[n.stateKey]);for(var o=arguments.length,a=new Array(o>2?o-2:0),i=2;i<o;i++)a[i-2]=arguments[i];n.controller.timeouts[n.stateKey]=(r=window).setTimeout.apply(r,[e,t].concat(a))},this.clearTimeout=function(){clearTimeout(n.controller.timeouts[n.stateKey])},this.fireGestureHandler=function(e){if(void 0===e&&(e=!1),n.state._blocked)return n.debounced||(n.state._active=!1,n.clean()),null;if(!e&&!n.state.intentional&&!n.config.triggerAllEvents)return null;if(n.state.intentional){var t=n.state.active,r=n.state._active;n.state.active=r,n.state.first=r&&!t,n.state.last=t&&!r,n.controller.state.shared[n.ingKey]=r}var o=n.controller.pointerIds.size||n.controller.touchIds.size,a=n.controller.state.shared.buttons>0||o>0,i=im({},n.controller.state.shared,n.state,n.mapStateValues(n.state),{locked:!!document.pointerLockElement,touches:o,down:a}),s=n.handler(i);return n.state.memo=void 0!==s?s:n.state.memo,i},this.controller=e,this.args=t}var t,n,r=e.prototype;return r.updateSharedState=function(e){Object.assign(this.controller.state.shared,e)},r.updateGestureState=function(e){Object.assign(this.state,e)},r.checkIntentionality=function(e,t){return{_intentional:e,_blocked:!1}},r.getMovement=function(e){var t=this.config.rubberband,n=this.state,r=n._bounds,o=n._initial,a=n._active,i=n._intentional,s=n.lastOffset,l=n.movement,c=n._threshold,u=this.getInternalMovement(e,this.state),d=!1===i[0]?Tm(u[0],c[0]):i[0],g=!1===i[1]?Tm(u[1],c[1]):i[1],p=this.checkIntentionality([d,g],u);if(p._blocked)return im({},p,{_movement:u,delta:[0,0]});var f=p._intentional,m=u,h=[!1!==f[0]?u[0]-f[0]:0,!1!==f[1]?u[1]-f[1]:0],y=Jf(h,s),v=a?t:[0,0];return h=Mm(r,Jf(h,o),v),im({},p,{intentional:!1!==f[0]||!1!==f[1],_initial:o,_movement:m,movement:h,values:e,offset:Mm(r,y,v),delta:em(h,l)})},r.clean=function(){this.clearTimeout()},t=e,(n=[{key:"config",get:function(){return this.controller.config[this.stateKey]}},{key:"enabled",get:function(){return this.controller.config.enabled&&this.config.enabled}},{key:"state",get:function(){return this.controller.state[this.stateKey]}},{key:"handler",get:function(){return this.controller.handlers[this.stateKey]}},{key:"transform",get:function(){return this.config.transform||this.controller.config.transform||Nm}}])&&am(t.prototype,n),e}();function Tm(e,t){return Math.abs(e)>=t&&nm(e)*t}function Mm(e,t,n){var r=t[0],o=t[1],a=n[0],i=n[1],s=e[0],l=s[0],c=s[1],u=e[1],d=u[0],g=u[1];return[om(r,l,c,a),om(o,d,g,i)]}function jm(e,t,n){var r=e.state,o=t.timeStamp,a=t.type,i=r.values;return{_lastEventType:a,event:t,timeStamp:o,elapsedTime:n?0:o-r.startTime,previous:i}}function Im(e,t,n,r){var o=e.state,a=e.config,i=e.stateKey,s=e.args,l=e.transform,c=o.offset,u=n.timeStamp,d=a.initial,g=a.bounds,p=em(l(a.threshold),l([0,0])).map(Math.abs),f=im({},Pm()[i],{_active:!0,args:s,values:t,initial:null!=r?r:t,_threshold:p,offset:c,lastOffset:c,startTime:u});return im({},f,{_initial:fm(d,f),_bounds:fm(g,f)})}var Fm=function(e){var t=this;this.classes=e,this.pointerIds=new Set,this.touchIds=new Set,this.supportsTouchEvents=hm(),this.supportsGestureEvents=function(){try{return"constructor"in GestureEvent}catch(e){return!1}}(),this.bind=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];for(var o,a={},i=um(t.classes);!(o=i()).done;){var s=o.value;new s(t,n).addBindings(a)}var l=function(e){Vm(a,e,(function(r){return t.nativeRefs[e](im({},t.state.shared,{event:r,args:n}))}))};for(var c in t.nativeRefs)l(c);return t.config.domTarget?qm(t,a):zm(t,a)},this.effect=function(){return t.config.domTarget&&t.bind(),t.clean},this.clean=function(){var e=Um(t.config),n=t.config.eventOptions;e&&Ym(e,Hm(t.domListeners),n),Object.values(t.timeouts).forEach(clearTimeout),function(e){var t=e.config,n=t.window,r=t.eventOptions,o=e.windowListeners;if(n){for(var a in o)Ym(n,o[a],r);e.windowListeners={}}}(t)},this.classes=e,this.state=Pm(),this.timeouts={},this.domListeners=[],this.windowListeners={}};function Dm(e,t){"pointerId"in t?e.pointerIds.add(t.pointerId):e.touchIds=new Set(vm(t))}function Lm(e,t){"pointerId"in t?e.pointerIds.delete(t.pointerId):vm(t).forEach((function(t){return e.touchIds.delete(t)}))}function Gm(e,t,n){var r=e.config,o=e.windowListeners;void 0===n&&(n=r.eventOptions),r.window&&(Ym(r.window,o[t],n),delete o[t])}function Bm(e,t,n,r){var o=e.config,a=e.windowListeners;void 0===n&&(n=[]),void 0===r&&(r=o.eventOptions),o.window&&(Ym(o.window,a[t],r),Wm(o.window,a[t]=n,r))}function qm(e,t){var n=e.config,r=e.domListeners,o=Um(n);if(!o)throw new Error("domTarget must be defined");var a=n.eventOptions;Ym(o,Hm(r),a);for(var i=0,s=Object.entries(t);i<s.length;i++){var l=s[i],c=l[0],u=l[1],d=c.slice(2).toLowerCase();r.push([d,gm.apply(void 0,u)])}Wm(o,r,a)}function zm(e,t){for(var n={},r=e.config.eventOptions.capture?"Capture":"",o=0,a=Object.entries(t);o<a.length;o++){var i=a[o],s=i[0],l=i[1],c=Array.isArray(l)?l:[l];n[s+r]=gm.apply(void 0,c)}return n}function Hm(e){return void 0===e&&(e=[]),e.splice(0,e.length)}function Um(e){var t=e.domTarget;return t&&"current"in t?t.current:t}function Vm(e,t,n){e[t]||(e[t]=[]),e[t].push(n)}function Wm(e,t,n){void 0===t&&(t=[]),void 0===n&&(n={});for(var r,o=um(t);!(r=o()).done;){var a=r.value,i=a[0],s=a[1];e.addEventListener(i,s,n)}}function Ym(e,t,n){void 0===t&&(t=[]),void 0===n&&(n={});for(var r,o=um(t);!(r=o()).done;){var a=r.value,i=a[0],s=a[1];e.removeEventListener(i,s,n)}}function Km(){}var Qm=function(e){function t(){return e.apply(this,arguments)||this}sm(t,e);var n=t.prototype;return n.getInternalMovement=function(e,t){return em(e,t.initial)},n.checkIntentionality=function(e,t){if(!1===e[0]&&!1===e[1])return{_intentional:e,axis:this.state.axis};var n=t.map(Math.abs),r=n[0],o=n[1],a=this.state.axis||(r>o?"x":r<o?"y":void 0);return this.config.axis||this.config.lockDirection?a?this.config.axis&&a!==this.config.axis?{_intentional:e,_blocked:!0,axis:a}:(e["x"===a?1:0]=!1,{_intentional:e,_blocked:!1,axis:a}):{_intentional:[!1,!1],_blocked:!1,axis:a}:{_intentional:e,_blocked:!1,axis:a}},n.getKinematics=function(e,t){var n=this.getMovement(e);if(!n._blocked){var r=t.timeStamp-this.state.timeStamp;Object.assign(n,function(e,t,n){var r=tm(t),o=0===r?0:1/r,a=0===n?0:1/n,i=a*r,s=t.map((function(e){return a*e})),l=t.map((function(e){return o*e}));return{velocities:s,velocity:i,distance:tm(e),direction:l}}(n.movement,n.delta,r))}return n},n.mapStateValues=function(e){return{xy:e.values,vxvy:e.velocities}},t}(Rm);function Zm(e){"persist"in e&&"function"==typeof e.persist&&e.persist()}var Xm=function(e){function t(){var t;return(t=e.apply(this,arguments)||this).ingKey="dragging",t.stateKey="drag",t.setPointerCapture=function(e){if(!t.config.useTouch&&!document.pointerLockElement){var n=e.target,r=e.pointerId;n&&"setPointerCapture"in n&&n.setPointerCapture(r),t.updateGestureState({_dragTarget:n,_dragPointerId:r})}},t.releasePointerCapture=function(){if(!t.config.useTouch&&!document.pointerLockElement){var e=t.state,n=e._dragTarget,r=e._dragPointerId;if(r&&n&&"releasePointerCapture"in n&&(!("hasPointerCapture"in n)||n.hasPointerCapture(r)))try{n.releasePointerCapture(r)}catch(e){}}},t.preventScroll=function(e){t.state._dragPreventScroll&&e.cancelable&&e.preventDefault()},t.getEventId=function(e){return t.config.useTouch?e.changedTouches[0].identifier:e.pointerId},t.isValidEvent=function(e){return t.state._pointerId===t.getEventId(e)},t.shouldPreventWindowScrollY=t.config.experimental_preventWindowScrollY&&t.controller.supportsTouchEvents,t.setUpWindowScrollDetection=function(e){Zm(e),Bm(t.controller,t.stateKey,[["touchmove",t.preventScroll],["touchend",t.clean.bind(lm(t))],["touchcancel",t.clean.bind(lm(t))]],{passive:!1}),t.setTimeout(t.startDrag.bind(lm(t)),250,e)},t.setUpDelayedDragTrigger=function(e){t.state._dragDelayed=!0,Zm(e),t.setTimeout(t.startDrag.bind(lm(t)),t.config.delay,e)},t.setStartState=function(e){var n=wm(e,t.transform);t.updateSharedState(bm(e)),t.updateGestureState(im({},Im(lm(t),n,e),jm(lm(t),e,!0),{_pointerId:t.getEventId(e)})),t.updateGestureState(t.getMovement(n))},t.onDragStart=function(e){Dm(t.controller,e),t.enabled&&!t.state._active&&(t.setStartState(e),t.setPointerCapture(e),t.shouldPreventWindowScrollY?t.setUpWindowScrollDetection(e):t.config.delay>0?t.setUpDelayedDragTrigger(e):t.startDrag(e,!0))},t.onDragChange=function(e){if(!t.state.canceled&&t.state._active&&t.isValidEvent(e)&&(t.state._lastEventType!==e.type||e.timeStamp!==t.state.timeStamp)){var n;if(document.pointerLockElement){var r=e.movementX,o=e.movementY;n=Jf(t.transform([r,o]),t.state.values)}else n=wm(e,t.transform);var a=t.getKinematics(n,e);if(!t.state._dragStarted){if(t.state._dragDelayed)return void t.startDrag(e);if(!t.shouldPreventWindowScrollY)return;if(t.state._dragPreventScroll||!a.axis)return;if("x"!==a.axis)return void(t.state._active=!1);t.startDrag(e)}var i=bm(e);t.updateSharedState(i);var s=jm(lm(t),e),l=tm(a._movement),c=t.state._dragIsTap;c&&l>=3&&(c=!1),t.updateGestureState(im({},s,a,{_dragIsTap:c})),t.fireGestureHandler()}},t.onDragEnd=function(e){if(Lm(t.controller,e),t.isValidEvent(e)&&(t.clean(),t.state._active)){t.state._active=!1;var n=t.state._dragIsTap,r=t.state.velocities,o=r[0],a=r[1],i=t.state.movement,s=i[0],l=i[1],c=t.state._intentional,u=c[0],d=c[1],g=t.config.swipeVelocity,p=g[0],f=g[1],m=t.config.swipeDistance,h=m[0],y=m[1],v=t.config.swipeDuration,b=im({},jm(lm(t),e),t.getMovement(t.state.values)),_=[0,0];b.elapsedTime<v&&(!1!==u&&Math.abs(o)>p&&Math.abs(s)>h&&(_[0]=nm(o)),!1!==d&&Math.abs(a)>f&&Math.abs(l)>y&&(_[1]=nm(a))),t.updateSharedState({buttons:0}),t.updateGestureState(im({},b,{tap:n,swipe:_})),t.fireGestureHandler(t.config.filterTaps&&!0===n)}},t.clean=function(){e.prototype.clean.call(lm(t)),t.state._dragStarted=!1,t.releasePointerCapture(),Gm(t.controller,t.stateKey)},t.onCancel=function(){t.state.canceled||(t.updateGestureState({canceled:!0,_active:!1}),t.updateSharedState({buttons:0}),setTimeout((function(){return t.fireGestureHandler()}),0))},t.onClick=function(e){t.state._dragIsTap||e.stopPropagation()},t}sm(t,e);var n=t.prototype;return n.startDrag=function(e,t){void 0===t&&(t=!1),this.state._active&&!this.state._dragStarted&&(t||this.setStartState(e),this.updateGestureState({_dragStarted:!0,_dragPreventScroll:!0,cancel:this.onCancel}),this.clearTimeout(),this.fireGestureHandler())},n.addBindings=function(e){this.config.useTouch?(Vm(e,"onTouchStart",this.onDragStart),Vm(e,"onTouchMove",this.onDragChange),Vm(e,"onTouchEnd",this.onDragEnd),Vm(e,"onTouchCancel",this.onDragEnd)):(Vm(e,"onPointerDown",this.onDragStart),Vm(e,"onPointerMove",this.onDragChange),Vm(e,"onPointerUp",this.onDragEnd),Vm(e,"onPointerCancel",this.onDragEnd)),this.config.filterTaps&&Vm(e,this.controller.config.eventOptions.capture?"onClick":"onClickCapture",this.onClick)},t}(Qm);function Jm(e,t){if(e===t)return!0;if(e&&t&&"object"==typeof e&&"object"==typeof t){if(e.constructor!==t.constructor)return!1;var n,r,o,a;if(Array.isArray(e)){if((n=e.length)!==t.length)return!1;for(r=n;0!=r--;)if(!Jm(e[r],t[r]))return!1;return!0}if("function"==typeof Map&&e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(a=e.entries();!(r=a.next()).done;)if(!t.has(r.value[0]))return!1;for(a=e.entries();!(r=a.next()).done;)if(!Jm(r.value[1],t.get(r.value[0])))return!1;return!0}if("function"==typeof Set&&e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(a=e.entries();!(r=a.next()).done;)if(!t.has(r.value[0]))return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===t.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===t.toString();if((n=(o=Object.keys(e)).length)!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!Object.prototype.hasOwnProperty.call(t,o[r]))return!1;if("undefined"!=typeof Element&&e instanceof Element)return!1;for(r=n;0!=r--;)if(!("_owner"===o[r]&&e.$$typeof||Jm(e[o[r]],t[o[r]])))return!1;return!0}return e!=e&&t!=t}function eh(e,t){try{return Jm(e,t)}catch(e){if((e.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw e}}function th(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function nh(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?th(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):th(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var rh=function(e){return e},oh={_event:{},error:null,initialValue:"",isDirty:!1,isDragEnabled:!1,isDragging:!1,isPressEnterToChange:!1,value:""},ah="CHANGE",ih="COMMIT",sh="DRAG_END",lh="DRAG_START",ch="DRAG",uh="INVALIDATE",dh="PRESS_DOWN",gh="PRESS_ENTER",ph="PRESS_UP",fh="RESET",mh="UPDATE";function hh(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:oh,t=e.value;return nh(nh(nh({},oh),e),{},{initialValue:t})}function yh(e){return function(t,n){var r=nh({},t),o=n.type,a=n.payload;switch(o){case ph:case dh:r.isDirty=!1;break;case lh:r.isDragging=!0;break;case sh:r.isDragging=!1;break;case ah:r.error=null,r.value=a.value,t.isPressEnterToChange&&(r.isDirty=!0);break;case ih:r.value=a.value,r.isDirty=!1;break;case fh:r.error=null,r.isDirty=!1,r.value=a.value||t.initialValue;break;case mh:r.value=a.value,r.isDirty=!1;break;case uh:r.error=a.error}return a.event&&(r._event=a.event),e(r,n)}}var vh=(0,s.forwardRef)((function(e,t){var n=e.disabled,r=void 0!==n&&n,o=e.dragDirection,a=void 0===o?"n":o,i=e.dragThreshold,u=void 0===i?10:i,d=e.id,g=e.isDragEnabled,p=void 0!==g&&g,f=e.isFocused,y=e.isPressEnterToChange,v=void 0!==y&&y,b=e.onBlur,_=void 0===b?ie.noop:b,w=e.onChange,E=void 0===w?ie.noop:w,$=e.onDrag,C=void 0===$?ie.noop:$,k=e.onDragEnd,S=void 0===k?ie.noop:k,x=e.onDragStart,O=void 0===x?ie.noop:x,P=e.onFocus,A=void 0===P?ie.noop:P,N=e.onKeyDown,R=void 0===N?ie.noop:N,T=e.onValidate,M=void 0===T?ie.noop:T,j=e.size,I=void 0===j?"default":j,F=e.setIsFocused,D=e.stateReducer,L=void 0===D?function(e){return e}:D,G=e.value,B=e.type,q=c(e,["disabled","dragDirection","dragThreshold","id","isDragEnabled","isFocused","isPressEnterToChange","onBlur","onChange","onDrag","onDragEnd","onDragStart","onFocus","onKeyDown","onValidate","size","setIsFocused","stateReducer","value","type"]),z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:rh,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:oh,n=Et((0,s.useReducer)(yh(e),hh(t)),2),r=n[0],o=n[1],a=function(e){return function(t,n){n&&n.persist&&n.persist(),o({type:e,payload:{value:t,event:n}})}},i=function(e){return function(t){t&&t.persist&&t.persist(),o({type:e,payload:{event:t}})}},l=function(e){return function(t){o({type:e,payload:t})}},c=a(ah),u=a(uh),d=a(fh),g=a(ih),p=a(mh),f=l(lh),m=l(ch),h=l(sh),y=i(ph),v=i(dh),b=i(gh);return{change:c,commit:g,dispatch:o,drag:m,dragEnd:h,dragStart:f,invalidate:u,pressDown:v,pressEnter:b,pressUp:y,reset:d,state:r,update:p}}(L,{isDragEnabled:p,value:G,isPressEnterToChange:v}),H=z.state,U=z.change,V=z.commit,W=z.drag,Y=z.dragEnd,K=z.dragStart,Q=z.invalidate,Z=z.pressDown,X=z.pressEnter,J=z.pressUp,ee=z.reset,te=z.update,ne=H._event,re=H.value,oe=H.isDragging,ae=H.isDirty,se=(0,s.useRef)(!1),le=function(e,t){var n=function(e){var t="ns-resize";switch(e){case"n":case"s":t="ns-resize";break;case"e":case"w":t="ew-resize"}return t}(t);return(0,s.useEffect)((function(){document.documentElement.style.cursor=e?n:null}),[e]),n}(oe,a);Tl((function(){G!==re&&(f||se.current?ae||(E(re,{event:ne}),se.current=!1):te(G))}),[re,ae,f,G]);var ce=function(e){var t=e.target.value;try{M(t,e),V(t,e)}catch(t){Q(t,e)}},ue=function(e,t){void 0===t&&(t={}),Am.set("drag",Xm);var n=(0,m.useRef)();return n.current||(n.current=function(e,t){var n,r,o=[],a=!1;return function(){for(var i=arguments.length,s=new Array(i),l=0;l<i;l++)s[l]=arguments[l];return a&&n===this&&t(s,o)||(r=e.apply(this,s),a=!0,n=this,o=s),r}}(xm,eh)),function(e,t,n){void 0===n&&(n={});var r=function(e){var t=new Set;return e.drag&&t.add(Am.get("drag")),e.wheel&&t.add(Am.get("wheel")),e.scroll&&t.add(Am.get("scroll")),e.move&&t.add(Am.get("move")),e.pinch&&t.add(Am.get("pinch")),e.hover&&t.add(Am.get("hover")),t}(e),o=h().useMemo((function(){return new Fm(r)}),[]);return o.config=t,o.handlers=e,o.nativeRefs=n,h().useEffect(o.effect,[]),o.config.domTarget?Km:o.bind}({drag:function(e){var t=e.distance,n=e.dragging,r=e.event;if(t){if(r.stopPropagation(),!n)return S(e),void Y(e);C(e),W(e),oe||(O(e),K(e))}}},n.current(t))}(0,{threshold:u,enabled:p}),de=p?ue():{};return(0,s.createElement)(Rf,l({},q,de,{className:"components-input-control__input",disabled:r,dragCursor:le,isDragging:oe,id:d,onBlur:function(e){_(e),F(!1),v&&ae&&(se.current=!0,function(e){var t=""===e;return!Ol(e)||t}(re)?ee(G):ce(e))},onChange:function(e){var t=e.target.value;U(t,e)},onFocus:function(e){A(e),F(!0)},onKeyDown:function(e){var t=e.keyCode;switch(R(e),t){case cs.UP:J(e);break;case cs.DOWN:Z(e);break;case cs.ENTER:X(e),v&&(e.preventDefault(),ce(e))}},ref:t,size:I,value:re,type:B}))})),bh=vh;var _h=(0,s.forwardRef)((function e(t,n){var r=t.__unstableStateReducer,o=void 0===r?function(e){return e}:r,a=t.__unstableInputWidth,i=t.className,u=t.disabled,g=void 0!==u&&u,p=t.hideLabelFromVision,f=void 0!==p&&p,m=t.id,h=t.isPressEnterToChange,y=void 0!==h&&h,v=t.label,b=t.labelPosition,_=void 0===b?"top":b,w=t.onChange,E=void 0===w?ie.noop:w,$=t.onValidate,C=void 0===$?ie.noop:$,k=t.onKeyDown,S=void 0===k?ie.noop:k,x=t.prefix,O=t.size,P=void 0===O?"default":O,A=t.suffix,N=t.value,R=c(t,["__unstableStateReducer","__unstableInputWidth","className","disabled","hideLabelFromVision","id","isPressEnterToChange","label","labelPosition","onChange","onValidate","onKeyDown","prefix","size","suffix","value"]),T=Et((0,s.useState)(!1),2),M=T[0],j=T[1],I=function(t){var n=rf(e),r="inspector-input-control-".concat(n);return t||r}(m),F=d()("components-input-control",i);return(0,s.createElement)(Uf,{__unstableInputWidth:a,className:F,disabled:g,gap:3,hideLabelFromVision:f,id:I,isFocused:M,justify:"left",label:v,labelPosition:_,prefix:x,size:P,suffix:A},(0,s.createElement)(bh,l({},R,{className:"components-input-control__input",disabled:g,id:I,isFocused:M,isPressEnterToChange:y,onChange:E,onKeyDown:S,onValidate:C,ref:n,setIsFocused:j,size:P,stateReducer:o,value:N})))}));const wh="app-input-control";var Eh=(0,s.forwardRef)(((e,t)=>{const{className:n,noPointerEvents:r,...o}=e,a=d()(wh,r&&`${wh}--no-pointer-events`,n);return(0,s.createElement)("div",{className:a},(0,s.createElement)(_h,l({ref:t},o)))})),$h=e=>{const{className:t,...n}=e;return(0,s.createElement)(Eh,l({className:d()("app-input-link-control",t),prefix:(0,s.createElement)(vp,{icon:Xf,size:24})},n))},Ch=e=>{let{id:t,websiteUrl:n,onSwitchAccount:r=ie.noop}=e;const{invalidateResolution:a}=Og(),[l,{loading:c,error:u,reset:d}]=Lp({path:"/wc/gla/mc/accounts/claim-overwrite",method:"POST",data:{id:t}}),g=(0,i.getSetting)("homeUrl");return(0,s.createElement)(xp,{className:"gla-reclaim-url-card",appearance:Ep.GOOGLE_MERCHANT_CENTER,description:(0,o.sprintf)(// translators: 1: website URL, 2: account ID.
5
  (0,o.__)("%1$s (%2$s)","google-listings-and-ads"),n,t),indicator:(0,s.createElement)(gc,{isSecondary:!0,disabled:c,eventName:"gla_mc_account_switch_account_button_click",eventProps:{context:"reclaim-url"},onClick:r},(0,o.__)("Switch account","google-listings-and-ads"))},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Reclaim your URL","google-listings-and-ads")),(0,s.createElement)(cp.Body,null,(0,o.__)("Your URL is currently claimed by another Merchant Center account.","google-listings-and-ads")),(0,s.createElement)(Zf,null,(0,s.createElement)($h,{disabled:!0,value:g}),(0,s.createElement)(gc,{isSecondary:!0,loading:c,eventName:"gla_mc_account_reclaim_url_button_click",onClick:async()=>{d(),await l({parse:!1}),a("getGoogleMCAccount",[])}},(0,o.__)("Reclaim my URL","google-listings-and-ads"))),(0,s.createElement)(cp.HelperText,null,(0,s.createInterpolateElement)((0,o.__)("If you reclaim this URL, it will cause any existing product listings or ads to stop running, and the other verified account will be notified that they have lost their claim. <link>Learn more</link>.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc",linkId:"claim-url",href:"https://support.google.com/merchants/answer/176793"})})),u&&(0,s.createElement)(Fc,{status:"error",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("<strong>We were unable to reclaim this URL.</strong> You may not have permission to reclaim this URL, or an error might have occurred. Try again later or contact your Google account administrator.","google-listings-and-ads"),{strong:(0,s.createElement)("strong",null)}))))},kh=e=>{let{id:t,claimedUrl:n,newUrl:r,onSelectAnotherAccount:a=(()=>{})}=e;const{createNotice:l}=Np(),{invalidateResolution:c}=Og(),[u,{loading:d,error:g,response:p}]=Lp({path:"/wc/gla/mc/accounts/switch-url",method:"POST",data:{id:t}}),f=(0,i.getSetting)("homeUrl"),m=()=>{a()};return p&&403===p.status?(0,s.createElement)(Ch,{id:g.id,websiteUrl:g.website_url,onSwitchAccount:m}):(0,s.createElement)(xp,{className:"gla-switch-url-card",appearance:Ep.GOOGLE_MERCHANT_CENTER,description:(0,o.sprintf)(// translators: 1: the new URL, 2: account ID.
@@ -14,11 +14,11 @@
14
  (0,o.__)("Minimum order for <strong>%1$s</strong> + %2$d more","google-listings-and-ads"),textWithoutMore:// translators: 1: list of country names separated by comma.
15
  (0,o.__)("Minimum order for <strong>%1$s</strong>","google-listings-and-ads")}))},dv=e=>{const{countryOptions:t,value:n,onChange:r,onDelete:a}=e,{countries:i,threshold:l,currency:c}=n;return(0,s.createElement)(jy,{className:"gla-minimum-order-input-control",label:(0,s.createElement)("div",{className:"gla-minimum-order-input-control__label"},(0,s.createElement)(uv,{countries:i}),(0,s.createElement)(xy,{button:(0,s.createElement)(gc,{isTertiary:!0},(0,o.__)("Edit","google-listings-and-ads")),modal:(0,s.createElement)(cv,{countryOptions:t,initialValues:n,onSubmit:r,onDelete:a})})),suffix:c,value:l,onBlur:(e,t)=>{t!==n.threshold&&r({countries:i,threshold:t>0?t:void 0,currency:c})}})};const gv=(e,t,n)=>e.map((e=>{const r={...e,options:{...e.options}};return null!=n&&n.countries.includes(r.country)?r.options.free_shipping_threshold=n.threshold:null!=t&&t.countries.includes(r.country)&&(r.options.free_shipping_threshold=void 0),r}));var pv=e=>{const{value:t=[],onChange:n}=e;return(0,s.createElement)(gp.Card,{className:"gla-minimum-order-card"},(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(gp.Card.Title,null,(0,o.__)("Minimum order to qualify for free shipping","google-listings-and-ads")),(0,s.createElement)(fp,{size:"large"},(()=>{const e=t.filter(uy),r=(e=>{const t=new Map;return e.forEach((e=>{const{method:n,options:{free_shipping_threshold:r},currency:o}=e,a=`${n} ${r} ${o}`,i=t.get(a)||{countries:[],method:n,threshold:r,currency:o};i.countries.push(e.country),t.set(a,i)})),Array.from(t.values())})(e),a=e.map((e=>e.country)),i=e=>r=>{n(gv(t,e,r))},l=e=>()=>{n(gv(t,e))};if(1===r.length)return(0,s.createElement)(dv,{countryOptions:a,value:r[0],onChange:i(r[0]),onDelete:l(r[0])});const c=r.filter((e=>void 0!==e.threshold)),u=r.find((e=>void 0===e.threshold));return(0,s.createElement)(s.Fragment,null,c.map((e=>(0,s.createElement)(dv,{key:e.countries.join("-"),countryOptions:a,value:e,onChange:i(e),onDelete:l(e)}))),u&&(0,s.createElement)("div",null,(0,s.createElement)(xy,{button:(0,s.createElement)(gc,{isSecondary:!0,icon:(0,s.createElement)(Sy.Z,null)},(0,o.__)("Add another minimum order","google-listings-and-ads")),modal:(0,s.createElement)(lv,{countryOptions:u.countries,initialValues:u,onSubmit:e=>{n(gv(t,null,e))}})})))})())))},fv=e=>{const{audienceCountries:t,formProps:n}=e,{getInputProps:r,values:o,setValue:a}=n,i=o.shipping_country_rates.some(uy);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(ov,l({audienceCountries:t},r("shipping_country_rates"),{onChange:(c=r("shipping_country_rates").onChange,e=>{e.some(uy)||a("offer_free_shipping",void 0),c(e)})})),i&&(0,s.createElement)(s.Fragment,null,(0,s.createElement)(av,l({},r("offer_free_shipping"),{onChange:(e=>t=>{if(!t){const e=o.shipping_country_rates.map((e=>({...e,options:{...e.options,free_shipping_threshold:void 0}})));a("shipping_country_rates",e)}e(t)})(r("offer_free_shipping").onChange)})),o.offer_free_shipping&&(0,s.createElement)(pv,r("shipping_country_rates"))));var c},mv=e=>{let{formProps:t,audienceCountries:n}=e;const{getInputProps:r,values:a,setValue:i}=t,c=r("shipping_rate"),u=e=>t=>{switch(t){case"automatic":case"flat":i("shipping_time","flat");break;case"manual":i("shipping_time","manual")}e(t)};return(0,s.createElement)(gp,{title:(0,o.__)("Shipping rates","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Your shipping rates will be shown to potential customers on Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-read-more",href:"https://support.google.com/merchants/answer/7050921"},(0,o.__)("Read more","google-listings-and-ads"))))},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(yy,l({},c,{label:(0,s.createInterpolateElement)((0,o.__)("<strong>Recommended:</strong> Automatically sync my store’s shipping settings to Google.","google-listings-and-ads"),{strong:(0,s.createElement)("strong",null)}),value:"automatic",collapsible:!0,onChange:u(c.onChange)}),(0,s.createElement)(my,null,(0,o.__)("My current settings and any future changes to my store’s shipping rates and classes will be automatically synced to Google Merchant Center.","google-listings-and-ads"))),(0,s.createElement)(yy,l({},c,{label:(0,o.__)("My shipping settings are simple. I can manually estimate flat shipping rates.","google-listings-and-ads"),value:"flat",collapsible:!0,onChange:u(c.onChange)})),(0,s.createElement)(yy,l({},c,{label:(0,o.__)("My shipping settings are complex. I will enter my shipping rates and times manually in Google Merchant Center.","google-listings-and-ads"),value:"manual",collapsible:!0,onChange:u(c.onChange)}),(0,s.createElement)(my,null,(0,s.createInterpolateElement)((0,o.__)("I understand that if I don’t set this up manually in <link>Google Merchant Center</link>, my products will be disapproved by Google.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-manual",href:"https://www.google.com/retail/solutions/merchant-center/"})})))))),"flat"===a.shipping_rate&&(0,s.createElement)(fv,{audienceCountries:n,formProps:t})))},hv=()=>Ag("getShippingTimes"),yv=e=>{let{additionalCountryCodes:t,...n}=e,{data:r}=Cy();return r?(t&&(r=Array.from(new Set(r.concat(t)))),(0,s.createElement)(Wy,l({},n,{countryCodes:r}))):(0,s.createElement)(Wg,null)},vv=e=>{const t={};return 0===e.countries.length&&(t.countries=(0,o.__)("Please specify at least one country.","google-listings-and-ads")),Number.isInteger(e.time)||(t.time=(0,o.__)("Please enter the estimated shipping time.","google-listings-and-ads")),e.time<0&&(t.time=(0,o.__)("The estimated shipping time cannot be less than 0.","google-listings-and-ads")),t},bv=e=>{const{onRequestClose:t}=e,{upsertShippingTimes:n}=Og(),r=(()=>{const{data:e}=Cy(),t=(0,dn.useSelect)((e=>e(Lc).getShippingTimes().map((e=>e.countryCode))),[]);if(!e)return[];const n=new Set(t);return e.filter((e=>!n.has(e)))})(),[a,i]=(0,s.useState)(!1);return(0,s.createElement)(Bl.Form,{initialValues:{countries:r,time:0},validate:vv,onSubmit:e=>{n({countryCodes:e.countries,time:e.time}),t()}},(e=>{const{getInputProps:n,isValidForm:r,handleSubmit:c}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!a,shouldCloseOnClickOutside:!a,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!r,onClick:c},(0,o.__)("Save","google-listings-and-ads"))],onRequestClose:t},(0,s.createElement)(fp,null,(0,s.createElement)(yv,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),onDropdownVisibilityChange:i},n("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},n("time")))))}))},_v=()=>{const[e,t]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{isSecondary:!0,icon:(0,s.createElement)(Sy.Z,null),onClick:()=>{t(!0)}},(0,o.__)("Add another time","google-listings-and-ads")),e&&(0,s.createElement)(bv,{onRequestClose:()=>{t(!1)}}))},wv=e=>{const{countries:t}=e;return(0,s.createElement)("div",null,(0,s.createElement)(ev,{countries:t,textWithMore:// translators: 1: list of country names separated by comma, up to 5 countries; 2: the remaining count of countries.
16
  (0,o.__)("Shipping time for <strong>%1$s</strong> + %2$d more","google-listings-and-ads"),textWithoutMore:// translators: 1: list of country names separated by comma.
17
- (0,o.__)("Shipping time for <strong>%1$s</strong>","google-listings-and-ads")}))},Ev=e=>{const{time:t,onRequestClose:n}=e,{upsertShippingTimes:r,deleteShippingTimes:a}=Og(),[i,c]=(0,s.useState)(!1),u=()=>{a(t.countries),n()};return(0,s.createElement)(Bl.Form,{initialValues:{countries:t.countries,time:t.time},validate:vv,onSubmit:e=>{r({countryCodes:e.countries,time:e.time});const o=new Set(e.countries),i=t.countries.filter((e=>!o.has(e)));i.length&&a(i),n()}},(e=>{const{getInputProps:t,isValidForm:r,handleSubmit:a}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!i,shouldCloseOnClickOutside:!i,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"delete",isTertiary:!0,isDestructive:!0,onClick:u},(0,o.__)("Delete","google-listings-and-ads")),(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!r,onClick:a},(0,o.__)("Save","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)(fp,null,(0,s.createElement)(yv,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),onDropdownVisibilityChange:c},t("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},t("time")))))}))},$v=e=>{const{time:t}=e,[n,r]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{className:"gla-edit-time-button",isTertiary:!0,onClick:()=>{r(!0)}},(0,o.__)("Edit","google-listings-and-ads")),n&&(0,s.createElement)(Ev,{time:t,onRequestClose:()=>{r(!1)}}))},Cv=e=>{const{value:t,onBlur:n}=e,{countries:r,time:a}=t,{data:i}=Cy();return i?(0,s.createElement)("div",{className:"gla-countries-time-input"},(0,s.createElement)(My,{label:(0,s.createElement)("div",{className:"label"},(0,s.createElement)(wv,{countries:r}),(0,s.createElement)($v,{time:t})),suffix:(0,o.__)("days","google-listings-and-ads"),value:a,onBlur:n})):(0,s.createElement)(Wg,null)},kv=e=>{const t=Pg(e.savedValue),[n,r]=(0,s.useState)(t),{upsertShippingTimes:o}=Og();return(0,s.useEffect)((()=>{r(t)}),[t]),(0,s.createElement)(Cv,{value:n,onBlur:(e,t)=>{const{countries:a,time:i}=n;i!==t&&(r({countries:a,time:t}),o({countryCodes:a,time:t}))}})},Sv=()=>{const{data:e}=hv(),{data:t}=Cy();if(!t)return(0,s.createElement)(Wg,null);const n=t.length,r=e.length,o=n-r,a=(e=>{const t=new Map;return e.forEach((e=>{const{countryCode:n,time:r}=e,o=t.get(r)||{countries:[],time:r};o.countries.push(n),t.set(r,o)})),Array.from(t.values())})(e);return 0===a.length&&a.push({countries:t,time:null}),(0,s.createElement)("div",{className:"gla-shipping-time-setup"},(0,s.createElement)(fp,null,(0,s.createElement)("div",{className:"countries-time"},(0,s.createElement)(fp,null,a.map((e=>(0,s.createElement)("div",{key:e.countries.join("-"),className:"countries-time-input-form"},(0,s.createElement)(kv,{savedValue:e})))),r>=1&&o>=1&&(0,s.createElement)("div",{className:"add-time-button"},(0,s.createElement)(_v,null))))))},xv=e=>{let{formProps:t}=e;return(0,s.createElement)(gp,{title:(0,o.__)("Shipping times","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Your shipping times will be shown to potential customers on Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-read-more",href:"https://support.google.com/merchants/answer/7050921"},(0,o.__)("Read more","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(gp.Card.Title,null,(0,o.__)("Estimated shipping times","google-listings-and-ads")),(0,s.createElement)(Sv,{formProps:t}))))};const Ov=(e,t)=>{const n=["country","method","currency","rate","options.free_shipping_threshold"];return(0,ie.isEqual)((0,ie.at)(e,n),(0,ie.at)(t,n))};var Pv=(e,t)=>(0,ie.differenceWith)(e,t,Ov),Av=(e,t)=>void 0!==e.id&&e.id===t.id||e.country===t.country&&e.method===t.method,Nv=()=>Ag("getShippingRates"),Rv=()=>{const{data:e}=Nv(),{deleteShippingRates:t,upsertShippingRates:n}=Og();return{saveShippingRates:(0,s.useCallback)((async r=>{const o=((e,t)=>((e,t)=>(0,ie.differenceWith)(t,e,Av))(e,t).map((e=>e.id)))(r,e);o.length&&await t(o);const a=Pv(r,e);a.length&&await n(a)}),[t,e,n])}},Tv=e=>{const{formProps:t,submitButton:n}=e,{values:r}=t,{shipping_country_rates:o,...a}=r,{data:i}=Cy(),l=Ey(i),c="flat"===r.shipping_time;return(e=>{const{saveSettings:t}=Og();wy(e,t)})(a),(e=>{const{saveShippingRates:t}=Rv(),n=Pg(e);wy(n,(async e=>{try{await t(e)}catch(e){}}))})(o),(0,s.createElement)(tp,null,(0,s.createElement)(mv,{formProps:t,audienceCountries:i}),c&&(0,s.createElement)(xv,{formProps:t}),(0,s.createElement)(ky,{show:l},(0,s.createElement)(vy,{formProps:t})),(0,s.createElement)(rp,null,n))};function Mv(){const e=(0,s.useRef)(!1);return(0,s.useEffect)((()=>(e.current=!0,()=>{e.current=!1})),[]),(0,s.useCallback)((()=>e.current),[])}var jv=e=>{if(e.some(uy))return e.some((e=>e.options.free_shipping_threshold>0))},Iv=e=>{const t=Pg(e),[n,r]=Lp(t,{loading:!0});return(0,s.useEffect)((()=>{t&&n()}),[n,t]),r},Fv=()=>{const{hasFinishedResolution:e,data:t}=Nv(),{loading:n,data:r}=(()=>{const{loading:e,data:t}=Cy(),{loading:n,data:r}=Iv(t&&{path:(0,tg.addQueryArgs)("/wc/gla/mc/shipping/rates/suggestions",{country_codes:t})});return{loading:e||n,data:null==r?void 0:r.filter((e=>e.method===sc))}})(),a=(0,s.useRef)(void 0);e&&void 0===a.current&&(a.current=0===t.length);const i=a.current&&r,[l,c]=(0,s.useState)(!1),u=(()=>{const{createNotice:e}=Np(),{saveShippingRates:t}=Rv();return(0,s.useCallback)((async n=>{try{await t(n)}catch(t){e("error",(0,o.__)("Unable to use your WooCommerce shipping settings as shipping rates in Google. You may have to enter shipping rates manually.","google-listings-and-ads"))}}),[e,t])})();return function(e,t){const n=(0,s.useRef)(!1);for(var r=arguments.length,o=new Array(r>2?r-2:0),a=2;a<r;a++)o[a-2]=arguments[a];const i=Pg(o);(0,s.useEffect)((()=>{!0!==n.current&&e&&(n.current=!0,t(...i))}),[i,t,e])}(i,(0,s.useCallback)((async e=>{await u(e),c(!0)}),[u]),r),{loading:n||!e||i&&!l,data:t}},Dv=e=>{const{onContinue:t=(()=>{})}=e,{settings:n}=cy(),{loading:r,data:a}=Fv(),{data:i}=hv(),{data:l}=Cy(),{saveSettings:c}=Og(),{saveShippingRates:u}=Rv(),[d,g]=(0,s.useState)(!1),{createNotice:p}=Np(),f=Mv();return n&&!r&&i&&l?(0,s.createElement)("div",{className:"gla-setup-free-listings"},(0,s.createElement)(ly,null),(0,s.createElement)(Bl.Form,{initialValues:{shipping_rate:n.shipping_rate||"automatic",shipping_time:n.shipping_time||"flat",tax_rate:n.tax_rate,shipping_country_rates:a,offer_free_shipping:jv(a)},validate:()=>({}),onSubmit:async e=>{const{shipping_country_rates:n,...r}=e;g(!0);try{await Promise.all([c(r),u(n)]),t()}catch(e){f()&&g(!1),p("error",(0,o.__)("There is a problem in saving your settings and shipping rates. Please try again later.","google-listings-and-ads"))}}},(e=>{const{values:t,handleSubmit:n}=e,r=fy(t,i,l),a=Object.keys(r).length>=1;return(0,s.createElement)(Tv,{formProps:e,submitButton:(0,s.createElement)(gc,{isPrimary:!0,disabled:a,loading:d,onClick:n},(0,o.__)("Continue","google-listings-and-ads"))})}))):(0,s.createElement)(Wg,null)},Lv=e=>{const{formProps:t}=e,{values:n,isValidForm:r,getInputProps:a,handleSubmit:i}=t,{locale:c,language:u}=n,[d,g]=(0,s.useState)(!0);return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ie.noop;const{saveTargetAudience:n}=Og(),{createNotice:r}=Np(),a=async e=>{try{await n(e),t(!0)}catch(e){r("error",(0,o.__)("There was an error saving target audience data.","google-listings-and-ads")),t(!1)}};wy(e,a,{callOnFirstRender:!0})}(n,g),((e,t)=>{const{data:n}=hv(),{saveShippingRates:r}=Rv(),{deleteShippingTimes:a}=Og(),{createNotice:i}=Np(),l=by((async()=>{try{if(r([]),n.length){const e=n.map((e=>e.countryCode));a(e)}}catch(e){i("error",(0,o.__)("Something went wrong while trying to clear your shipping data. Please try again later.","google-listings-and-ads"))}}),500),c=(0,s.useRef)(null),u=(0,s.useRef)(null);(0,s.useEffect)((()=>{if(null===c.current&&null===u.current)return c.current=e,void(u.current=t);"all"===c.current&&"all"===e||"selected"===c.current&&"selected"===e&&u.current.length===t.length||(c.current=e,u.current=t,l.callback())}),[l,e,t])})(n.location,n.countries),(0,s.createElement)(s.Fragment,null,(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Where do you want to sell your products?","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Language","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,s.createInterpolateElement)((0,o.__)("Listings can only be displayed in your site language. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-audience",linkId:"site-language",href:"https://support.google.com/merchants/answer/160637"})})),(0,s.createElement)(hy,{selected:c,options:[{label:u,value:c}]})),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Location","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,o.__)("Your store should already have the appropriate shipping and tax rates (if required) for potential customers in your selected location(s).","google-listings-and-ads")),(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(yy,l({},a("location"),{collapsible:!0,label:(0,o.__)("Selected countries only","google-listings-and-ads"),value:"selected"}),(0,s.createElement)("div",{className:"input"},(0,s.createElement)(Wy,l({multiple:!0},a("countries")))),(0,s.createElement)("div",{className:"cannot-find-country"},(0,o.__)("Can’t find a country? Only supported countries can be selected.","google-listings-and-ads"))),(0,s.createElement)(yy,l({},a("location"),{label:(0,o.__)("All countries","google-listings-and-ads"),value:"all"}),(0,s.createElement)(my,null,(0,o.__)("Your listings will be shown in all supported countries.","google-listings-and-ads")))))))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:!r||!d,onClick:i},(0,o.__)("Continue","google-listings-and-ads"))))},Gv=e=>{const{onContinue:t=(()=>{})}=e,{loading:n,data:r}=(()=>{const{hasFinishedResolution:e}=$y(),{hasFinishedResolution:t,data:n}=Ng(),{loading:r,data:o}=Iv({path:"/wc/gla/mc/target_audience/suggestions"});return{loading:!e||!t||r,data:t&&null===(null==n?void 0:n.location)&&null===(null==n?void 0:n.countries)?o:n}})();return n?(0,s.createElement)(Wg,null):(0,s.createElement)("div",{className:"gla-choose-audience"},(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Choose your audience","google-listings-and-ads"),description:(0,o.__)("Configure who sees your product listings on Google.","google-listings-and-ads")}),(0,s.createElement)(Bl.Form,{initialValues:{locale:r.locale,language:r.language,location:r.location,countries:r.countries||[]},validate:e=>{const t={};return e.location||(t.location=(0,o.__)("Please select a location option.","google-listings-and-ads")),"selected"===e.location&&0===e.countries.length&&(t.countries=(0,o.__)("Please select at least one country.","google-listings-and-ads")),t},onSubmit:()=>{t()}},(e=>(0,s.createElement)(Lv,{formProps:e})))))},Bv=()=>(0,i.getSetting)("adminUrl");const qv={address:"",address2:"",city:"",state:"",country:"",postcode:"",isMCAddressDifferent:null,isAddressFilled:null};function zv(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"wc";const{data:t,hasFinishedResolution:n,invalidateResolution:r}=Ag("getGoogleMCContactInformation"),o=Xy();let a=qv;if(n&&t){const{is_mc_address_different:n}=t,r="wc"===e?t.wc_address:t.mc_address,i=(null==r?void 0:r.street_address)||"",s=(null==r?void 0:r.locality)||"",l=(null==r?void 0:r.region)||"",c=(null==r?void 0:r.postal_code)||"",[u,d=""]=i.split("\n");a={address:u,address2:d,city:s,state:l,country:o[null==r?void 0:r.country],postcode:c,isAddressFilled:!t.wc_address_errors.length,isMCAddressDifferent:n}}return{refetch:r,loaded:n,data:a}}var Hv={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{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[25689]"]]]],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)|3(?:06|43|6[578])|4(?:03|1[68]|3[178]|50|74)|5(?:06|1[49]|48|79|8[17])|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[12]|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","(?:0\\d\\d|222|800)\\d{6}",[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-3]"],"($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",["11|[67]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]]],0,0,"0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[47]\\d{6}|76\\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-278])))|(?: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|81|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|81|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]|1[0-2]|2[0-68]|3[1289]|4[0-24-9]|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","(?:862\\d|9008)\\d{3}|(?:[2-46]\\d|77)\\d{5}",[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}(?:\\d(?:\\d(?:\\d{4})?)?)?|(?:[235-79]\\d|46)\\d{6}",[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|81|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","90\\d{5}|(?:[2378]|6\\d\\d)\\d{6}",[7,9],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[237-9]"]],["(\\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[89][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(?:0\\d|1[0-5]|6[1267]|7[0-57]))\\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"],"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","(?:[19]\\d|[23]1|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","[2-57-9]\\d{5}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1.$2.$3",["[2-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}|[89]\\d{6,9}|1\\d{4,5}",[5,6,7,8,9,10],[["(\\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-57-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]","8000\\d{3}|(?:[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)"],"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-4]|[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]|33)|4(?:00|4[24]|65|82)|5(?:00|29|83)|6(?:00|66|82)|777|8(?:00|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[39]|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[0179]|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[01579]|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[12]|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","(?:63|80)0\\d{6}|(?:21|[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\\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{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["510"]],["(\\d{4})(\\d{4})(\\d{4})","$1 $2 $3",["5"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["(?:210|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}"]]]}};function Uv(e,t){var n=Array.prototype.slice.call(t);return n.push(Hv),e.apply(this,n)}function Vv(e){return Vv="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Vv(e)}function Wv(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Yv(e){var t,n,r,o,a,i=(o=Array.prototype.slice.call(e),a=4,function(e){if(Array.isArray(e))return e}(o)||function(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(_n=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{_n||null==i.return||i.return()}finally{if(r)throw o}}return n}(o,a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()),s=i[0],l=i[1],c=i[2],u=i[3];if("string"!=typeof s)throw new TypeError("A text for parsing must be a string.");if(t=s,l&&"string"!=typeof l){if(!Kv(l))throw new Error("Invalid second argument: ".concat(l));c?(n=l,r=c):r=l}else u?(n=c,r=u):(n=void 0,r=c),l&&(n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Wv(e,t,n[t])}))}return e}({defaultCountry:l},n));return{text:t,options:n,metadata:r}}var Kv=function(e){return"object"===Vv(e)},Qv="".concat("-‐-―−ー-").concat("//").concat("..").concat("  ­​⁠ ").concat("()()[]\\[\\]").concat("~⁓∼~"),Zv=function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.name=this.constructor.name,this.message=t,this.stack=new Error(t).stack};function Xv(e,t){e=e.split("-"),t=t.split("-");for(var n=e[0].split("."),r=t[0].split("."),o=0;o<3;o++){var a=Number(n[o]),i=Number(r[o]);if(a>i)return 1;if(i>a)return-1;if(!isNaN(a)&&isNaN(i))return 1;if(isNaN(a)&&!isNaN(i))return-1}return e[1]&&t[1]?e[1]>t[1]?1:e[1]<t[1]?-1:0:!e[1]&&t[1]?1:e[1]&&!t[1]?-1:0}function Jv(e){return Jv="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Jv(e)}function eb(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function tb(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function nb(e,t,n){return t&&tb(e.prototype,t),n&&tb(e,n),e}(Zv.prototype=Object.create(Error.prototype)).constructor=Zv;var rb=" ext. ",ob=/^\d+$/,ab=function(){function e(t){eb(this,e),function(e){if(!e)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!db(e)||!db(e.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(db(e)?"an object of shape: { "+Object.keys(e).join(", ")+" }":"a "+gb(e)+": "+e,"."))}(t),this.metadata=t,fb.call(this,t)}return nb(e,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter((function(e){return"001"!==e}))}},{key:"getCountryMetadata",value:function(e){return this.metadata.countries[e]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(e){return void 0!==this.getCountryMetadata(e)}},{key:"hasCallingCode",value:function(e){if(this.getCountryCodesForCallingCode(e))return!0;if(this.nonGeographic()){if(this.nonGeographic()[e])return!0}else{var t=this.countryCallingCodes()[e];if(t&&1===t.length&&"001"===t[0])return!0}}},{key:"isNonGeographicCallingCode",value:function(e){return this.nonGeographic()?!!this.nonGeographic()[e]:!this.getCountryCodesForCallingCode(e)}},{key:"country",value:function(e){return this.selectNumberingPlan(e)}},{key:"selectNumberingPlan",value:function(e,t){if(e&&ob.test(e)&&(t=e,e=null),e&&"001"!==e){if(!this.hasCountry(e))throw new Error("Unknown country: ".concat(e));this.numberingPlan=new ib(this.getCountryMetadata(e),this)}else if(t){if(!this.hasCallingCode(t))throw new Error("Unknown calling code: ".concat(t));this.numberingPlan=new ib(this.getNumberingPlanMetadata(t),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(e){var t=this.countryCallingCodes()[e];if(t){if(1===t.length&&3===t[0].length)return;return t}}},{key:"getCountryCodeForCallingCode",value:function(e){var t=this.getCountryCodesForCallingCode(e);if(t)return t[0]}},{key:"getNumberingPlanMetadata",value:function(e){var t=this.getCountryCodeForCallingCode(e);if(t)return this.getCountryMetadata(t);if(this.nonGeographic()){var n=this.nonGeographic()[e];if(n)return n}else{var r=this.countryCallingCodes()[e];if(r&&1===r.length&&"001"===r[0])return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(e){return this.numberingPlan.type(e)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(e){return this.selectNumberingPlan(e)}},{key:"hasSelectedNumberingPlan",value:function(){return void 0!==this.numberingPlan}}]),e}(),ib=function(){function e(t,n){eb(this,e),this.globalMetadataObject=n,this.metadata=t,fb.call(this,n.metadata)}return nb(e,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(e){return e[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var e=this;return(this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[]).map((function(t){return new sb(t,e)}))}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(e){return e[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return!(this.types()&&0===this.types().length||!this.types())}},{key:"type",value:function(e){if(this.hasTypes()&&ub(this.types(),e))return new cb(ub(this.types(),e),this)}},{key:"ext",value:function(){return this.v1||this.v2?rb:this.metadata[13]||rb}}]),e}(),sb=function(){function e(t,n){eb(this,e),this._format=t,this.metadata=n}return nb(e,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!(!this.nationalPrefixFormattingRule()||lb.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),e}(),lb=/^\(?\$1\)?$/,cb=function(){function e(t,n){eb(this,e),this.type=t,this.metadata=n}return nb(e,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),e}();function ub(e,t){switch(t){case"FIXED_LINE":return e[0];case"MOBILE":return e[1];case"TOLL_FREE":return e[2];case"PREMIUM_RATE":return e[3];case"PERSONAL_NUMBER":return e[4];case"VOICEMAIL":return e[5];case"UAN":return e[6];case"PAGER":return e[7];case"VOIP":return e[8];case"SHARED_COST":return e[9]}}var db=function(e){return"object"===Jv(e)},gb=function(e){return Jv(e)};function pb(e,t){if((t=new ab(t)).hasCountry(e))return t.country(e).countryCallingCode();throw new Error("Unknown country: ".concat(e))}function fb(e){var t=e.version;"number"==typeof t?(this.v1=1===t,this.v2=2===t,this.v3=3===t,this.v4=4===t):t?-1===Xv(t,"1.2.0")?this.v2=!0:-1===Xv(t,"1.7.35")?this.v3=!0:this.v4=!0:this.v1=!0}var mb=function(e){return"([".concat("0-90-9٠-٩۰-۹","]{1,").concat(e,"})")};function hb(e){var t="#?";return";ext="+mb("20")+"|[  \\t,]*(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)[:\\..]?[  \\t,-]*"+mb("20")+"#?|[  \\t,]*(?:[xx##~~]|int|int)[:\\..]?[  \\t,-]*"+mb("9")+"#?|[- ]+"+mb("6")+"#|[  \\t]*(?:,{2}|;)[:\\..]?[  \\t,-]*"+mb("15")+"#?|[  \\t]*(?:,)+[:\\..]?[  \\t,-]*"+mb("9")+t}var yb="[++]{0,1}(?:["+Qv+"]*[0-90-9٠-٩۰-۹]){3,}["+Qv+"0-90-9٠-٩۰-۹]*",vb=new RegExp("^[++]{0,1}(?:["+Qv+"]*[0-90-9٠-٩۰-۹]){1,2}$","i"),bb=yb+"(?:"+hb()+")?",_b=new RegExp("^[0-90-9٠-٩۰-۹]{2}$|^"+bb+"$","i");function wb(e){return e.length>=2&&_b.test(e)}var Eb=new RegExp("(?:"+hb()+")$","i"),$b={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function Cb(e){var t="",n=e.split(""),r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}t+=kb(a,t)||""}return t}function kb(e,t){if("+"===e){if(t)return;return"+"}return function(e){return $b[e]}(e)}function Sb(e,t){return xb(e,void 0,t)}function xb(e,t,n){var r=n.type(t),o=r&&r.possibleLengths()||n.possibleLengths();if(!o)return"IS_POSSIBLE";if("FIXED_LINE_OR_MOBILE"===t){if(!n.type("FIXED_LINE"))return xb(e,"MOBILE",n);var a=n.type("MOBILE");a&&(o=function(e,t){var n=e.slice(),r=t,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;e.indexOf(s)<0&&n.push(s)}return n.sort((function(e,t){return e-t}))}(o,a.possibleLengths()))}else if(t&&!r)return"INVALID_LENGTH";var i=e.length,s=o[0];return s===i?"IS_POSSIBLE":s>i?"TOO_SHORT":o[o.length-1]<i?"TOO_LONG":o.indexOf(i,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function Ob(e,t){return"IS_POSSIBLE"===Sb(e,t)}function Pb(e,t){return e=e||"",new RegExp("^(?:"+t+")$").test(e)}var Ab=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function Nb(e,t,n){if(t=t||{},e.country){(n=new ab(n)).selectNumberingPlan(e.country,e.countryCallingCode);var r=t.v2?e.nationalNumber:e.phone;if(Pb(r,n.nationalNumberPattern())){if(Rb(r,"FIXED_LINE",n))return n.type("MOBILE")&&""===n.type("MOBILE").pattern()?"FIXED_LINE_OR_MOBILE":n.type("MOBILE")?Rb(r,"MOBILE",n)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE":"FIXED_LINE_OR_MOBILE";for(var o=0,a=Ab;o<a.length;o++){var i=a[o];if(Rb(r,i,n))return i}}}}function Rb(e,t,n){return!(!(t=n.type(t))||!t.pattern())&&!(t.possibleLengths()&&t.possibleLengths().indexOf(e.length)<0)&&Pb(e,t.pattern())}var Tb=/(\$\d)/;var Mb=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function jb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ib={formatExtension:function(e,t,n){return"".concat(e).concat(n.ext()).concat(t)}};function Fb(e,t,n,r,o){var a=function(e,t){var n=e,r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}var i=a;if(i.leadingDigitsPatterns().length>0){var s=i.leadingDigitsPatterns()[i.leadingDigitsPatterns().length-1];if(0!==t.search(s))continue}if(Pb(t,i.pattern()))return i}}(r.formats(),e);return a?function(e,t,n){var r=n.useInternationalFormat,o=n.withNationalPrefix,a=(n.carrierCode,n.metadata,e.replace(new RegExp(t.pattern()),r?t.internationalFormat():o&&t.nationalPrefixFormattingRule()?t.format().replace(Tb,t.nationalPrefixFormattingRule()):t.format()));return r?function(e){return e.replace(new RegExp("[".concat(Qv,"]+"),"g")," ").trim()}(a):a}(e,a,{useInternationalFormat:"INTERNATIONAL"===n,withNationalPrefix:!a.nationalPrefixIsOptionalWhenFormattingInNationalFormat()||!o||!1!==o.nationalPrefix,carrierCode:t,metadata:r}):e}function Db(e,t,n,r){return t?r(e,t,n):e}function Lb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Gb(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}var Bb=function(){function e(t,n,r){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),!t)throw new TypeError("`country` or `countryCallingCode` not passed");if(!n)throw new TypeError("`nationalNumber` not passed");if(!r)throw new TypeError("`metadata` not passed");var o=new ab(r);qb(t)&&(this.country=t,o.country(t),t=o.countryCallingCode()),this.countryCallingCode=t,this.nationalNumber=n,this.number="+"+this.countryCallingCode+this.nationalNumber,this.metadata=r}var t,n;return t=e,n=[{key:"setExt",value:function(e){this.ext=e}},{key:"isPossible",value:function(){return function(e,t,n){if(void 0===t&&(t={}),n=new ab(n),t.v2){if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}else{if(!e.phone)return!1;if(e.country){if(!n.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));n.country(e.country)}else{if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}}if(n.possibleLengths())return Ob(e.phone||e.nationalNumber,n);if(e.countryCallingCode&&n.isNonGeographicCallingCode(e.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}(this,{v2:!0},this.metadata)}},{key:"isValid",value:function(){return function(e,t,n){return t=t||{},n=new ab(n),!!e.country&&(n.selectNumberingPlan(e.country,e.countryCallingCode),n.hasTypes()?void 0!==Nb(e,t,n.metadata):Pb(t.v2?e.nationalNumber:e.phone,n.nationalNumberPattern()))}(this,{v2:!0},this.metadata)}},{key:"isNonGeographic",value:function(){return new ab(this.metadata).isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(e){return this.number===e.number&&this.ext===e.ext}},{key:"getType",value:function(){return Nb(this,{v2:!0},this.metadata)}},{key:"format",value:function(e,t){return function(e,t,n,r){if(n=n?function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){jb(e,t,n[t])}))}return e}({},Ib,n):Ib,r=new ab(r),e.country&&"001"!==e.country){if(!r.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));r.country(e.country)}else{if(!e.countryCallingCode)return e.phone||"";r.selectNumberingPlan(e.countryCallingCode)}var o,a=r.countryCallingCode(),i=n.v2?e.nationalNumber:e.phone;switch(t){case"NATIONAL":return i?Db(o=Fb(i,e.carrierCode,"NATIONAL",r,n),e.ext,r,n.formatExtension):"";case"INTERNATIONAL":return i?(o=Fb(i,null,"INTERNATIONAL",r,n),Db(o="+".concat(a," ").concat(o),e.ext,r,n.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(i);case"RFC3966":return function(e){var t=e.number,n=e.ext;if(!t)return"";if("+"!==t[0])throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(t).concat(n?";ext="+n:"")}({number:"+".concat(a).concat(i),ext:e.ext});case"IDD":if(!n.fromCountry)return;var s=function(e,t,n,r,o){if(pb(r,o.metadata)===n){var a=Fb(e,t,"NATIONAL",o);return"1"===n?n+" "+a:a}var i=function(e,t,n){var r=new ab(n);return r.selectNumberingPlan(e,void 0),r.defaultIDDPrefix()?r.defaultIDDPrefix():Mb.test(r.IDDPrefix())?r.IDDPrefix():void 0}(r,0,o.metadata);if(i)return"".concat(i," ").concat(n," ").concat(Fb(e,null,"INTERNATIONAL",o))}(i,e.carrierCode,a,n.fromCountry,r);return Db(s,e.ext,r,n.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(t,'"'))}}(this,e,t?function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Lb(e,t,n[t])}))}return e}({},t,{v2:!0}):{v2:!0},this.metadata)}},{key:"formatNational",value:function(e){return this.format("NATIONAL",e)}},{key:"formatInternational",value:function(e){return this.format("INTERNATIONAL",e)}},{key:"getURI",value:function(e){return this.format("RFC3966",e)}}],n&&Gb(t.prototype,n),e}(),qb=function(e){return/^[A-Z]{2}$/.test(e)},zb=new RegExp("([0-90-9٠-٩۰-۹])");function Hb(e,t){var n=function(e,t){if(e&&t.numberingPlan.nationalPrefixForParsing()){var n=new RegExp("^(?:"+t.numberingPlan.nationalPrefixForParsing()+")"),r=n.exec(e);if(r){var o,a,i,s=r.length-1,l=s>0&&r[s];if(t.nationalPrefixTransformRule()&&l)o=e.replace(n,t.nationalPrefixTransformRule()),s>1&&(a=r[1]);else{var c=r[0];o=e.slice(c.length),l&&(a=r[1])}if(l){var u=e.indexOf(r[1]);e.slice(0,u)===t.numberingPlan.nationalPrefix()&&(i=t.numberingPlan.nationalPrefix())}else i=r[0];return{nationalNumber:o,nationalPrefix:i,carrierCode:a}}}return{nationalNumber:e}}(e,t),r=n.nationalNumber,o=n.carrierCode;if(!function(e,t,n){return!(Pb(e,n.nationalNumberPattern())&&!Pb(t,n.nationalNumberPattern()))}(e,r,t))return{nationalNumber:e};if(e.length!==r.length+(o?o.length:0)&&t.possibleLengths())switch(Sb(r,t)){case"TOO_SHORT":case"INVALID_LENGTH":return{nationalNumber:e}}return{nationalNumber:r,carrierCode:o}}var Ub=new RegExp("[++0-90-9٠-٩۰-۹]"),Vb=new RegExp("[^0-90-9٠-٩۰-۹#]+$");function Wb(e,t,n){if(t=t||{},n=new ab(n),t.defaultCountry&&!n.hasCountry(t.defaultCountry)){if(t.v2)throw new Zv("INVALID_COUNTRY");throw new Error("Unknown country: ".concat(t.defaultCountry))}var r=function(e,t,n){if(e&&0===e.indexOf("tel:"))return function(e){var t,n,r,o,a=(e=e.replace(/^tel:/,"tel=")).split(";"),i=Array.isArray(a),s=0;for(a=i?a:a[Symbol.iterator]();;){var l;if(i){if(s>=a.length)break;l=a[s++]}else{if((s=a.next()).done)break;l=s.value}var c=(r=l.split("="),o=2,function(e){if(Array.isArray(e))return e}(r)||function(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(_n=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{_n||null==i.return||i.return()}finally{if(r)throw o}}return n}(r,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()),u=c[0],d=c[1];switch(u){case"tel":t=d;break;case"ext":n=d;break;case"phone-context":"+"===d[0]&&(t=d+t)}}if(!wb(t))return{};var g={number:t};return n&&(g.ext=n),g}(e);var r=function(e,t,n){if(e)if(e.length>250){if(n)throw new Zv("TOO_LONG")}else{if(!1===t)return e;var r=e.search(Ub);if(!(r<0))return e.slice(r).replace(Vb,"")}}(e,n,t);if(!r)return{};if(!wb(r))return function(e){return vb.test(e)}(r)?{error:"TOO_SHORT"}:{};var o=function(e){var t=e.search(Eb);if(t<0)return{};for(var n=e.slice(0,t),r=e.match(Eb),o=1;o<r.length;){if(r[o])return{number:n,ext:r[o]};o++}}(r);return o.ext?o:{number:r}}(e,t.v2,t.extract),o=r.number,a=r.ext,i=r.error;if(!o){if(t.v2){if("TOO_SHORT"===i)throw new Zv("TOO_SHORT");throw new Zv("NOT_A_NUMBER")}return{}}var s=function(e,t,n,r){var o,a=function(e,t,n,r){if(!e)return{};if("+"!==e[0]){var o=function(e,t,n,r){if(t){var o=new ab(r);o.selectNumberingPlan(t,n);var a=new RegExp(o.IDDPrefix());if(0===e.search(a)){var i=(e=e.slice(e.match(a)[0].length)).match(zb);if(!(i&&null!=i[1]&&i[1].length>0&&"0"===i[1]))return e}}}(e,t,n,r);if(!o||o===e){if(t||n){var a=function(e,t,n,r){var o=t?pb(t,r):n;if(0===e.indexOf(o)){(r=new ab(r)).selectNumberingPlan(t,n);var a=e.slice(o.length),i=Hb(a,r).nationalNumber,s=Hb(e,r).nationalNumber;if(!Pb(s,r.nationalNumberPattern())&&Pb(i,r.nationalNumberPattern())||"TOO_LONG"===Sb(s,r))return{countryCallingCode:o,number:a}}return{number:e}}(e,t,n,r),i=a.countryCallingCode,s=a.number;if(i)return{countryCallingCode:i,number:s}}return{number:e}}e="+"+o}if("0"===e[1])return{};r=new ab(r);for(var l=2;l-1<=3&&l<=e.length;){var c=e.slice(1,l);if(r.hasCallingCode(c))return r.selectNumberingPlan(c),{countryCallingCode:c,number:e.slice(l)};l++}return{}}(Cb(e),t,n,r.metadata),i=a.countryCallingCode,s=a.number;if(i)r.selectNumberingPlan(i);else{if(!s||!t&&!n)return{};r.selectNumberingPlan(t,n),t&&(o=t),i=n||pb(t,r.metadata)}if(!s)return{countryCallingCode:i};var l=Hb(Cb(s),r),c=l.nationalNumber,u=l.carrierCode,d=function(e,t,n){var r=n.getCountryCodesForCallingCode(e);if(r)return 1===r.length?r[0]:function(e,t,n){n=new ab(n);var r=e,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;if(n.country(s),n.leadingDigits()){if(t&&0===t.search(n.leadingDigits()))return s}else if(Nb({phone:t,country:s},void 0,n.metadata))return s}}(r,t,n.metadata)}(i,c,r);return d&&(o=d,"001"===d||r.country(o)),{country:o,countryCallingCode:i,nationalNumber:c,carrierCode:u}}(o,t.defaultCountry,t.defaultCallingCode,n),l=s.country,c=s.nationalNumber,u=s.countryCallingCode,d=s.carrierCode;if(!n.hasSelectedNumberingPlan()){if(t.v2)throw new Zv("INVALID_COUNTRY");return{}}if(!c||c.length<2){if(t.v2)throw new Zv("TOO_SHORT");return{}}if(c.length>17){if(t.v2)throw new Zv("TOO_LONG");return{}}if(t.v2){var g=new Bb(u,c,n.metadata);return l&&(g.country=l),d&&(g.carrierCode=d),a&&(g.ext=a),g}var p=!!(t.extended?n.hasSelectedNumberingPlan():l)&&Pb(c,n.nationalNumberPattern());return t.extended?{country:l,countryCallingCode:u,carrierCode:d,valid:p,possible:!!p||!(!0!==t.extended||!n.possibleLengths()||!Ob(c,n)),phone:c,ext:a}:p?function(e,t,n){var r={country:e,phone:t};return n&&(r.ext=n),r}(l,c,a):{}}function Yb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Kb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qb(e,t,n){t&&t.defaultCountry&&!function(e,t){return void 0!==t.countries[e]}(t.defaultCountry,n)&&(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Kb(e,t,n[t])}))}return e}({},t,{defaultCountry:void 0}));try{return function(e,t,n){return Wb(e,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Yb(e,t,n[t])}))}return e}({},t,{v2:!0}),n)}(e,t,n)}catch(e){if(!(e instanceof Zv))throw e}}function Zb(){var e=Yv(arguments),t=e.text,n=e.options,r=e.metadata;return Qb(t,n,r)}function Xb(){return Uv(Zb,arguments)}const Jb={country:"",countryCallingCode:"",nationalNumber:"",isValid:!1,display:""};function e_(){return(0,dn.useSelect)((e=>{const{getGoogleMCPhoneNumber:t}=e(Lc),{data:n,loaded:r}=t();let o=Jb;if(n){const e=Xb(n.phone_number||"");e&&(o={...e,isValid:e.isValid(),display:e.formatInternational()},delete o.metadata)}return{loaded:r,data:o}}),[])}const t_=Array(6).fill(""),n_=e=>{const t=e.join("");return{code:t,isFilled:6===t.length}};function r_(e){let{onCodeChange:t,resetNeedle:n=""}=e;const r=(0,s.useRef)([]),o=(0,s.useRef)(0),a=(0,s.useRef)(),[i,l]=(0,s.useState)(t_);a.current=t;const c=e=>{const t=r.current[e];t&&t.focus()},u=e=>{const{dataset:t,selectionStart:n,selectionEnd:r,value:o}=e.target,a=Number(t.idx);switch(e.keyCode){case 37:case 8:0===n&&0===r&&c(a-1);break;case 39:1!==n&&o||c(a+1)}},d=e=>{o.current=e.target.selectionStart},g=e=>{const{value:n,dataset:r}=e.target,a=Number(r.idx),s=n.substr(o.current,1).replace(/\D/,"");if(s!==n&&(e.target.value=s),s&&c(a+1),s!==i[a]){const e=[...i];e[a]=s,l(e),t(n_(e))}};return(0,s.useEffect)((()=>{r.current.forEach((e=>e.value="")),l(t_),a.current(n_(t_))}),[n]),(0,s.useEffect)((()=>{i===t_&&c(0)}),[n,i]),(0,s.createElement)(ae,{className:"gla-verification-code-control",justify:"normal",gap:2},i.map(((e,t)=>(0,s.createElement)(Eh,{key:t,ref:e=>r.current[t]=e,"data-idx":t,value:e,onKeyDown:u,onBeforeInput:d,onInput:g,autoComplete:"off"}))))}const o_=Object.freeze({SMS:"SMS",PHONE_CALL:"PHONE_CALL"}),a_={[o_.SMS]:{toInstruction:e=>(0,s.createInterpolateElement)((0,o.__)("A text message with the 6-digit verification code has been sent to <userPhoneNumber />.","google-listings-and-ads"),{userPhoneNumber:(0,s.createElement)("strong",null,e)}),textResend:(0,o.__)("Resend code","google-listings-and-ads"),
18
  // translators: %d: seconds to wait until the next verification code can be requested via SMS.
19
  textResendCooldown:(0,o.__)("Resend code (in %ds)","google-listings-and-ads"),textSwitch:(0,o.__)("Or, receive a verification code through a phone call","google-listings-and-ads")},[o_.PHONE_CALL]:{toInstruction:e=>(0,s.createInterpolateElement)((0,o.__)("You will receive a phone call at <userPhoneNumber /> with an automated message containing the 6-digit verification code.","google-listings-and-ads"),{userPhoneNumber:(0,s.createElement)("strong",null,e)}),textResend:(0,o.__)("Call again","google-listings-and-ads"),
20
  // translators: %d: seconds to wait until the next verification code can be requested via phone call.
21
- textResendCooldown:(0,o.__)("Call again (in %ds)","google-listings-and-ads"),textSwitch:(0,o.__)("Or, receive a verification code through text message","google-listings-and-ads")}};function i_(e){let{verificationMethod:t,country:n,number:r,display:a,onVerificationStateChange:i}=e;const l=Mv(),[c,u]=(0,s.useState)(t),{second:d,callCount:g,startCountdown:p}=function(e){const t=(0,s.useRef)({}),[n,r]=(0,s.useState)(0);t.current.usingHandle=e,t.current[e]=t.current[e]||{callCount:0};const o=(0,s.useCallback)((n=>{r(n);const o=t.current[e],a=(new Date).getTime()+1e3*n;o.id&&clearInterval(o.id),o.updateSecond=()=>{let n=(a-(new Date).getTime())/1e3;n=Math.max(Math.round(n),0),t.current.usingHandle===e&&r(n),0===n&&clearInterval(o.id)},o.id=setInterval(o.updateSecond,1e3),o.callCount+=1}),[e]);(0,s.useEffect)((()=>{const{updateSecond:n}=t.current[e];n&&n()}),[e]),(0,s.useEffect)((()=>{const e=t.current;return()=>{Object.values(e).forEach((e=>clearInterval(e.id)))}}),[]);const{callCount:a}=t.current[e];return{second:n,callCount:a,startCountdown:o}}(c),[f,m]=(0,s.useState)(null),[h,y]=(0,s.useState)(!1),[v,b]=(0,s.useState)(null),_=(0,s.useRef)({}),{requestPhoneVerificationCode:w,verifyPhoneNumber:E}=Og(),$=c===o_.SMS,C=(0,s.useCallback)((()=>{b(null),p(60),_.current[c]=null,w(n,r,c).then((e=>{let{verificationId:t}=e;_.current[c]=t})).catch((e=>{l()&&(b(e),p(0))}))}),[n,r,c,p,w,l]);(0,s.useEffect)((()=>{0===g&&C()}),[c,g,C]);const{toInstruction:k,textResend:S,textResendCooldown:x,textSwitch:O}=a_[c],P=_.current[c],A=!(null!=f&&f.isFilled&&P);return(0,s.createElement)("form",{onSubmit:e=>{e.preventDefault(),b(null),y(!0),i(!0,!1);const t=_.current[c];E(t,f.code,c).then((()=>{i(!1,!0)})).catch((e=>{l()&&(b(e),y(!1),i(!1,!1))}))}},(0,s.createElement)(gp.Card.Body,null,v&&(0,s.createElement)(cp,null,(0,s.createElement)(Fc,{status:"error",isDismissible:!1},v.display)),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Enter verification code","google-listings-and-ads")),k(a)),(0,s.createElement)(cp,null,(0,s.createElement)(r_,{resetNeedle:c+g,onCodeChange:m})),(0,s.createElement)(cp,null,(0,s.createElement)(ae,{justify:"normal",gap:4},(0,s.createElement)(gc,{isSecondary:!0,disabled:A,loading:h,text:(0,o.__)("Verify phone number","google-listings-and-ads"),type:"submit"}),(0,s.createElement)(gc,{isSecondary:!0,disabled:d>0||h,text:d?(0,o.sprintf)(x,d):S,onClick:C})))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:h,text:O,onClick:()=>{u($?o_.PHONE_CALL:o_.SMS)}})))}function s_(e){return new ab(e).getCountries()}var l_=e=>{const{label:t,helperText:n,className:r,...o}=e;return(0,s.createElement)("div",{className:d()("wcdl-select-control",r)},t&&(0,s.createElement)("div",{className:"wcdl-select-control__label"},t),(0,s.createElement)("div",{className:"wcdl-select-control__input"},(0,s.createElement)(Bl.SelectControl,l({},o,{help:""}))),n&&(0,s.createElement)("div",{className:"wcdl-select-control__helper-text"},n))};const c_=[{label:(0,o.__)("Text message","google-listings-and-ads"),value:o_.SMS},{label:(0,o.__)("Phone call","google-listings-and-ads"),value:o_.PHONE_CALL}];function u_(e){let{initCountry:t,initNationalNumber:n,onSendVerificationCodeClick:r}=e;const a=function(){const e=Xy();return(0,s.useMemo)((()=>function(){return Uv(s_,arguments)}().reduce(((t,n)=>{const r=e[n];if(r){const e=function(){return Uv(pb,arguments)}(n);t.push(((e,t,n)=>({key:e,keywords:[n,t,e],label:`${n} (+${t})`}))(n,e,r))}return t}),[])),[e])}(),[i,l]=(0,s.useState)(t),[c,u]=(0,s.useState)(n),[d,g]=(0,s.useState)(o_.SMS),[p,f]=(0,s.useState)(null);return(0,s.useEffect)((()=>{const e=Xb(c,i),t=!!e&&e.isValid();f(e?{...e,isValid:t,display:e.formatInternational(),verificationMethod:d}:{isValid:t,country:i,number:"",display:"",verificationMethod:d})}),[c,i,d]),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(ae,{gap:4},(0,s.createElement)(ze,null,(0,s.createElement)(l_,{label:(0,o.__)("Country code","google-listings-and-ads"),isSearchable:!0,excludeSelectedOptions:!1,options:a,selected:i,onChange:l})),(0,s.createElement)(Li,null,(0,s.createElement)(Eh,{label:(0,o.__)("Phone number","google-listings-and-ads"),value:c,onChange:u}))),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select verification method","google-listings-and-ads")),(0,s.createElement)(hy,{selected:d,options:c_,onChange:g})),(0,s.createElement)(cp,null,(0,s.createElement)(gc,{isSecondary:!0,disabled:!(null!=p&&p.isValid),text:(0,o.__)("Send verification code","google-listings-and-ads"),onClick:()=>r(p)})))}const d_=()=>{},g_={className:"gla-phone-number-card",appearance:Ep.PHONE};function p_(e){let{phoneNumber:t,onPhoneNumberVerified:n}=e;const{loaded:r,data:a}=t,[i,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(null);let g=(0,s.createElement)(Wg,null);r&&(g=u?(0,s.createElement)(i_,l({},u,{onVerificationStateChange:(e,t)=>{c(e),t&&n()}})):(0,s.createElement)(u_,{initCountry:a.country,initNationalNumber:a.nationalNumber,onSendVerificationCodeClick:d}));const p=u?u.display:(0,o.__)("Please enter a phone number to be used for verification.","google-listings-and-ads"),f=u?(0,s.createElement)(gc,{isSecondary:!0,text:(0,o.__)("Edit","google-listings-and-ads"),disabled:i,onClick:()=>d(null)}):null;return(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}),(0,s.createElement)(ef,null),g)}var f_=e=>{let{view:t,phoneNumber:n,initEditing:r=null,onEditClick:a,onPhoneNumberVerified:i=d_}=e;const{loaded:c,data:u}=n,[d,g]=(0,s.useState)(r);if((0,s.useEffect)((()=>{c&&null===d&&g(!u.isValid)}),[c,u.isValid,d]),null===d)return(0,s.createElement)(xp,l({},g_,{indicator:(0,s.createElement)(Bl.Spinner,null)}));if(d){const e=()=>{g(!1),i()};return(0,s.createElement)(p_,{phoneNumber:n,onPhoneNumberVerified:e})}let p=null,f=(0,s.createElement)(Bl.Spinner,null);return c&&(p=u.display,f=(0,s.createElement)(gc,{isSecondary:!0,eventName:"gla_mc_phone_number_edit_button_click",eventProps:{view:t},onClick:()=>{a?a():g(!0)}},(0,o.__)("Edit","google-listings-and-ads"))),(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}))},m_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8zm1.13 9.38l.35-6.46H8.52l.35 6.46h2.26zm-.09 3.36c.24-.23.37-.55.37-.96 0-.42-.12-.74-.36-.97s-.59-.35-1.06-.35-.82.12-1.07.35-.37.55-.37.97c0 .41.13.73.38.96.26.23.61.34 1.06.34s.8-.11 1.05-.34z"}));function h_(e){let{editHref:t,editEventName:n,loading:r,content:a,appearance:i,warning:l}=e;const{subpath:c}=(0,pc.getQuery)(),u=(0,s.createElement)(gc,{isSecondary:!0,href:t,text:(0,o.__)("Edit","google-listings-and-ads"),eventName:n,eventProps:{path:(0,pc.getPath)(),subpath:c}});let d,g;return r?d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__placeholder","aria-busy":"true",title:(0,o.__)("Loading…","google-listings-and-ads")}):l?(g=(0,s.createElement)(s.Fragment,null,(0,s.createElement)(vp,{icon:m_,size:24,className:"gla-contact-info-preview-card__notice-icon"}),l),d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__notice-details"},a)):d=a,(0,s.createElement)(xp,{appearance:i,className:"gla-contact-info-preview-card",icon:null,title:g,description:d,indicator:u})}function y_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=e_();let i,l;return r&&(a.isValid?i=a.display:(l=(0,o.__)("Please add your phone number","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the phone number for all stores using Google Merchant Center. ","google-listings-and-ads"),n))),(0,s.createElement)(h_,{appearance:Ep.PHONE,editHref:t,editEventName:"gla_edit_mc_phone_number",learnMore:n,loading:!r,warning:l,content:i})}var v_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10.2 3.28c3.53 0 6.43 2.61 6.92 6h2.08l-3.5 4-3.5-4h2.32c-.45-1.97-2.21-3.45-4.32-3.45-1.45 0-2.73.71-3.54 1.78L4.95 5.66C6.23 4.2 8.11 3.28 10.2 3.28zm-.4 13.44c-3.52 0-6.43-2.61-6.92-6H.8l3.5-4c1.17 1.33 2.33 2.67 3.5 4H5.48c.45 1.97 2.21 3.45 4.32 3.45 1.45 0 2.73-.71 3.54-1.78l1.71 1.95c-1.28 1.46-3.15 2.38-5.25 2.38z"})),b_=()=>{const{loaded:e,data:t,refetch:n}=zv(),{subpath:r}=(0,pc.getQuery)(),a=(0,s.createElement)(gc,{isSecondary:!0,icon:v_,iconSize:20,iconPosition:"right",text:(0,o.__)("Refresh to sync","google-listings-and-ads"),onClick:n,disabled:!e});let i;const l=(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Edit your store address in your <link>WooCommerce settings</link>.","google-listings-and-ads"),{link:(0,s.createElement)(ql,{target:"_blank",type:"external",href:"admin.php?page=wc-settings",eventName:"gla_edit_wc_store_address",eventProps:{path:(0,pc.getPath)(),subpath:r}})})),(0,s.createElement)("p",null,(0,o.__)("Once you’ve saved your new address there, refresh to sync your new address with Google.","google-listings-and-ads")));if(e){const{address:e,address2:n,city:r,state:o,country:a,postcode:l}=t,c=[r,o?`${o} - ${a}`:a,l].filter(Boolean).join(", ");i=(0,s.createElement)("div",null,(0,s.createElement)("div",null,e),n&&(0,s.createElement)("div",null,n),(0,s.createElement)("div",null,c))}else i=(0,s.createElement)(Bl.Spinner,null);return(0,s.createElement)(xp,{className:"gla-store-address-card",appearance:Ep.ADDRESS,alignIcon:"top",alignIndicator:"top",description:l,indicator:a},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Store address","google-listings-and-ads")),i))};function w_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=zv("mc");let i,l;if(r){const{isAddressFilled:e,isMCAddressDifferent:t,address:r,address2:c,city:u,state:d,country:g,postcode:p}=a,f=d?`${d} - ${g}`:g;e&&!t?i=[r,c,u,f,p].filter(Boolean).join(", "):(l=(0,o.__)("Please add your store address","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the store address for all stores using Google Merchant Center. ","google-listings-and-ads"),n))}return(0,s.createElement)(h_,{appearance:Ep.ADDRESS,editHref:t,editEventName:"gla_edit_mc_store_address",loading:!r,warning:l,content:i})}var E_=e=>{let{loaded:t,data:{display:n,isValid:r}}=e;const o=!!n,a=(0,pc.getPath)();(0,s.useEffect)((()=>{t&&(0,Dl.recordEvent)("gla_mc_phone_number_check",{path:a,exist:o,isValid:r})}),[o,r,t,a])};const $_="contact-information-read-more",C_="https://docs.woocommerce.com/document/google-listings-and-ads/#contact-information",k_=(0,o.__)("Your contact information is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers.","google-listings-and-ads"),S_=(0,o.__)("Enter contact information","google-listings-and-ads"),x_=(0,o.__)("Contact information","google-listings-and-ads");function O_(){return(0,s.createElement)(gp,{title:x_,description:k_},(0,s.createElement)(fp,{size:"overlap"},(0,s.createElement)(y_,{editHref:(0,pc.getNewPath)({subpath:bc},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-phone-number-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))}),(0,s.createElement)(w_,{editHref:(0,pc.getNewPath)({subpath:_c},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-store-address-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))})))}var P_=e=>{let{onPhoneNumberVerified:t}=e;const n=e_(),r=S_;return E_(n),(0,s.createElement)(gp,{title:r,description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,k_),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-contact-information",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))))},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(f_,{view:"setup-mc",phoneNumber:n,initEditing:!0,onPhoneNumberVerified:t}),(0,s.createElement)(b_,null)))},A_=e=>{let{id:t,children:n}=e;const[r,o]=(0,s.useState)(!1);return(0,s.createElement)("span",{className:"help-popover"},(0,s.createElement)("button",{onClick:()=>{o(!0),(0,Dl.recordEvent)("gla_tooltip_viewed",{id:t})}},(0,s.createElement)(zg.Z,{size:16})),r&&(0,s.createElement)(cl,{focusOnMount:"container",onClose:()=>{o(!1)}},n))},N_=e=>{const{formProps:t}=e,{getInputProps:n}=t;return(0,s.createElement)("div",{className:"gla-pre-launch-checklist"},(0,s.createElement)(gp,{title:(0,o.__)("Pre-Launch Checklist","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Ensure you meet Google Merchant Center requirements by reviewing this checklist. Otherwise, your products may be disapproved or your Google Merchant Center account may be suspended by Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"checklist-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy"},(0,o.__)("Read Google Merchant requirements","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(fp,{size:"large"},(0,s.createElement)("div",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store website is live.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"website_live"},(0,s.createInterpolateElement)((0,o.__)("Ensure your store website and products are online and accessible to your customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-website-is-live",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#store-is-live"})})))},n("website_live")))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("I have a complete and secure checkout process.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"checkout_process_secure"},(0,s.createElement)("p",null,(0,o.__)("Ensure customers are able to successfully add items to the cart and fully complete the checkout process.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Payment and transaction processing, as well as collection of any sensitive and financial personal information from the user, must be conducted over a secure processing server (SSL-protected, with a valid SSL certificate - https://). <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-checkout-process",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#complete-checkout"})}))))},n("checkout_process_secure"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My payment methods are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"payment_methods_visible"},(0,s.createInterpolateElement)((0,o.__)("Ensure customers have at least one valid payment method, such as credit card, direct bank transfer, or cash on delivery. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-payment-methods",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#payment-methods"})})))},n("payment_methods_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My refund policy and terms of service are visible on my online store.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"refund_tos_visible"},(0,s.createInterpolateElement)((0,o.__)("Your site must provide a clear and conspicuous return policy and billing terms to customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-refund-policy",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#refund-and-terms"})})))},n("refund_tos_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store’s phone number, email and/or address are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"contact_info_visible"},(0,s.createInterpolateElement)((0,o.__)("Your website must display sufficient and accurate contact information to your customers, including a telephone number and/or email. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-phone-numbers",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#contact-info"})})))},n("contact_info_visible"))))))))};function R_(e){const t={};return!0!==e.website_live&&(t.website_live=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.checkout_process_secure&&(t.checkout_process_secure=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.payment_methods_visible&&(t.payment_methods_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.refund_tos_visible&&(t.refund_tos_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.contact_info_visible&&(t.contact_info_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),t}function T_(){const e=Bv(),{updateGoogleMCContactInformation:t,saveSettings:n}=Og(),{createNotice:r}=Np(),{data:a}=zv(),{settings:i}=cy(),[l,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(!1);return i?(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Confirm store requirements","google-listings-and-ads"),description:(0,o.__)("Review and confirm that your store meets Google Merchant Center requirements.","google-listings-and-ads")}),(0,s.createElement)(Bl.Form,{initialValues:{website_live:i.website_live,checkout_process_secure:i.checkout_process_secure,payment_methods_visible:i.payment_methods_visible,refund_tos_visible:i.refund_tos_visible,contact_info_visible:i.contact_info_visible},validate:R_,onChange:(e,t)=>{n(t)},onSubmit:async()=>{try{d(!0),await t(),await Uc()({path:"/wc/gla/mc/settings/sync",method:"POST"});const n=(0,pc.getNewPath)({guide:"submission-success"},"/google/product-feed");window.location.href=e+n}catch(e){d(!1),r("error",(0,o.__)("Unable to complete your setup. Please try again later.","google-listings-and-ads"))}}},(e=>{const{handleSubmit:t,isValidForm:n}=e,r=n&&l&&a.isAddressFilled;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(P_,{onPhoneNumberVerified:()=>c(!0)}),(0,s.createElement)(N_,{formProps:e}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,loading:u,disabled:!r,onClick:t},(0,o.__)("Complete setup","google-listings-and-ads"))))}))):(0,s.createElement)(Wg,null)}var M_={accounts:"1",target_audience:"2",shipping_and_taxes:"3",store_requirements:"4"},j_=e=>{let{savedStep:t,onRefetchSavedStep:n=(()=>{})}=e;const[r,a]=(0,s.useState)(t),i=e=>{Number(e)<=Number(t)&&a(e)};return(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:r,steps:[{key:M_.accounts,label:(0,o.__)("Set up your accounts","google-listings-and-ads"),content:(0,s.createElement)(iy,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step1_continue",trigger:"click"}),a(M_.target_audience),n()}}),onClick:i},{key:M_.target_audience,label:(0,o.__)("Choose your audience","google-listings-and-ads"),content:(0,s.createElement)(Gv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step2_continue",trigger:"click"}),a(M_.shipping_and_taxes),n()}}),onClick:i},{key:M_.shipping_and_taxes,label:(0,o.__)("Configure your product listings","google-listings-and-ads"),content:(0,s.createElement)(Dv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step3_continue",trigger:"click"}),a(M_.store_requirements),n()}}),onClick:i},{key:M_.store_requirements,label:(0,o.__)("Confirm store requirements","google-listings-and-ads"),content:(0,s.createElement)(T_,null),onClick:i}]})},I_=()=>{const{hasFinishedResolution:e,data:t,invalidateResolution:n}=Ag("getMCSetup");if(!e&&!t)return(0,s.createElement)(Wg,null);if(e&&!t)return null;const{status:r,step:o}=t;return"complete"===r?((0,pc.getHistory)().replace((0,pc.getNewPath)({},"/google/dashboard")),null):(0,s.createElement)(j_,{savedStep:M_[o],onRefetchSavedStep:()=>{n()}})},F_=()=>(Gg("full-page"),(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Vg,null),(0,s.createElement)(I_,null)));function D_(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:()=>!0;(0,s.useEffect)((()=>{const r=t=>{t.preventDefault(),t.returnValue=e};t&&window.addEventListener("beforeunload",r);const o=(0,pc.getHistory)().block((r=>{let a=!0;const i=(null==r?void 0:r.location)||r;if(t&&n(i)&&(a=window.confirm(e)),a){if(o(),void 0===(null==r?void 0:r.retry))return!0;r.retry()}return!1}));return()=>{o(),window.removeEventListener("beforeunload",r)}}),[e,t,n])}const L_="getGoogleAdsAccount";var G_=()=>{const{google:e,isResolving:t}=Jg(),n=Og(),r=(0,s.useCallback)((()=>{n.invalidateResolution(L_,[])}),[n]);return(0,dn.useSelect)((n=>{if(!e||"no"===e.active)return{googleAdsAccount:void 0,isResolving:t};const o=n(Lc);return{googleAdsAccount:o.getGoogleAdsAccount(),isResolving:o.isResolving(L_),refetchGoogleAdsAccount:r,hasFinishedResolution:o.hasFinishedResolution(L_)}}),[e,t,r])};function B_(e){
22
  // translators: %s: user's account ID
23
  return(0,o.sprintf)((0,o.__)("Account %s","google-listings-and-ads"),e)}function q_(e){let{googleAdsAccount:t,...n}=e;return(0,s.createElement)(xp,l({appearance:Ep.GOOGLE_ADS,description:B_(t.id),indicator:(0,s.createElement)(Pp,null)},n))}var z_=e=>{let{onCreateAccount:t=(()=>{}),onRequestClose:n=(()=>{})}=e;const[r,a]=(0,s.useState)(!1);return(0,s.createElement)(Bh,{className:"gla-ads-terms-modal",title:(0,o.__)("Create Google Ads Account","google-listings-and-ads"),buttons:[(0,s.createElement)(gc,{key:"1",isPrimary:!0,disabled:!r,eventName:"gla_ads_account_create_button_click",onClick:()=>{t(),n()}},(0,o.__)("Create account","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",{className:"main"},(0,o.__)("By creating a Google Ads account, you agree to the following terms and conditions:","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("You agree to comply with Google’s terms and policies, including <policylink>Shopping ads policies</policylink> and <termslink>Google Ads Terms and Conditions</termslink>.","google-listings-and-ads"),{policylink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"shopping-ads-policies",href:"https://support.google.com/merchants/answer/6149970"}),termslink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"google-ads-terms-of-service",href:"https://support.google.com/adspolicy/answer/54818"})})),(0,s.createElement)(Vh,{label:(0,o.__)("I have read and accept these terms","google-listings-and-ads"),checked:r,onChange:a}))};function H_(e){let{text:t}=e;return(0,s.createElement)("div",{className:"gla-loading-label"},(0,s.createElement)(Bl.Spinner,null),t)}var U_=e=>{const{onCreateAccount:t,...n}=e,[r,a]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,n.loading?(0,s.createElement)(H_,{text:(0,o.__)("Creating…","google-listings-and-ads")}):(0,s.createElement)(gc,l({isSecondary:!0},n,{text:(0,o.__)("Create account","google-listings-and-ads"),onClick:()=>{a(!0)}})),r&&(0,s.createElement)(z_,{onCreateAccount:t,onRequestClose:()=>{a(!1)}}))};const V_=()=>{const{createNotice:e}=Np(),{fetchGoogleAdsAccount:t}=Og(),[n,r]=(0,s.useState)(!1),[a,{loading:i}]=Lp({path:"/wc/gla/ads/accounts",method:"POST"});return(0,s.createElement)(U_,{loading:i||n,onCreateAccount:async()=>{try{await a({parse:!1})}catch(t){if(428!==t.status)return void e("error",(0,o.__)("Unable to create Google Ads account. Please try again later.","google-listings-and-ads"))}r(!0),await t(),r(!1)}})};var W_=e=>{const{allowShowExisting:t,onShowExisting:n}=e;return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(V_,null)},t&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, use your existing Google Ads account","google-listings-and-ads"))))},Y_=e=>{const{accounts:t,...n}=e,r=[{value:"",label:(0,o.__)("Select one","google-listings-and-ads")},...t.map((e=>({value:e.id,label:(0,o.sprintf)(// translators: 1: account name, 2: account ID.
24
  (0,o.__)("%1$s (%2$s)","google-listings-and-ads"),e.name,e.id)})))];return(0,s.createElement)(Kf,l({options:r},n))},K_=e=>{const{accounts:t,onCreateNew:n=(()=>{})}=e,[r,a]=(0,s.useState)(),[i,l]=(0,s.useState)(!1),[c]=Lp({path:"/wc/gla/ads/accounts",method:"POST",data:{id:r}}),{refetchGoogleAdsAccount:u}=G_(),{createNotice:d}=Np(),g=t.length>1;return(0,s.createElement)(xp,{className:"gla-connect-ads",appearance:Ep.GOOGLE_ADS},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select an existing account","google-listings-and-ads")),g&&(0,s.createElement)(cp.Body,null,(0,s.createInterpolateElement)((0,o.__)("If you manage multiple sub-accounts in Google Ads, please connect the relevant sub-account, not a manager account. <link>Learn more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-ads-connect-account",linkId:"connect-sub-account",href:"https://support.google.com/google-ads/answer/6139186"})})),(0,s.createElement)(Zf,null,(0,s.createElement)(Y_,{accounts:t,value:r,onChange:a}),i?(0,s.createElement)(H_,{text:(0,o.__)("Connecting…","google-listings-and-ads")}):(0,s.createElement)(gc,{isSecondary:!0,disabled:!r,eventName:"gla_ads_account_connect_button_click",onClick:async()=>{if(r){l(!0);try{await c(),await u()}catch(e){l(!1),d("error",(0,o.__)("Unable to connect your Google Ads account. Please try again later.","google-listings-and-ads"))}}}},(0,o.__)("Connect","google-listings-and-ads")))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, create a new Google Ads account","google-listings-and-ads"))))},Q_=()=>{const{existingAccounts:e}=(0,dn.useSelect)((e=>({existingAccounts:e(Lc).getExistingGoogleAdsAccounts(),isResolving:e(Lc).isResolving("getExistingGoogleAdsAccounts")})),[]),[t,n]=(0,s.useState)(!1);if(!e)return(0,s.createElement)(Qp,null);return 0===e.length||t?(0,s.createElement)(W_,{allowShowExisting:t,onShowExisting:()=>{n(!1)}}):(0,s.createElement)(K_,{accounts:e,onCreateNew:()=>{n(!0)}})};const Z_="setup-ads";var X_=e=>{let{additionalScopeEmail:t}=e;const{createNotice:n}=Np(),[r,{loading:a,data:i}]=zp(Z_,t);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(gc,{isSecondary:!0,loading:a||i,onClick:()=>{r().then((e=>{let{url:t}=e;window.location.href=t})).catch((()=>{n("error",(0,o.__)("Unable to get Google authorization page. Please try again later.","google-listings-and-ads"))}))},text:(0,o.__)("Allow full access","google-listings-and-ads"),eventName:"gla_google_account_connect_button_click",eventProps:{context:Z_,action:"scope"}})})};function J_(){const{google:e,scope:t}=Jg(),{googleAdsAccount:n}=G_();return e&&n?t.adsRequired?"disconnected"===n.status?(0,s.createElement)(Q_,null):(0,s.createElement)(q_,{googleAdsAccount:n}):(0,s.createElement)(X_,{additionalScopeEmail:e.email}):(0,s.createElement)(Qp,null)}var ew=__webpack_require__(3119),tw=[["DZ",250,"USD"],["AR",25e3,"ARS"],["AM",300,"USD"],["AU",600,"AUD"],["AT",400,"EUR"],["AZ",300,"USD"],["BH",300,"USD"],["BY",300,"USD"],["BE",400,"EUR"],["BO",350,"USD"],["BA",350,"EUR"],["BR",1200,"BRL"],["BG",700,"BGN"],["CA",600,"CAD"],["CL",350,"USD"],["CN",3e3,"CNY"],["CO",350,"USD"],["CR",350,"USD"],["HR",2500,"HRK"],["CY",350,"EUR"],["CZ",8500,"CZK"],["DK",3e3,"DKK"],["DO",350,"USD"],["EC",350,"USD"],["EG",3e3,"EGP"],["SV",350,"USD"],["EE",350,"EUR"],["FI",400,"EUR"],["FR",400,"EUR"],["GE",300,"USD"],["DE",400,"EUR"],["GR",350,"EUR"],["GT",350,"USD"],["HN",350,"USD"],["HK",3e3,"HKD"],["HU",12e4,"HUF"],["IS",400,"EUR"],["IN",2e4,"INR"],["ID",3e6,"IDR"],["IE",400,"EUR"],["IL",1500,"ILS"],["IT",400,"EUR"],["JP",6e4,"JPY"],["JO",250,"USD"],["KZ",300,"USD"],["KE",300,"USD"],["KR",6e5,"KRW"],["KW",300,"USD"],["LV",350,"EUR"],["LB",250,"USD"],["LY",250,"USD"],["LT",350,"EUR"],["LU",400,"EUR"],["MK",300,"USD"],["MY",1500,"MYR"],["MT",350,"EUR"],["MX",7e3,"MXN"],["ME",350,"EUR"],["MA",250,"USD"],["NL",400,"EUR"],["NZ",600,"NZD"],["NI",350,"USD"],["NG",300,"USD"],["NO",4e3,"NOK"],["OM",250,"USD"],["PK",400,"USD"],["PS",250,"USD"],["PA",350,"USD"],["PY",350,"USD"],["PE",350,"USD"],["PH",2e4,"PHP"],["PL",1200,"PLN"],["PT",400,"EUR"],["PR",350,"USD"],["QA",300,"USD"],["RO",1500,"RON"],["RU",3e4,"RUB"],["SA",1300,"SAR"],["RS",350,"EUR"],["SG",600,"SGD"],["SK",350,"EUR"],["SI",350,"EUR"],["ZA",6e3,"ZAR"],["ES",400,"EUR"],["LK",400,"USD"],["SE",4e3,"SEK"],["CH",400,"CHF"],["TW",12e3,"TWD"],["TH",12e3,"THB"],["TN",250,"USD"],["TR",2500,"TRY"],["UA",1e4,"UAH"],["AE",1600,"AED"],["GB",400,"GBP"],["US",500,"USD"],["UY",350,"USD"],["VE",350,"USD"],["VN",56e5,"VND"]],nw=e=>{const t=Xy();return(0,s.createElement)(Bh,l({className:"gla-free-ad-credit-country-modal",title:(0,o.__)("Check your maximum free credit","google-listings-and-ads")},e),(0,s.createElement)("p",null,(0,o.__)("Whatever you spend in the next month will be added back to your Google Ads account as free credit, up to a maximum limit depending on your store’s country.","google-listings-and-ads")),(0,s.createElement)("table",null,(0,s.createElement)("tbody",null,tw.map(((e,n)=>{const[r,o,a]=e;return(0,s.createElement)("tr",{key:n},(0,s.createElement)("td",null,t[r]),(0,s.createElement)("td",null,`${o} ${a}`))})))))},rw=()=>{const[e,t]=(0,s.useState)(!1);return(0,s.createElement)("div",{className:"gla-free-ad-credit"},(0,s.createElement)(ew.Z,null),(0,s.createElement)("div",null,(0,s.createElement)("div",{className:"gla-free-ad-credit__title"},(0,o.__)("Spend $500 to get $500 in Google Ads credits!","google-listings-and-ads")),(0,s.createElement)("div",{className:"gla-free-ad-credit__description"},(0,s.createInterpolateElement)((0,o.__)("New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days. Check how much credit you can receive in your country <checkLink>here</checkLink>. <termLink>Terms and conditions apply</termLink>.","google-listings-and-ads"),{checkLink:(0,s.createElement)(ql,{eventName:"gla_free_ad_credit_country_click",eventProps:{context:"setup-ads"},href:"#",type:"wp-admin",onClick:()=>{t(!0)}}),termLink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"free-ad-credit-terms",href:"https://www.google.com/ads/coupons/terms/"})})),e&&(0,s.createElement)(nw,{onRequestClose:()=>{t(!1)}})))},ow=e=>{const{onContinue:t=(()=>{})}=e,{google:n}=Jg(),{googleAdsAccount:r}=G_(),a=(()=>{const{googleAdsAccount:e}=G_();return e&&e.sub_account&&(0,Ed.getDateDifferenceInDays)(new Date,new Date(1e3*e.created_timestamp))<60})();if(!n||"yes"===n.active&&!r)return(0,s.createElement)(Wg,null);const i=!r.id;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Set up your accounts","google-listings-and-ads"),description:(0,o.__)("Connect your Google account and your Google Ads account to set up a paid Performance Max campaign.","google-listings-and-ads")}),(0,s.createElement)(gp,{title:(0,o.__)("Connect accounts","google-listings-and-ads"),description:(0,o.__)("Any campaigns created through this app will appear in your Google Ads account. You will be billed directly through Google.","google-listings-and-ads")},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(Vp,{googleAccount:n,hideAccountSwitch:!0,helper:(0,o.__)("This Google account is connected to your store’s product feed.","google-listings-and-ads")}),(0,s.createElement)(J_,null),a&&(0,s.createElement)(rw,null))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:i,onClick:t},(0,o.__)("Continue","google-listings-and-ads"))))};function aw(e,t){return e.map((e=>({label:t[e],value:e})))}var iw=e=>{const{formProps:{getInputProps:t},multiple:n=!0,disabled:r=!1,countrySelectHelperText:a}=e,i=Xy(),l=t("countryCodes"),c=n?(0,s.createElement)(yv,{label:(0,o.__)("Select countries","google-listings-and-ads"),help:a,disabled:r,value:l.value,additionalCountryCodes:r?l.value:void 0,onChange:l.onChange}):(0,s.createElement)(Yf,{label:(0,o.__)("Select one country","google-listings-and-ads"),help:a,disabled:r,options:aw(l.value,i),value:l.selected[0],onChange:l.onChange,role:"combobox"});return(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Choose where do you want your product ads to appear.","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,c)))},sw=__webpack_require__(7132),lw=e=>{const{countryCodes:t,dailyAverageCost:n=1/0}=e,{data:r}=(e=>{const t={country_codes:e},n=(0,tg.addQueryArgs)("/wc/gla/ads/campaigns/budget-recommendation",t);return Iv({path:n})})(t),a=Xy();if(!r)return null;const{currency:i,recommendations:l}=r,{daily_budget_low:c,daily_budget_high:u,country:d}=function(e){return e.reduce(((e,t)=>t.daily_budget_high>e.daily_budget_high?t:e))}(l),g=a[d],p=function(e){const t={strong:(0,s.createElement)("strong",null)},n=e?// translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount.
1
  (function(){var __webpack_modules__={9171:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.validateDateInputForRange=t.dateValidationMessages=t.loadLocaleData=t.getDateFormatsForInterval=t.defaultTableDateFormat=t.weekTicksThreshold=t.dayTicksThreshold=t.getChartTypeForQuery=t.getIntervalForQuery=t.getAllowedIntervalsForQuery=t.getPreviousDate=t.getDateDifferenceInDays=t.getCurrentDates=t.getDateParamsFromQuery=t.getCurrentPeriod=t.getLastPeriod=t.getStoreTimeZoneMoment=t.getRangeLabel=t.toMoment=t.appendTimestamp=t.periods=t.presetValues=t.defaultDateTimeFormat=t.isoDateFormat=void 0;const o=r(n(6292)),a=n(2819),i=n(5736),s=n(129);function l(e,n){if(o.default.isMoment(n))return n.isValid()?n:null;if("string"==typeof n){const r=o.default(n,[t.isoDateFormat,e],!0);return r.isValid()?r:null}throw new Error("toMoment requires a string to be passed as an argument")}function c(e,t){const n=e.year()===t.year(),r=n&&e.month()===t.month(),o=n&&r&&e.isSame(t,"day"),a=i.__("MMM D, YYYY","woocommerce-admin");if(o)return e.format(a);if(r){const n=e.date();return e.format(a).replace(n,`${n} - ${t.date()}`)}if(n){const n=i.__("MMM D","woocommerce-admin");return`${e.format(n)} - ${t.format(a)}`}return`${e.format(a)} - ${t.format(a)}`}function u(){return window.wcSettings&&window.wcSettings.timeZone?["+","-"].includes(window.wcSettings.timeZone.charAt(0))?o.default().utcOffset(window.wcSettings.timeZone):o.default().tz(window.wcSettings.timeZone):o.default()}function d(e,t){const n=u().startOf(e).subtract(1,e),r=n.clone().endOf(e);let a,i;if("previous_period"===t)if("year"===e)a=o.default().startOf(e).subtract(2,e),i=a.clone().endOf(e);else{const e=r.diff(n,"days");i=n.clone().subtract(1,"days"),a=i.clone().subtract(e,"days")}else a=n.clone().subtract(1,"years"),i=r.clone().subtract(1,"years");return"month"===e&&(i=i.clone().endOf("month")),{primaryStart:n,primaryEnd:r,secondaryStart:a,secondaryEnd:i}}function g(e,t){const n=u().startOf(e),r=u(),o=r.diff(n,"days");let a,i;return"previous_period"===t?(a=n.clone().subtract(1,e),i=r.clone().subtract(1,e)):(a=n.clone().subtract(1,"years"),i=a.clone().add(o+1,"days").subtract(1,"seconds")),{primaryStart:n,primaryEnd:r,secondaryStart:a,secondaryEnd:i}}t.isoDateFormat="YYYY-MM-DD",t.defaultDateTimeFormat="YYYY-MM-DDTHH:mm:ss",t.presetValues=[{value:"today",label:i.__("Today","woocommerce-admin")},{value:"yesterday",label:i.__("Yesterday","woocommerce-admin")},{value:"week",label:i.__("Week to Date","woocommerce-admin")},{value:"last_week",label:i.__("Last Week","woocommerce-admin")},{value:"month",label:i.__("Month to Date","woocommerce-admin")},{value:"last_month",label:i.__("Last Month","woocommerce-admin")},{value:"quarter",label:i.__("Quarter to Date","woocommerce-admin")},{value:"last_quarter",label:i.__("Last Quarter","woocommerce-admin")},{value:"year",label:i.__("Year to Date","woocommerce-admin")},{value:"last_year",label:i.__("Last Year","woocommerce-admin")},{value:"custom",label:i.__("Custom","woocommerce-admin")}],t.periods=[{value:"previous_period",label:i.__("Previous Period","woocommerce-admin")},{value:"previous_year",label:i.__("Previous Year","woocommerce-admin")}],t.appendTimestamp=(e,n)=>{if("start"===n)return e.startOf("day").format(t.defaultDateTimeFormat);if("now"===n)return e.format(t.defaultDateTimeFormat);if("end"===n)return e.endOf("day").format(t.defaultDateTimeFormat);throw new Error("appendTimestamp requires second parameter to be either `start`, `now` or `end`")},t.toMoment=l,t.getRangeLabel=c,t.getStoreTimeZoneMoment=u,t.getLastPeriod=d,t.getCurrentPeriod=g;const p=a.memoize(((e,t,n,r)=>{switch(e){case"today":return g("day",t);case"yesterday":return d("day",t);case"week":return g("week",t);case"last_week":return d("week",t);case"month":return g("month",t);case"last_month":return d("month",t);case"quarter":return g("quarter",t);case"last_quarter":return d("quarter",t);case"year":return g("year",t);case"last_year":return d("year",t);case"custom":const e=r.diff(n,"days");if("previous_period"===t){const t=n.clone().subtract(1,"days");return{primaryStart:n,primaryEnd:r,secondaryStart:t.clone().subtract(e,"days"),secondaryEnd:t}}return{primaryStart:n,primaryEnd:r,secondaryStart:n.clone().subtract(1,"years"),secondaryEnd:r.clone().subtract(1,"years")}}}),((e,t,n,r)=>[e,t,n&&n.format(),r&&r.format()].join(":"))),f=a.memoize(((e,t,n,r,a)=>{if(e&&t)return{period:e,compare:t,after:n?o.default(n):null,before:r?o.default(r):null};const i=s.parse(a.replace(/&amp;/g,"&"));return{period:i.period,compare:i.compare,after:i.after?o.default(i.after):null,before:i.before?o.default(i.before):null}}),((e,t,n,r,o)=>[e,t,n,r,o].join(":")));t.getDateParamsFromQuery=(e,t="period=month&compare=previous_year")=>{const{period:n,compare:r,after:o,before:a}=e;return f(n,r,o,a,t)};const m=a.memoize(((e,n,r,o,i,s)=>({primary:{label:a.find(t.presetValues,(t=>t.value===e)).label,range:c(r,o),after:r,before:o},secondary:{label:a.find(t.periods,(e=>e.value===n)).label,range:c(i,s),after:i,before:s}})),((e,t,n,r,o,a)=>[e,t,n&&n.format(),r&&r.format(),o&&o.format(),a&&a.format()].join(":")));function h(e){let n=[];if("custom"===e.period){const{primary:r}=t.getCurrentDates(e),o=t.getDateDifferenceInDays(r.before,r.after);n=o>=365?["day","week","month","quarter","year"]:o>=90?["day","week","month","quarter"]:o>=28?["day","week","month"]:o>=7?["day","week"]:o>1&&o<7?["day"]:["hour","day"]}else switch(e.period){case"today":case"yesterday":n=["hour","day"];break;case"week":case"last_week":default:n=["day"];break;case"month":case"last_month":n=["day","week"];break;case"quarter":case"last_quarter":n=["day","week","month"];break;case"year":case"last_year":n=["day","week","month","quarter"]}return n}t.getCurrentDates=(e,n="period=month&compare=previous_year")=>{const{period:r,compare:o,after:a,before:i}=t.getDateParamsFromQuery(e,n),{primaryStart:s,primaryEnd:l,secondaryStart:c,secondaryEnd:u}=p(r,o,a,i);return m(r,o,s,l,c,u)},t.getDateDifferenceInDays=(e,t)=>{const n=o.default(e),r=o.default(t);return n.diff(r,"days")},t.getPreviousDate=(e,t,n,r,a)=>{const i=o.default(e);if("previous_year"===r)return i.clone().subtract(1,"years");const s=o.default(t),l=o.default(n),c=s.diff(l,a);return i.clone().subtract(c,a)},t.getAllowedIntervalsForQuery=h,t.getIntervalForQuery=function(e){const t=h(e),n=t[0];let r=e.interval||n;return e.interval&&!t.includes(e.interval)&&(r=n),r},t.getChartTypeForQuery=function({chartType:e}){return["line","bar"].includes(e)?e:"line"},t.dayTicksThreshold=63,t.weekTicksThreshold=9,t.defaultTableDateFormat="m/d/Y",t.getDateFormatsForInterval=function(e,n=0){let r="%B %-d, %Y",o="%B %-d, %Y",a="%Y-%m-%d",s="%b %Y",l=t.defaultTableDateFormat;switch(e){case"hour":r="%_I%p %B %-d, %Y",o="%_I%p %b %-d, %Y",a="%_I%p",s="%b %-d, %Y",l="h A";break;case"day":n<t.dayTicksThreshold?a="%-d":(a="%b",s="%Y");break;case"week":n<t.weekTicksThreshold?(a="%-d",s="%b %Y"):(a="%b",s="%Y"),r=i.__("Week of %B %-d, %Y","woocommerce-admin"),o=i.__("Week of %B %-d, %Y","woocommerce-admin");break;case"quarter":case"month":r="%B %Y",o="%B %Y",a="%b",s="%Y";break;case"year":r="%Y",o="%Y",a="%Y"}return{screenReaderFormat:r,tooltipLabelFormat:o,xFormat:a,x2Format:s,tableFormat:l}},t.loadLocaleData=function({userLocale:e,weekdaysShort:t}){"en"!==o.default.locale()&&o.default.updateLocale(e,{longDateFormat:{L:i.__("MM/DD/YYYY","woocommerce-admin"),LL:i.__("MMMM D, YYYY","woocommerce-admin"),LLL:i.__("D MMMM YYYY LT","woocommerce-admin"),LLLL:i.__("dddd, D MMMM YYYY LT","woocommerce-admin"),LT:i.__("HH:mm","woocommerce-admin")},weekdaysMin:t})},t.dateValidationMessages={invalid:i.__("Invalid date","woocommerce-admin"),future:i.__("Select a date in the past","woocommerce-admin"),startAfterEnd:i.__("Start date must be before end date","woocommerce-admin"),endBeforeStart:i.__("Start date must be before end date","woocommerce-admin")},t.validateDateInputForRange=function(e,n,r,a,i){const s=l(i,n);return s?o.default().isBefore(s,"day")?{date:null,error:t.dateValidationMessages.future}:"after"===e&&r&&s.isAfter(r,"day")?{date:null,error:t.dateValidationMessages.startAfterEnd}:"before"===e&&a&&s.isBefore(a,"day")?{date:null,error:t.dateValidationMessages.endBeforeStart}:{date:s}:{date:null,error:t.dateValidationMessages.invalid}}},4940:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.recordPageView=t.queueRecordEvent=t.recordEvent=void 0;const o=r(n(1227)).default("wc-admin:tracks");function a(e,t){if(o("recordevent %s %o","wcadmin_"+e,t,{_tqk:window._tkq,shouldRecord:!!window._tkq&&!!window.wcTracks&&!!window.wcTracks.isEnabled}),!window.wcTracks||"function"!=typeof window.wcTracks.recordEvent)return!1;window.wcTracks.recordEvent(e,t)}t.recordEvent=a;const i={localStorageKey:()=>"tracksQueue",clear(){window.localStorage&&window.localStorage.removeItem(i.localStorageKey())},get(){if(!window.localStorage)return[];let e=window.localStorage.getItem(i.localStorageKey());return e=e?JSON.parse(e):[],e=Array.isArray(e)?e:[],e},add(...e){if(!window.localStorage)return o("Unable to queue, running now",{args:e}),void a.apply(null,e||void 0);let t=i.get();const n={args:e};t.push(n),t=t.slice(-100),o("Adding new item to queue.",n),window.localStorage.setItem(i.localStorageKey(),JSON.stringify(t))},process(){if(!window.localStorage)return;const e=i.get();i.clear(),o("Processing items in queue.",e),e.forEach((e=>{"object"==typeof e&&(o("Processing item in queue.",e),a.apply(null,e.args||void 0))}))}};t.queueRecordEvent=function(e,t){i.add(e,t)},t.recordPageView=function(e,t){e&&(a("page_view",Object.assign({path:e},t)),i.process())}},4184:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)){if(n.length){var i=o.apply(null,n);i&&e.push(i)}}else if("object"===a)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},1227:function(e,t,n){var r=n(4155);t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let r=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(r++,"%c"===e&&(o=r))})),t.splice(o,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(e){}},t.load=function(){let e;try{e=t.storage.getItem("debug")}catch(e){}return!e&&void 0!==r&&"env"in r&&(e=r.env.DEBUG),e},t.useColors=function(){return!("undefined"==typeof window||!window.process||"renderer"!==window.process.type&&!window.process.__nwjs)||("undefined"==typeof navigator||!navigator.userAgent||!navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&("undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=n(2447)(t);const{formatters:o}=e.exports;o.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},2447:function(e,t,n){e.exports=function(e){function t(e){let n,o=null;function a(...e){if(!a.enabled)return;const r=a,o=Number(new Date),i=o-(n||o);r.diff=i,r.prev=n,r.curr=o,n=o,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let s=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,((n,o)=>{if("%%"===n)return"%";s++;const a=t.formatters[o];if("function"==typeof a){const t=e[s];n=a.call(r,t),e.splice(s,1),s--}return n})),t.formatArgs.call(r,e),(r.log||t.log).apply(r,e)}return a.namespace=e,a.useColors=t.useColors(),a.color=t.selectColor(e),a.extend=r,a.destroy=t.destroy,Object.defineProperty(a,"enabled",{enumerable:!0,configurable:!1,get:()=>null===o?t.enabled(e):o,set:e=>{o=e}}),"function"==typeof t.init&&t.init(a),a}function r(e,n){const r=t(this.namespace+(void 0===n?":":n)+e);return r.log=this.log,r}function o(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){return e instanceof Error?e.stack||e.message:e},t.disable=function(){const e=[...t.names.map(o),...t.skips.map(o).map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){let n;t.save(e),t.names=[],t.skips=[];const r=("string"==typeof e?e:"").split(/[\s,]+/),o=r.length;for(n=0;n<o;n++)r[n]&&("-"===(e=r[n].replace(/\*/g,".*?"))[0]?t.skips.push(new RegExp("^"+e.substr(1)+"$")):t.names.push(new RegExp("^"+e+"$")))},t.enabled=function(e){if("*"===e[e.length-1])return!0;let n,r;for(n=0,r=t.skips.length;n<r;n++)if(t.skips[n].test(e))return!1;for(n=0,r=t.names.length;n<r;n++)if(t.names[n].test(e))return!0;return!1},t.humanize=n(7824),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach((n=>{t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let n=0;for(let t=0;t<e.length;t++)n=(n<<5)-n+e.charCodeAt(t),n|=0;return t.colors[Math.abs(n)%t.colors.length]},t.enable(t.load()),t}},3836:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-checkmark-circle",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658A9.98 9.98 0 0012 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10a9.94 9.94 0 00-.966-4.266L11 17.768z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},8222:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-chevron-left",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M14 20l-8-8 8-8 1.414 1.414L8.828 12l6.586 6.586z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7188:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-credit-card",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 2v2H4V6h16zM4 18v-6h16v6H4zm2-4h7v2H6v-2zm9 0h3v2h-3v-2z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},8359:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-external",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M19 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h6v2H5v12h12v-6h2zM13 3v2h4.586l-7.793 7.793 1.414 1.414L19 6.414V11h2V3h-8z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},3119:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-gift",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M22 6h-4.8c.5-.5.8-1.2.8-2 0-1.7-1.3-3-3-3s-3 1.3-3 3c0-1.7-1.3-3-3-3S6 2.3 6 4c0 .8.3 1.5.8 2H2v6h1v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-8h1V6zm-2 4h-7V8h7v2zm-5-7c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zM9 3c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zM4 8h7v2H4V8zm1 4h6v8H5v-8zm14 8h-6v-8h6v8z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7719:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-help-outline",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M12 4c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8m0-2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm4 8a4 4 0 00-8 0h2c0-1.103.897-2 2-2s2 .897 2 2-.897 2-2 2a1 1 0 00-1 1v2h2v-1.141A3.991 3.991 0 0016 10zm-3 6h-2v2h2v-2z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7132:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-info-outline",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M13 9h-2V7h2v2zm0 2h-2v6h2v-6zm-1-7c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8m0-2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},5683:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-notice-outline",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M12 4c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8m0-2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 13h-2v2h2v-2zm-2-2h2l.5-6h-3l.5 6z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},7489:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-notice",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 15h-2v-2h2v2zm0-4h-2l-.5-6h3l-.5 6z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},4886:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-phone",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M16 2H8a2 2 0 00-2 2v16a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2zm-3 19h-2v-1h2v1zm3-2H8V5h8v14z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},3115:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-plus-small",s,!!function(e){return 0==e%18}(n)&&"needs-offset",!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M18 11h-5V6h-2v5H6v2h5v5h2v-5h5z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},8249:function(e,t,n){"use strict";t.Z=function(e){var t=e.size,n=void 0===t?24:t,r=e.onClick,s=(e.icon,e.className),l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,a),c=["gridicon","gridicons-sync",s,!1,!1,!1].filter(Boolean).join(" ");return o.default.createElement("svg",i({className:c,height:n,width:n,onClick:r},l,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),o.default.createElement("g",null,o.default.createElement("path",{d:"M23.5 13.5l-3.086 3.086L19 18l-4.5-4.5 1.414-1.414L18 14.172V12c0-3.308-2.692-6-6-6V4a8 8 0 018 8v2.172l2.086-2.086L23.5 13.5zM6 12V9.828l2.086 2.086L9.5 10.5 5 6 3.586 7.414.5 10.5l1.414 1.414L4 9.828V12a8 8 0 008 8v-2c-3.308 0-6-2.692-6-6z"})))};var r,o=(r=n(9196))&&r.__esModule?r:{default:r},a=["size","onClick","icon","className"];function i(){return i=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},i.apply(this,arguments)}},6928:function(e){e.exports=function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={exports:{},id:r,loaded:!1};return e[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=e,n.c=t,n.p="",n(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2);Object.defineProperty(t,"combineChunks",{enumerable:!0,get:function(){return r.combineChunks}}),Object.defineProperty(t,"fillInChunks",{enumerable:!0,get:function(){return r.fillInChunks}}),Object.defineProperty(t,"findAll",{enumerable:!0,get:function(){return r.findAll}}),Object.defineProperty(t,"findChunks",{enumerable:!0,get:function(){return r.findChunks}})},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findAll=function(e){var t=e.autoEscape,a=e.caseSensitive,i=void 0!==a&&a,s=e.findChunks,l=void 0===s?r:s,c=e.sanitize,u=e.searchWords,d=e.textToHighlight;return o({chunksToHighlight:n({chunks:l({autoEscape:t,caseSensitive:i,sanitize:c,searchWords:u,textToHighlight:d})}),totalLength:d?d.length:0})};var n=t.combineChunks=function(e){var t=e.chunks;return t.sort((function(e,t){return e.start-t.start})).reduce((function(e,t){if(0===e.length)return[t];var n=e.pop();if(t.start<=n.end){var r=Math.max(n.end,t.end);e.push({highlight:!1,start:n.start,end:r})}else e.push(n,t);return e}),[])},r=function(e){var t=e.autoEscape,n=e.caseSensitive,r=e.sanitize,o=void 0===r?a:r,i=e.searchWords,s=e.textToHighlight;return s=o(s),i.filter((function(e){return e})).reduce((function(e,r){r=o(r),t&&(r=r.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"));for(var a=new RegExp(r,n?"g":"gi"),i=void 0;i=a.exec(s);){var l=i.index,c=a.lastIndex;c>l&&e.push({highlight:!1,start:l,end:c}),i.index===a.lastIndex&&a.lastIndex++}return e}),[])};t.findChunks=r;var o=t.fillInChunks=function(e){var t=e.chunksToHighlight,n=e.totalLength,r=[],o=function(e,t,n){t-e>0&&r.push({start:e,end:t,highlight:n})};if(0===t.length)o(0,n,!1);else{var a=0;t.forEach((function(e){o(a,e.start,!1),o(e.start,e.end,!0),a=e.end})),o(a,n,!1)}return r};function a(e){return e}}])},8679:function(e,t,n){"use strict";var r=n(9864),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return r.isMemo(e)?i:s[e.$$typeof]||o}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=i;var c=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,g=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,f=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(f){var o=p(n);o&&o!==f&&e(t,o,r)}var i=u(n);d&&(i=i.concat(d(n)));for(var s=l(t),m=l(n),h=0;h<i.length;++h){var y=i[h];if(!(a[y]||r&&r[y]||m&&m[y]||s&&s[y])){var v=g(n,y);try{c(t,y,v)}catch(e){}}}}return t}},9016:function(e){"use strict";e.exports=function(e,t,n,r){e=(e+"").replace(/[^0-9+\-Ee.]/g,"");var o=isFinite(+e)?+e:0,a=isFinite(+t)?Math.abs(t):0,i=void 0===r?",":r,s=void 0===n?".":n,l="";return l=(a?function(e,t){if(-1===(""+e).indexOf("e"))return+(Math.round(e+"e+"+t)+"e-"+t);var n=(""+e).split("e"),r="";return+n[1]+t>0&&(r="+"),(+(Math.round(+n[0]+"e"+r+(+n[1]+t))+"e-"+t)).toFixed(t)}(o,a).toString():""+Math.round(o)).split("."),l[0].length>3&&(l[0]=l[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,i)),(l[1]||"").length<a&&(l[1]=l[1]||"",l[1]+=new Array(a-l[1].length+1).join("0")),l.join(s)}},9588:function(e){e.exports=function(e,t){var n,r,o=0;function a(){var a,i,s=n,l=arguments.length;e:for(;s;){if(s.args.length===arguments.length){for(i=0;i<l;i++)if(s.args[i]!==arguments[i]){s=s.next;continue e}return s!==n&&(s===r&&(r=s.prev),s.prev.next=s.next,s.next&&(s.next.prev=s.prev),s.next=n,s.prev=null,n.prev=s,n=s),s.val}s=s.next}for(a=new Array(l),i=0;i<l;i++)a[i]=arguments[i];return s={args:a,val:e.apply(null,a)},n?(n.prev=s,s.next=n):r=s,o===t.maxSize?(r=r.prev).next=null:o++,n=s,s.val}return t=t||{},a.clear=function(){n=null,r=null,o=0},a}},2441:function(e,t,n){var r;!function(o,a,i){if(o){for(var s,l={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",224:"meta"},c={106:"*",107:"+",109:"-",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},u={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"},d={option:"alt",command:"meta",return:"enter",escape:"esc",plus:"+",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"},g=1;g<20;++g)l[111+g]="f"+g;for(g=0;g<=9;++g)l[g+96]=g.toString();b.prototype.bind=function(e,t,n){var r=this;return e=e instanceof Array?e:[e],r._bindMultiple.call(r,e,t,n),r},b.prototype.unbind=function(e,t){return this.bind.call(this,e,(function(){}),t)},b.prototype.trigger=function(e,t){var n=this;return n._directMap[e+":"+t]&&n._directMap[e+":"+t]({},e),n},b.prototype.reset=function(){var e=this;return e._callbacks={},e._directMap={},e},b.prototype.stopCallback=function(e,t){if((" "+t.className+" ").indexOf(" mousetrap ")>-1)return!1;if(v(t,this.target))return!1;if("composedPath"in e&&"function"==typeof e.composedPath){var n=e.composedPath()[0];n!==e.target&&(t=n)}return"INPUT"==t.tagName||"SELECT"==t.tagName||"TEXTAREA"==t.tagName||t.isContentEditable},b.prototype.handleKey=function(){var e=this;return e._handleKey.apply(e,arguments)},b.addKeycodes=function(e){for(var t in e)e.hasOwnProperty(t)&&(l[t]=e[t]);s=null},b.init=function(){var e=b(a);for(var t in e)"_"!==t.charAt(0)&&(b[t]=function(t){return function(){return e[t].apply(e,arguments)}}(t))},b.init(),o.Mousetrap=b,e.exports&&(e.exports=b),void 0===(r=function(){return b}.call(t,n,t,e))||(e.exports=r)}function p(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent("on"+t,n)}function f(e){if("keypress"==e.type){var t=String.fromCharCode(e.which);return e.shiftKey||(t=t.toLowerCase()),t}return l[e.which]?l[e.which]:c[e.which]?c[e.which]:String.fromCharCode(e.which).toLowerCase()}function m(e){return"shift"==e||"ctrl"==e||"alt"==e||"meta"==e}function h(e,t,n){return n||(n=function(){if(!s)for(var e in s={},l)e>95&&e<112||l.hasOwnProperty(e)&&(s[l[e]]=e);return s}()[e]?"keydown":"keypress"),"keypress"==n&&t.length&&(n="keydown"),n}function y(e,t){var n,r,o,a=[];for(n=function(e){return"+"===e?["+"]:(e=e.replace(/\+{2}/g,"+plus")).split("+")}(e),o=0;o<n.length;++o)r=n[o],d[r]&&(r=d[r]),t&&"keypress"!=t&&u[r]&&(r=u[r],a.push("shift")),m(r)&&a.push(r);return{key:r,modifiers:a,action:t=h(r,a,t)}}function v(e,t){return null!==e&&e!==a&&(e===t||v(e.parentNode,t))}function b(e){var t=this;if(e=e||a,!(t instanceof b))return new b(e);t.target=e,t._callbacks={},t._directMap={};var n,r={},o=!1,i=!1,s=!1;function l(e){e=e||{};var t,n=!1;for(t in r)e[t]?n=!0:r[t]=0;n||(s=!1)}function c(e,n,o,a,i,s){var l,c,u,d,g=[],p=o.type;if(!t._callbacks[e])return[];for("keyup"==p&&m(e)&&(n=[e]),l=0;l<t._callbacks[e].length;++l)if(c=t._callbacks[e][l],(a||!c.seq||r[c.seq]==c.level)&&p==c.action&&("keypress"==p&&!o.metaKey&&!o.ctrlKey||(u=n,d=c.modifiers,u.sort().join(",")===d.sort().join(",")))){var f=!a&&c.combo==i,h=a&&c.seq==a&&c.level==s;(f||h)&&t._callbacks[e].splice(l,1),g.push(c)}return g}function u(e,n,r,o){t.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}(n),function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}(n))}function d(e){"number"!=typeof e.which&&(e.which=e.keyCode);var n=f(e);n&&("keyup"!=e.type||o!==n?t.handleKey(n,function(e){var t=[];return e.shiftKey&&t.push("shift"),e.altKey&&t.push("alt"),e.ctrlKey&&t.push("ctrl"),e.metaKey&&t.push("meta"),t}(e),e):o=!1)}function g(e,a,i,d,p){t._directMap[e+":"+i]=a;var m,h=(e=e.replace(/\s+/g," ")).split(" ");h.length>1?function(e,t,a,i){function c(t){return function(){s=t,++r[e],clearTimeout(n),n=setTimeout(l,1e3)}}function d(t){u(a,t,e),"keyup"!==i&&(o=f(t)),setTimeout(l,10)}r[e]=0;for(var p=0;p<t.length;++p){var m=p+1===t.length?d:c(i||y(t[p+1]).action);g(t[p],m,i,e,p)}}(e,h,a,i):(m=y(e,i),t._callbacks[m.key]=t._callbacks[m.key]||[],c(m.key,m.modifiers,{type:m.action},d,e,p),t._callbacks[m.key][d?"unshift":"push"]({callback:a,modifiers:m.modifiers,action:m.action,seq:d,level:p,combo:e}))}t._handleKey=function(e,t,n){var r,o=c(e,t,n),a={},d=0,g=!1;for(r=0;r<o.length;++r)o[r].seq&&(d=Math.max(d,o[r].level));for(r=0;r<o.length;++r)if(o[r].seq){if(o[r].level!=d)continue;g=!0,a[o[r].seq]=1,u(o[r].callback,n,o[r].combo,o[r].seq)}else g||u(o[r].callback,n,o[r].combo);var p="keypress"==n.type&&i;n.type!=s||m(e)||p||l(a),i=g&&"keydown"==n.type},t._bindMultiple=function(e,t,n){for(var r=0;r<e.length;++r)g(e[r],t,n)},p(e,"keypress",d),p(e,"keydown",d),p(e,"keyup",d)}}("undefined"!=typeof window?window:null,"undefined"!=typeof window?document:null)},3956:function(){!function(e){if(e){var t={},n=e.prototype.stopCallback;e.prototype.stopCallback=function(e,r,o,a){return!!this.paused||!t[o]&&!t[a]&&n.call(this,e,r,o)},e.prototype.bindGlobal=function(e,n,r){if(this.bind(e,n,r),e instanceof Array)for(var o=0;o<e.length;o++)t[e[o]]=!0;else t[e]=!0},e.init()}}("undefined"!=typeof Mousetrap?Mousetrap:void 0)},7824:function(e){var t=1e3,n=60*t,r=60*n,o=24*r;function a(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,i){i=i||{};var s,l,c=typeof e;if("string"===c&&e.length>0)return function(e){if(!((e=String(e)).length>100)){var a=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(a){var i=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return 315576e5*i;case"weeks":case"week":case"w":return 6048e5*i;case"days":case"day":case"d":return i*o;case"hours":case"hour":case"hrs":case"hr":case"h":return i*r;case"minutes":case"minute":case"mins":case"min":case"m":return i*n;case"seconds":case"second":case"secs":case"sec":case"s":return i*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return i;default:return}}}}(e);if("number"===c&&isFinite(e))return i.long?(s=e,(l=Math.abs(s))>=o?a(s,l,o,"day"):l>=r?a(s,l,r,"hour"):l>=n?a(s,l,n,"minute"):l>=t?a(s,l,t,"second"):s+" ms"):function(e){var a=Math.abs(e);return a>=o?Math.round(e/o)+"d":a>=r?Math.round(e/r)+"h":a>=n?Math.round(e/n)+"m":a>=t?Math.round(e/t)+"s":e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},6470:function(e,t,n){"use strict";var r=n(4155);function o(e){if("string"!=typeof e)throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}function a(e,t){for(var n,r="",o=0,a=-1,i=0,s=0;s<=e.length;++s){if(s<e.length)n=e.charCodeAt(s);else{if(47===n)break;n=47}if(47===n){if(a===s-1||1===i);else if(a!==s-1&&2===i){if(r.length<2||2!==o||46!==r.charCodeAt(r.length-1)||46!==r.charCodeAt(r.length-2))if(r.length>2){var l=r.lastIndexOf("/");if(l!==r.length-1){-1===l?(r="",o=0):o=(r=r.slice(0,l)).length-1-r.lastIndexOf("/"),a=s,i=0;continue}}else if(2===r.length||1===r.length){r="",o=0,a=s,i=0;continue}t&&(r.length>0?r+="/..":r="..",o=2)}else r.length>0?r+="/"+e.slice(a+1,s):r=e.slice(a+1,s),o=s-a-1;a=s,i=0}else 46===n&&-1!==i?++i:i=-1}return r}var i={resolve:function(){for(var e,t="",n=!1,i=arguments.length-1;i>=-1&&!n;i--){var s;i>=0?s=arguments[i]:(void 0===e&&(e=r.cwd()),s=e),o(s),0!==s.length&&(t=s+"/"+t,n=47===s.charCodeAt(0))}return t=a(t,!n),n?t.length>0?"/"+t:"/":t.length>0?t:"."},normalize:function(e){if(o(e),0===e.length)return".";var t=47===e.charCodeAt(0),n=47===e.charCodeAt(e.length-1);return 0!==(e=a(e,!t)).length||t||(e="."),e.length>0&&n&&(e+="/"),t?"/"+e:e},isAbsolute:function(e){return o(e),e.length>0&&47===e.charCodeAt(0)},join:function(){if(0===arguments.length)return".";for(var e,t=0;t<arguments.length;++t){var n=arguments[t];o(n),n.length>0&&(void 0===e?e=n:e+="/"+n)}return void 0===e?".":i.normalize(e)},relative:function(e,t){if(o(e),o(t),e===t)return"";if((e=i.resolve(e))===(t=i.resolve(t)))return"";for(var n=1;n<e.length&&47===e.charCodeAt(n);++n);for(var r=e.length,a=r-n,s=1;s<t.length&&47===t.charCodeAt(s);++s);for(var l=t.length-s,c=a<l?a:l,u=-1,d=0;d<=c;++d){if(d===c){if(l>c){if(47===t.charCodeAt(s+d))return t.slice(s+d+1);if(0===d)return t.slice(s+d)}else a>c&&(47===e.charCodeAt(n+d)?u=d:0===d&&(u=0));break}var g=e.charCodeAt(n+d);if(g!==t.charCodeAt(s+d))break;47===g&&(u=d)}var p="";for(d=n+u+1;d<=r;++d)d!==r&&47!==e.charCodeAt(d)||(0===p.length?p+="..":p+="/..");return p.length>0?p+t.slice(s+u):(s+=u,47===t.charCodeAt(s)&&++s,t.slice(s))},_makeLong:function(e){return e},dirname:function(e){if(o(e),0===e.length)return".";for(var t=e.charCodeAt(0),n=47===t,r=-1,a=!0,i=e.length-1;i>=1;--i)if(47===(t=e.charCodeAt(i))){if(!a){r=i;break}}else a=!1;return-1===r?n?"/":".":n&&1===r?"//":e.slice(0,r)},basename:function(e,t){if(void 0!==t&&"string"!=typeof t)throw new TypeError('"ext" argument must be a string');o(e);var n,r=0,a=-1,i=!0;if(void 0!==t&&t.length>0&&t.length<=e.length){if(t.length===e.length&&t===e)return"";var s=t.length-1,l=-1;for(n=e.length-1;n>=0;--n){var c=e.charCodeAt(n);if(47===c){if(!i){r=n+1;break}}else-1===l&&(i=!1,l=n+1),s>=0&&(c===t.charCodeAt(s)?-1==--s&&(a=n):(s=-1,a=l))}return r===a?a=l:-1===a&&(a=e.length),e.slice(r,a)}for(n=e.length-1;n>=0;--n)if(47===e.charCodeAt(n)){if(!i){r=n+1;break}}else-1===a&&(i=!1,a=n+1);return-1===a?"":e.slice(r,a)},extname:function(e){o(e);for(var t=-1,n=0,r=-1,a=!0,i=0,s=e.length-1;s>=0;--s){var l=e.charCodeAt(s);if(47!==l)-1===r&&(a=!1,r=s+1),46===l?-1===t?t=s:1!==i&&(i=1):-1!==t&&(i=-1);else if(!a){n=s+1;break}}return-1===t||-1===r||0===i||1===i&&t===r-1&&t===n+1?"":e.slice(t,r)},format:function(e){if(null===e||"object"!=typeof e)throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof e);return function(e,t){var n=t.dir||t.root,r=t.base||(t.name||"")+(t.ext||"");return n?n===t.root?n+r:n+"/"+r:r}(0,e)},parse:function(e){o(e);var t={root:"",dir:"",base:"",ext:"",name:""};if(0===e.length)return t;var n,r=e.charCodeAt(0),a=47===r;a?(t.root="/",n=1):n=0;for(var i=-1,s=0,l=-1,c=!0,u=e.length-1,d=0;u>=n;--u)if(47!==(r=e.charCodeAt(u)))-1===l&&(c=!1,l=u+1),46===r?-1===i?i=u:1!==d&&(d=1):-1!==i&&(d=-1);else if(!c){s=u+1;break}return-1===i||-1===l||0===d||1===d&&i===l-1&&i===s+1?-1!==l&&(t.base=t.name=0===s&&a?e.slice(1,l):e.slice(s,l)):(0===s&&a?(t.name=e.slice(1,i),t.base=e.slice(1,l)):(t.name=e.slice(s,i),t.base=e.slice(s,l)),t.ext=e.slice(i,l)),s>0?t.dir=e.slice(0,s-1):a&&(t.dir="/"),t},sep:"/",delimiter:":",win32:null,posix:null};i.posix=i,e.exports=i},4155:function(e){var t,n,r=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function i(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:o}catch(e){t=o}try{n="function"==typeof clearTimeout?clearTimeout:a}catch(e){n=a}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&g())}function g(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===a||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(g)},p.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=f,r.addListener=f,r.once=f,r.off=f,r.removeListener=f,r.removeAllListeners=f,r.emit=f,r.prependListener=f,r.prependOnceListener=f,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},2703:function(e,t,n){"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var s=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 s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}},5697:function(e,t,n){e.exports=n(2703)()},414:function(e){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},5798:function(e){"use strict";var t=String.prototype.replace,n=/%20/g,r="RFC3986";e.exports={default:r,formatters:{RFC1738:function(e){return t.call(e,n,"+")},RFC3986:function(e){return String(e)}},RFC1738:"RFC1738",RFC3986:r}},129:function(e,t,n){"use strict";var r=n(8261),o=n(5235),a=n(5798);e.exports={formats:a,parse:o,stringify:r}},5235:function(e,t,n){"use strict";var r=n(2769),o=Object.prototype.hasOwnProperty,a=Array.isArray,i={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},s=function(e){return e.replace(/&#(\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},l=function(e,t){return e&&"string"==typeof e&&t.comma&&e.indexOf(",")>-1?e.split(","):e},c=function(e,t,n,r){if(e){var a=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,i=/(\[[^[\]]*])/g,s=n.depth>0&&/(\[[^[\]]*])/.exec(a),c=s?a.slice(0,s.index):a,u=[];if(c){if(!n.plainObjects&&o.call(Object.prototype,c)&&!n.allowPrototypes)return;u.push(c)}for(var d=0;n.depth>0&&null!==(s=i.exec(a))&&d<n.depth;){if(d+=1,!n.plainObjects&&o.call(Object.prototype,s[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(s[1])}return s&&u.push("["+a.slice(s.index)+"]"),function(e,t,n,r){for(var o=r?t:l(t,n),a=e.length-1;a>=0;--a){var i,s=e[a];if("[]"===s&&n.parseArrays)i=[].concat(o);else{i=n.plainObjects?Object.create(null):{};var c="["===s.charAt(0)&&"]"===s.charAt(s.length-1)?s.slice(1,-1):s,u=parseInt(c,10);n.parseArrays||""!==c?!isNaN(u)&&s!==c&&String(u)===c&&u>=0&&n.parseArrays&&u<=n.arrayLimit?(i=[])[u]=o:i[c]=o:i={0:o}}o=i}return o}(u,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return i;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=void 0===e.charset?i.charset:e.charset;return{allowDots:void 0===e.allowDots?i.allowDots:!!e.allowDots,allowPrototypes:"boolean"==typeof e.allowPrototypes?e.allowPrototypes:i.allowPrototypes,arrayLimit:"number"==typeof e.arrayLimit?e.arrayLimit:i.arrayLimit,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:i.charsetSentinel,comma:"boolean"==typeof e.comma?e.comma:i.comma,decoder:"function"==typeof e.decoder?e.decoder:i.decoder,delimiter:"string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:i.delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:i.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof e.interpretNumericEntities?e.interpretNumericEntities:i.interpretNumericEntities,parameterLimit:"number"==typeof e.parameterLimit?e.parameterLimit:i.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"==typeof e.plainObjects?e.plainObjects:i.plainObjects,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:i.strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var u="string"==typeof e?function(e,t){var n,c={},u=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,g=u.split(t.delimiter,d),p=-1,f=t.charset;if(t.charsetSentinel)for(n=0;n<g.length;++n)0===g[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===g[n]?f="utf-8":"utf8=%26%2310003%3B"===g[n]&&(f="iso-8859-1"),p=n,n=g.length);for(n=0;n<g.length;++n)if(n!==p){var m,h,y=g[n],v=y.indexOf("]="),b=-1===v?y.indexOf("="):v+1;-1===b?(m=t.decoder(y,i.decoder,f,"key"),h=t.strictNullHandling?null:""):(m=t.decoder(y.slice(0,b),i.decoder,f,"key"),h=r.maybeMap(l(y.slice(b+1),t),(function(e){return t.decoder(e,i.decoder,f,"value")}))),h&&t.interpretNumericEntities&&"iso-8859-1"===f&&(h=s(h)),y.indexOf("[]=")>-1&&(h=a(h)?[h]:h),o.call(c,m)?c[m]=r.combine(c[m],h):c[m]=h}return c}(e,n):e,d=n.plainObjects?Object.create(null):{},g=Object.keys(u),p=0;p<g.length;++p){var f=g[p],m=c(f,u[f],n,"string"==typeof e);d=r.merge(d,m,n)}return r.compact(d)}},8261:function(e,t,n){"use strict";var r=n(2769),o=n(5798),a=Object.prototype.hasOwnProperty,i={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},s=Array.isArray,l=Array.prototype.push,c=function(e,t){l.apply(e,s(t)?t:[t])},u=Date.prototype.toISOString,d=o.default,g={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,format:d,formatter:o.formatters[d],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},p=function e(t,n,o,a,i,l,u,d,p,f,m,h,y,v){var b,_=t;if("function"==typeof u?_=u(n,_):_ instanceof Date?_=f(_):"comma"===o&&s(_)&&(_=r.maybeMap(_,(function(e){return e instanceof Date?f(e):e}))),null===_){if(a)return l&&!y?l(n,g.encoder,v,"key",m):n;_=""}if("string"==typeof(b=_)||"number"==typeof b||"boolean"==typeof b||"symbol"==typeof b||"bigint"==typeof b||r.isBuffer(_))return l?[h(y?n:l(n,g.encoder,v,"key",m))+"="+h(l(_,g.encoder,v,"value",m))]:[h(n)+"="+h(String(_))];var w,E=[];if(void 0===_)return E;if("comma"===o&&s(_))w=[{value:_.length>0?_.join(",")||null:void 0}];else if(s(u))w=u;else{var $=Object.keys(_);w=d?$.sort(d):$}for(var C=0;C<w.length;++C){var k=w[C],S="object"==typeof k&&void 0!==k.value?k.value:_[k];if(!i||null!==S){var x=s(_)?"function"==typeof o?o(n,k):n:n+(p?"."+k:"["+k+"]");c(E,e(S,x,o,a,i,l,u,d,p,f,m,h,y,v))}}return E};e.exports=function(e,t){var n,r=e,l=function(e){if(!e)return g;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||g.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=o.default;if(void 0!==e.format){if(!a.call(o.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var r=o.formatters[n],i=g.filter;return("function"==typeof e.filter||s(e.filter))&&(i=e.filter),{addQueryPrefix:"boolean"==typeof e.addQueryPrefix?e.addQueryPrefix:g.addQueryPrefix,allowDots:void 0===e.allowDots?g.allowDots:!!e.allowDots,charset:t,charsetSentinel:"boolean"==typeof e.charsetSentinel?e.charsetSentinel:g.charsetSentinel,delimiter:void 0===e.delimiter?g.delimiter:e.delimiter,encode:"boolean"==typeof e.encode?e.encode:g.encode,encoder:"function"==typeof e.encoder?e.encoder:g.encoder,encodeValuesOnly:"boolean"==typeof e.encodeValuesOnly?e.encodeValuesOnly:g.encodeValuesOnly,filter:i,format:n,formatter:r,serializeDate:"function"==typeof e.serializeDate?e.serializeDate:g.serializeDate,skipNulls:"boolean"==typeof e.skipNulls?e.skipNulls:g.skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:"boolean"==typeof e.strictNullHandling?e.strictNullHandling:g.strictNullHandling}}(t);"function"==typeof l.filter?r=(0,l.filter)("",r):s(l.filter)&&(n=l.filter);var u,d=[];if("object"!=typeof r||null===r)return"";u=t&&t.arrayFormat in i?t.arrayFormat:t&&"indices"in t?t.indices?"indices":"repeat":"indices";var f=i[u];n||(n=Object.keys(r)),l.sort&&n.sort(l.sort);for(var m=0;m<n.length;++m){var h=n[m];l.skipNulls&&null===r[h]||c(d,p(r[h],h,f,l.strictNullHandling,l.skipNulls,l.encode?l.encoder:null,l.filter,l.sort,l.allowDots,l.serializeDate,l.format,l.formatter,l.encodeValuesOnly,l.charset))}var y=d.join(l.delimiter),v=!0===l.addQueryPrefix?"?":"";return l.charsetSentinel&&("iso-8859-1"===l.charset?v+="utf8=%26%2310003%3B&":v+="utf8=%E2%9C%93&"),y.length>0?v+y:""}},2769:function(e,t,n){"use strict";var r=n(5798),o=Object.prototype.hasOwnProperty,a=Array.isArray,i=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),s=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n};e.exports={arrayToObject:s,assign:function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],i=o.obj[o.prop],s=Object.keys(i),l=0;l<s.length;++l){var c=s[l],u=i[c];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(t.push({obj:i,prop:c}),n.push(u))}return function(e){for(;e.length>1;){var t=e.pop(),n=t.obj[t.prop];if(a(n)){for(var r=[],o=0;o<n.length;++o)void 0!==n[o]&&r.push(n[o]);t.obj[t.prop]=r}}}(t),e},decode:function(e,t,n){var r=e.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(e){return r}},encode:function(e,t,n,o,a){if(0===e.length)return e;var s=e;if("symbol"==typeof e?s=Symbol.prototype.toString.call(e):"string"!=typeof e&&(s=String(e)),"iso-8859-1"===n)return escape(s).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}));for(var l="",c=0;c<s.length;++c){var u=s.charCodeAt(c);45===u||46===u||95===u||126===u||u>=48&&u<=57||u>=65&&u<=90||u>=97&&u<=122||a===r.RFC1738&&(40===u||41===u)?l+=s.charAt(c):u<128?l+=i[u]:u<2048?l+=i[192|u>>6]+i[128|63&u]:u<55296||u>=57344?l+=i[224|u>>12]+i[128|u>>6&63]+i[128|63&u]:(c+=1,u=65536+((1023&u)<<10|1023&s.charCodeAt(c)),l+=i[240|u>>18]+i[128|u>>12&63]+i[128|u>>6&63]+i[128|63&u])}return l},isBuffer:function(e){return!(!e||"object"!=typeof e||!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e)))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(a(e)){for(var n=[],r=0;r<e.length;r+=1)n.push(t(e[r]));return n}return t(e)},merge:function e(t,n,r){if(!n)return t;if("object"!=typeof n){if(a(t))t.push(n);else{if(!t||"object"!=typeof t)return[t,n];(r&&(r.plainObjects||r.allowPrototypes)||!o.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||"object"!=typeof t)return[t].concat(n);var i=t;return a(t)&&!a(n)&&(i=s(t,r)),a(t)&&a(n)?(n.forEach((function(n,a){if(o.call(t,a)){var i=t[a];i&&"object"==typeof i&&n&&"object"==typeof n?t[a]=e(i,n,r):t.push(n)}else t[a]=n})),t):Object.keys(n).reduce((function(t,a){var i=n[a];return o.call(t,a)?t[a]=e(t[a],i,r):t[a]=i,t}),i)}}},9921:function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,a=n?Symbol.for("react.fragment"):60107,i=n?Symbol.for("react.strict_mode"):60108,s=n?Symbol.for("react.profiler"):60114,l=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,u=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,g=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,f=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,h=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,_=n?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case u:case d:case a:case s:case i:case p:return e;default:switch(e=e&&e.$$typeof){case c:case g:case h:case m:case l:return e;default:return t}}case o:return t}}}function E(e){return w(e)===d}t.AsyncMode=u,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=r,t.ForwardRef=g,t.Fragment=a,t.Lazy=h,t.Memo=m,t.Portal=o,t.Profiler=s,t.StrictMode=i,t.Suspense=p,t.isAsyncMode=function(e){return E(e)||w(e)===u},t.isConcurrentMode=E,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return w(e)===g},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===h},t.isMemo=function(e){return w(e)===m},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===s},t.isStrictMode=function(e){return w(e)===i},t.isSuspense=function(e){return w(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===s||e===i||e===p||e===f||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===m||e.$$typeof===l||e.$$typeof===c||e.$$typeof===g||e.$$typeof===v||e.$$typeof===b||e.$$typeof===_||e.$$typeof===y)},t.typeOf=w},9864:function(e,t,n){"use strict";e.exports=n(9921)},5464:function(e,t,n){var r=n(9196),o={display:"block",opacity:0,position:"absolute",top:0,left:0,height:"100%",width:"100%",overflow:"hidden",pointerEvents:"none",zIndex:-1},a=function(e){var t=e.onResize,n=r.useRef();return function(e,t){var n=function(){return e.current&&e.current.contentDocument&&e.current.contentDocument.defaultView};function o(){t();var e=n();e&&e.addEventListener("resize",t)}r.useEffect((function(){return n()?o():e.current&&e.current.addEventListener&&e.current.addEventListener("load",o),function(){var e=n();e&&"function"==typeof e.removeEventListener&&e.removeEventListener("resize",t)}}),[])}(n,(function(){return t(n)})),r.createElement("iframe",{style:o,src:"about:blank",ref:n,"aria-hidden":!0,tabIndex:-1,frameBorder:0})},i=function(e){return{width:null!=e?e.offsetWidth:null,height:null!=e?e.offsetHeight:null}};e.exports=function(e){void 0===e&&(e=i);var t=r.useState(e(null)),n=t[0],o=t[1],s=r.useCallback((function(t){return o(e(t.current))}),[e]);return[r.useMemo((function(){return r.createElement(a,{onResize:s})}),[s]),n]}},3272:function(e,t,n){"use strict";var r,o={},a=n(9670);function i(e,t){o[e]=function(e,t){return e in r?r[e]:t}(e,t)}e.exports.configure=function(e,t,n){if(r=e||{},n=n||{},i("autoRename",!1),i("autoRenameStrict",!1),i("blacklist",{}),i("clean",!0),i("greedy",!1),i("processUrls",!1),i("stringMap",[]),i("useCalc",!1),Array.isArray(o.stringMap)){for(var s,l,c=0;c<o.stringMap.length;c++){var u=o.stringMap[c];if(s&&l)break;"left-right"===u.name?s=!0:"ltr-rtl"===u.name&&(l=!0)}s||o.stringMap.push({name:"left-right",priority:100,exclusive:!1,search:["left","Left","LEFT"],replace:["right","Right","RIGHT"],options:{scope:"*",ignoreCase:!1}}),l||o.stringMap.push({name:"ltr-rtl",priority:100,exclusive:!1,search:["ltr","Ltr","LTR"],replace:["rtl","Rtl","RTL"],options:{scope:"*",ignoreCase:!1}}),o.stringMap.sort((function(e,t){return e.priority-t.priority}))}return o.plugins=[],Array.isArray(t)?(t.some((function(e){return"rtlcss"===e.name}))||o.plugins.push(a),o.plugins=o.plugins.concat(t)):t&&"rtlcss"===t.name||o.plugins.push(a),o.plugins.sort((function(e,t){return e.priority-t.priority})),o.hooks={pre:function(){},post:function(){}},"function"==typeof n.pre&&(o.hooks.pre=n.pre),"function"==typeof n.post&&(o.hooks.post=n.post),o}},5915:function(e){e.exports=function(e){var t,n=0,r=e.text,o=r.match(/^\s*!?\s*rtl:/);return o&&(t={source:e,name:"",param:"",begin:!0,end:!0,blacklist:!1,preserve:!1},(n=(r=r.slice(o[0].length)).indexOf(":"))>-1?(t.name=r.slice(0,n),t.begin="end"!==t.name,t.end="begin"!==t.name,"begin"===t.name||"end"===t.name?(n=(r=r.slice(t.name.length+1)).indexOf(":"))>-1?(t.name=r.slice(0,n),r=r.slice(n),t.param=r.slice(1)):t.name=r:t.param=r.slice(n+1)):t.name=r),t}},9670:function(module,__unused_webpack_exports,__webpack_require__){"use strict";var config=__webpack_require__(3272),util=__webpack_require__(8805);module.exports={name:"rtlcss",priority:100,directives:{control:{ignore:{expect:{atrule:!0,comment:!0,decl:!0,rule:!0},endNode:null,begin:function(e,t,n){if(!this.endNode&&t.begin&&t.end){for(var r=e;r&&r.nodes;)r=r.nodes[r.nodes.length-1];this.endNode=r}var o=!0;return"comment"===e.type&&e.text.match(/^\s*!?\s*rtl:end:ignore/)&&(o=!1),o},end:function(e,t,n){return!!(t.begin!==t.end&&"comment"===e.type||t.begin&&t.end&&e===this.endNode)&&(this.endNode=null,!0)}},rename:{expect:{rule:!0},begin:function(e,t,n){return e.selector=n.util.applyStringMap(e.selector,!1),!1},end:function(e,t){return!0}},raw:{expect:{self:!0},begin:function(e,t,n){var r=n.postcss.parse(t.param,{from:e.source.input.from});return e.parent.insertBefore(e,r),!0},end:function(e,t){return!0}},remove:{expect:{atrule:!0,rule:!0,decl:!0},begin:function(e,t,n){var r=!1;switch(e.type){case"atrule":case"rule":case"decl":r=!0,e.remove()}return r},end:function(e,t,n){return!0}},options:{expect:{self:!0},stack:[],begin:function(e,t,n){var r;this.stack.push(util.extend({},n.config));try{r=JSON.parse(t.param)}catch(t){throw e.error("Invlaid options object",{details:t})}return n.config=config.configure(r,n.config.plugins),n.util=util.configure(n.config),!0},end:function(e,t,n){var r=this.stack.pop();return r&&!t.begin&&(n.config=r,n.util=util.configure(n.config)),!0}},config:{expect:{self:!0},expr:{fn:/function([^\(]*)\(([^\(\)]*?)\)[^\{]*\{([^]*)\}/gi,rx:/\/([^\/]*)\/(.*)/gi},stack:[],begin:function(node,metadata,context){var configuration;this.stack.push(util.extend({},context.config));try{configuration=eval("("+metadata.param+")")}catch(e){throw node.error("Invlaid config object",{details:e})}return context.config=config.configure(configuration.options,configuration.plugins),context.util=util.configure(context.config),!0},end:function(e,t,n){var r=this.stack.pop();return r&&!t.begin&&(n.config=r,n.util=util.configure(n.config)),!0}}},value:[{name:"ignore",action:function(e,t,n){return!0}},{name:"prepend",action:function(e,t,n){var r="";return e.raws.value.raw.replace(t,(function(e,t){r+=t})),e.value=e.raws.value.raw=r+e.raws.value.raw,!0}},{name:"append",action:function(e,t,n){return e.value=e.raws.value.raw=e.raws.value.raw.replace(t,(function(e,t){return e+t})),!0}},{name:"insert",action:function(e,t,n){return e.value=e.raws.value.raw=e.raws.value.raw.replace(t,(function(e,t){return t+e})),!0}},{name:"",action:function(e,t,n){return e.raws.value.raw.replace(t,(function(t,n){e.value=e.raws.value.raw=n+t})),!0}}]},processors:[{name:"variable",expr:/^--/im,action:function(e,t){return{prop:e,value:t}}},{name:"direction",expr:/direction/im,action:function(e,t,n){return{prop:e,value:n.util.swapLtrRtl(t)}}},{name:"left",expr:/left/im,action:function(e,t,n){return{prop:e.replace(this.expr,(function(){return"right"})),value:t}}},{name:"right",expr:/right/im,action:function(e,t,n){return{prop:e.replace(this.expr,(function(){return"left"})),value:t}}},{name:"four-value syntax",expr:/^(margin|padding|border-(color|style|width))$/gi,cache:null,action:function(e,t,n){null===this.cache&&(this.cache={match:/[^\s\uFFFD]+/g});var r=n.util.guardFunctions(t),o=r.value.match(this.cache.match);if(o&&4===o.length&&(r.store.length>0||o[1]!==o[3])){var a=0;r.value=r.value.replace(this.cache.match,(function(){return o[(4-a++)%4]}))}return{prop:e,value:n.util.unguardFunctions(r)}}},{name:"border radius",expr:/border-radius/gi,cache:null,flip:function(e){var t,n=e.match(this.cache.match);if(n)switch(n.length){case 2:t=1,n[0]!==n[1]&&(e=e.replace(this.cache.match,(function(){return n[t--]})));break;case 3:e=e.replace(this.cache.white,(function(e){return e+n[1]+" "}));break;case 4:t=0,n[0]===n[1]&&n[2]===n[3]||(e=e.replace(this.cache.match,(function(){return n[(5-t++)%4]})))}return e},action:function(e,t,n){null===this.cache&&(this.cache={match:/[^\s\uFFFD]+/g,slash:/[^\/]+/g,white:/(^\s*)/});var r=n.util.guardFunctions(t);return r.value=r.value.replace(this.cache.slash,function(e){return this.flip(e)}.bind(this)),{prop:e,value:n.util.unguardFunctions(r)}}},{name:"shadow",expr:/shadow/gi,cache:null,action:function(e,t,n){null===this.cache&&(this.cache={replace:/[^,]+/g});var r=n.util.guardHexColors(t),o=n.util.guardFunctions(r.value);return o.value=o.value.replace(this.cache.replace,(function(e){return n.util.negate(e)})),r.value=n.util.unguardFunctions(o),{prop:e,value:n.util.unguardHexColors(r)}}},{name:"transform and perspective origin",expr:/(?:transform|perspective)-origin/gi,cache:null,flip:function(e,t){return"0"===e?e="100%":e.match(this.cache.percent)?e=t.util.complement(e):e.match(this.cache.length)&&(e=t.util.flipLength(e)),e},action:function(e,t,n){if(null===this.cache&&(this.cache={match:n.util.regex(["calc","percent","length"],"g"),percent:n.util.regex(["calc","percent"],"i"),length:n.util.regex(["length"],"gi"),xKeyword:/(left|right)/i}),t.match(this.cache.xKeyword))t=n.util.swapLeftRight(t);else{var r=n.util.guardFunctions(t),o=r.value.match(this.cache.match);o&&o.length>0&&(o[0]=this.flip(o[0],n),r.value=r.value.replace(this.cache.match,(function(){return o.shift()})),t=n.util.unguardFunctions(r))}return{prop:e,value:t}}},{name:"transform",expr:/^(?!text\-).*?transform$/gi,cache:null,flip:function(e,t,n){var r=0;return e.replace(this.cache.unit,(function(e){return t(++r,e)}))},flipMatrix:function(e,t){return this.flip(e,(function(e,n){return 2===e||3===e||5===e?t.util.negate(n):n}),t)},flipMatrix3D:function(e,t){return this.flip(e,(function(e,n){return 2===e||4===e||5===e||13===e?t.util.negate(n):n}),t)},flipRotate3D:function(e,t){return this.flip(e,(function(e,n){return 1===e||4===e?t.util.negate(n):n}),t)},action:function(e,t,n){null===this.cache&&(this.cache={negatable:/((translate)(x|3d)?|rotate(z|y)?)$/gi,unit:n.util.regex(["calc","number"],"g"),matrix:/matrix$/i,matrix3D:/matrix3d$/i,skewXY:/skew(x|y)?$/i,rotate3D:/rotate3d$/i});var r=n.util.guardFunctions(t);return{prop:e,value:n.util.unguardFunctions(r,function(e,t){return t.length&&(t.match(this.cache.matrix3D)?e=this.flipMatrix3D(e,n):t.match(this.cache.matrix)?e=this.flipMatrix(e,n):t.match(this.cache.rotate3D)?e=this.flipRotate3D(e,n):t.match(this.cache.skewXY)?e=n.util.negateAll(e):t.match(this.cache.negatable)&&(e=n.util.negate(e))),e}.bind(this))}}},{name:"transition",expr:/transition(-property)?$/i,action:function(e,t,n){return{prop:e,value:n.util.swapLeftRight(t)}}},{name:"background",expr:/background(-position(-x)?|-image)?$/i,cache:null,flip:function(e,t){var n=util.saveTokens(e,!0),r=n.value.match(this.cache.match);if(r&&r.length>0){var o=(n.value.match(this.cache.position)||"").length;r.length>=3||2===o?n.value=util.swapLeftRight(n.value):(r[0]="0"===r[0]?"100%":r[0].match(this.cache.percent)?t.util.complement(r[0]):r[0].match(this.cache.length)?t.util.flipLength(r[0]):t.util.swapLeftRight(r[0]),n.value=n.value.replace(this.cache.match,(function(){return r.shift()})))}return util.restoreTokens(n)},update:function(e,t,n){return n.match(this.cache.gradient)?(t=e.util.swapLeftRight(t)).match(this.cache.angle)&&(t=e.util.negate(t)):(!0===e.config.processUrls||!0===e.config.processUrls.decl&&n.match(this.cache.url))&&(t=e.util.applyStringMap(t,!0)),t},action:function(e,t,n){null===this.cache&&(this.cache={match:n.util.regex(["position","percent","length","calc"],"ig"),percent:n.util.regex(["calc","percent"],"i"),position:n.util.regex(["position"],"g"),length:n.util.regex(["length"],"gi"),gradient:/gradient$/i,angle:/\d+(deg|g?rad|turn)/i,url:/^url/i});var r=n.util.guardHexColors(t),o=n.util.guardFunctions(r.value),a=o.value.split(",");if("background-image"!==e.toLowerCase())for(var i=0;i<a.length;i++)a[i]=this.flip(a[i],n);return o.value=a.join(","),r.value=n.util.unguardFunctions(o,this.update.bind(this,n)),{prop:e,value:n.util.unguardHexColors(r)}}},{name:"keyword",expr:/float|clear|text-align/i,action:function(e,t,n){return{prop:e,value:n.util.swapLeftRight(t)}}},{name:"cursor",expr:/cursor/i,cache:null,update:function(e,t,n){return(!0===e.config.processUrls||!0===e.config.processUrls.decl&&n.match(this.cache.url))&&(t=e.util.applyStringMap(t,!0)),t},flip:function(e){return e.replace(this.cache.replace,function(e,t){return e.replace(t,t.replace(this.cache.e,"*").replace(this.cache.w,"e").replace(this.cache.star,"w"))}.bind(this))},action:function(e,t,n){null===this.cache&&(this.cache={replace:/\b(ne|nw|se|sw|nesw|nwse)-resize/gi,url:/^url/i,e:/e/i,w:/w/i,star:/\*/i});for(var r=n.util.guardFunctions(t),o=r.value.split(","),a=0;a<o.length;a++)o[a]=this.flip(o[a]);return r.value=o.join(","),{prop:e,value:n.util.unguardFunctions(r,this.update.bind(this,n))}}}]}},8314:function(e,t,n){"use strict";var r=n(5344),o=n(3028),a=n(3272),i=n(8805);e.exports=r.plugin("rtlcss",(function(e,t,n){var s=a.configure(e,t,n),l={postcss:r,config:s,util:i.configure(s)};return function(e,t){var n=0,a={};l.config.hooks.pre(e,r),e.walk((function(e){var r=!1;if(o.walk((function(t){!t.metadata.blacklist&&t.directive.expect[e.type]&&(t.directive.begin(e,t.metadata,l)&&(r=!0),t.metadata.end&&t.directive.end(e,t.metadata,l)&&o.pop(t))})),!1===r)switch(e.type){case"atrule":if(!0===l.config.processUrls||!0===l.config.processUrls.atrule){var i=l.util.applyStringMap(e.params,!0);e.params=i}break;case"comment":o.parse(e,t,(function(n){var r=!0;return null===n.directive&&(n.preserve=!l.config.clean,l.util.each(l.config.plugins,(function(e){var o=l.config.blacklist[e.name];return o&&!0===o[n.metadata.name]?(n.metadata.blacklist=!0,n.metadata.end&&(r=!1),n.metadata.begin&&t.warn('directive "'+e.name+"."+n.metadata.name+'" is blacklisted.',{node:n.source}),!1):(n.directive=e.directives.control[n.metadata.name],!n.directive&&void 0)}))),n.directive?!n.metadata.begin&&n.metadata.end?(n.directive.end(e,n.metadata,l)&&o.pop(n),r=!1):n.directive.expect.self&&n.directive.begin(e,n.metadata,l)&&n.metadata.end&&n.directive.end(e,n.metadata,l)&&(r=!1):n.metadata.blacklist||(r=!1,t.warn('unsupported directive "'+n.metadata.name+'".',{node:n.source})),r}));break;case"decl":if(!l.util.each(l.config.plugins,(function(t){return l.util.each(t.directives.value,(function(t){if(e.raws.value&&e.raws.value.raw){var r=l.util.regexDirective(t.name);if(r.test(e.raws.value.raw)&&(r.lastIndex=0,t.action(e,r,l)))return l.config.clean&&(e.value=e.raws.value.raw=l.util.trimDirective(e.raws.value.raw)),n++,!1}}))})))break;if(l.util.each(l.config.plugins,(function(t){return l.util.each(t.processors,(function(t){if(e.prop.match(t.expr)){var r=e.raws.value&&e.raws.value.raw?e.raws.value.raw:e.value,o=l.util.saveComments(r),a=t.action(e.prop,o.value,l);return o.value=a.value,a.value=l.util.restoreComments(o),a.prop===e.prop&&a.value===r||(n++,e.prop=a.prop,e.value=a.value),!1}}))})),l.config.autoRename&&!n&&"rule"===e.parent.type&&l.util.isLastOfType(e)){var s=l.util.applyStringMap(e.parent.selector);if(!0===l.config.autoRenameStrict){var c=a[s];c?(c.selector=e.parent.selector,e.parent.selector=s):a[e.parent.selector]=e.parent}else e.parent.selector=s}break;case"rule":n=0}})),o.walk((function(e){t.warn('unclosed directive "'+e.metadata.name+'".',{node:e.source})})),Object.keys(a).forEach((function(e){t.warn("renaming skipped due to lack of a matching pair.",{node:a[e]})})),l.config.hooks.post(e,r)}})),e.exports.process=function(e,t,n,o){return r([this(t,n,o)]).process(e).css},e.exports.configure=function(e){return r([this((e=e||{}).options,e.plugins,e.hooks)])}},3028:function(e,t,n){"use strict";var r=n(5915);e.exports={stack:[],pop:function(e){var t=this.stack.indexOf(e);-1!==t&&this.stack.splice(t,1),e.preserve||e.source.remove()},parse:function(e,t,n){var o,a=r(e);a&&(!a.begin&&a.end?this.walk(function(t){if(a.name===t.metadata.name)return this.pop(t),o={metadata:a,directive:t.directive,source:e,preserve:t.preserve},!1}.bind(this)):o={metadata:a,directive:null,source:e,preserve:null},void 0===o?t.warn('found end "'+a.name+'" without a matching begin.',{node:e}):n(o)?this.stack.push(o):o.preserve||o.source.remove())},walk:function(e){for(var t=this.stack.length;--t>-1&&e(this.stack[t]););}}},8805:function(e){"use strict";var t,n="»",r=new RegExp("�","ig"),o=new RegExp("¤","ig"),a="(calc¤)|(\\-?(\\d*?\\.\\d+|\\d+))(?!d\\()",i=/\/\*[^]*?\*\//gim,s=/\/\*\s*(?:!)?\s*rtl:[^]*?\*\//gim,l=/[.*+?^${}()|[\]\\]/g,c=/\([^\(\)]+\)/i,u=/#[a-f0-9]{3,6}/gi,d=/calc/,g=new RegExp("«\\d+:\\d+»","ig"),p=new RegExp("\\w*?«\\d+:\\d+»","ig"),f=new RegExp(a,"i"),m=new RegExp(a,"ig"),h=new RegExp(a,"i"),y={scope:"*",ignoreCase:!0},v=0;function b(e){return e.replace(l,"\\$&")}e.exports={extend:function(e,t){for(var n in void 0!==e&&"object"==typeof e||(e={}),t)e.hasOwnProperty(n)||(e[n]=t[n]);return e},swap:function(e,n,r,o){var a=b(n)+"|"+b(r);((o=o||y).hasOwnProperty("greedy")?o.greedy:t.greedy)||(a="\\b("+a+")\\b");var i=o.ignoreCase?"img":"mg";return e.replace(new RegExp(a,i),(function(e){return t=e,a=n,(o.ignoreCase?t.toLowerCase()===a.toLowerCase():t===a)?r:n;var t,a}))},swapLeftRight:function(e){return this.swap(e,"left","right")},swapLtrRtl:function(e){return this.swap(e,"ltr","rtl")},applyStringMap:function(e,n){for(var r=e,o=0;o<t.stringMap.length;o++){var a=t.stringMap[o],i=this.extend(a.options,y);if("*"===i.scope||n&&"url"===i.scope||!n&&"selector"===i.scope){if(Array.isArray(a.search)&&Array.isArray(a.replace))for(var s=0;s<a.search.length;s++)r=this.swap(r,a.search[s],a.replace[s%a.search.length],i);else r=this.swap(r,a.search,a.replace,i);if(!0===a.exclusive)break}}return r},negate:function(e){var t=this.saveTokens(e);return t.value=t.value.replace(h,(function(e){return o.test(e)?e.replace(o,(function(e){return"(-1*"+e+")"})):-1*parseFloat(e,10)})),this.restoreTokens(t)},negateAll:function(e){var t=this.saveTokens(e);return t.value=t.value.replace(m,(function(e){return o.test(e)?e.replace(o,(function(e){return"(-1*"+e+")"})):-1*parseFloat(e,10)})),this.restoreTokens(t)},complement:function(e){var t=this.saveTokens(e);return t.value=t.value.replace(f,(function(e){return o.test(e)?e.replace(o,(function(e){return"(100% - "+e+")"})):100-parseFloat(e,10)})),this.restoreTokens(t)},flipLength:function(e){return t.useCalc?"calc(100% - "+e+")":e},save:function(e,t,n,r,o){var a={value:t,store:[],replacement:n,restorer:r};return a.value=a.value.replace(e,(function(e){return o&&e.match(o)?e:(a.store.push(e),a.replacement)})),a},restore:function(e){var t=0,n=e.value.replace(e.restorer,(function(){return e.store[t++]}));return e.store.length=0,n},saveComments:function(e){return this.save(i,e,"�",r)},restoreComments:function(e){return this.restore(e)},saveTokens:function(e,t){return!0===t?this.save(p,e,"¤",o,d):this.save(g,e,"¤",o)},restoreTokens:function(e){return this.restore(e)},guard:function(e,t,r){var o={value:t,store:[],offset:v++,token:"«"+v,indexed:!0===r};if(!0===o.indexed)for(;e.test(o.value);)o.value=o.value.replace(e,(function(e){return o.store.push(e),o.token+":"+o.store.length+n}));else o.value=o.value.replace(e,(function(e){return o.store.push(e),o.token+n}));return o},unguard:function(e,t){if(!0===e.indexed){for(var r=new RegExp("(\\w*?)"+e.token+":(\\d+)"+n,"i");r.test(e.value);)e.value=e.value.replace(r,(function(n,r,o){var a=e.store[o-1];return"function"==typeof t?r+t(a,r):r+a}));return e.value}return e.value.replace(new RegExp("(\\w*?)"+e.token+n,"i"),(function(n,r){var o=e.store.shift();return"function"==typeof t?r+t(o,r):r+o}))},guardHexColors:function(e){return this.guard(u,e,!0)},unguardHexColors:function(e,t){return this.unguard(e,t)},guardFunctions:function(e){return this.guard(c,e,!0)},unguardFunctions:function(e,t){return this.unguard(e,t)},trimDirective:function(e){return e.replace(s,"")},regexCache:{},regexDirective:function(e){return this.regexCache[e]=this.regexCache[e]||new RegExp("(?:\\/\\*\\s*(?:!)?\\s*rtl:"+(e?b(e)+"(?::)?":"")+")([^]*?)(?:\\*\\/)","img"),this.regexCache[e]},regex:function(e,t){e=e||[];for(var n="",r=0;r<e.length;r++)switch(e[r]){case"percent":n+="|(\\-?(\\d*?\\.\\d+|\\d+)%)";break;case"length":n+="|(\\-?(\\d*?\\.\\d+|\\d+))(?:ex|ch|r?em|vh|vw|vmin|vmax|px|mm|cm|in|pt|pc)?";break;case"number":n+="|(\\-?(\\d*?\\.\\d+|\\d+))";break;case"position":n+="|(left|center|right|top|bottom)";break;case"calc":n+="|(calc«\\d+:\\d+»)"}return new RegExp(n.slice(1),t)},isLastOfType:function(e){for(var t=!0,n=e.next();n;){if(n&&n.type===e.type){t=!1;break}n=n.next()}return t},each:function(e,t){for(var n=0;n<e.length;n++)if(!1===t(e[n]))return!1;return!0}},e.exports.configure=function(e){return t=e,this}},8090:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="atrule",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.append=function(){var t;this.nodes||(this.nodes=[]);for(var n=arguments.length,r=Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.prototype.append).call.apply(t,[this].concat(r))},t.prototype.prepend=function(){var t;this.nodes||(this.nodes=[]);for(var n=arguments.length,r=Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.prototype.prepend).call.apply(t,[this].concat(r))},t}(((r=n(2146))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},2282:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="comment",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(((r=n(3200))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},2146:function(e,t,n){"use strict";t.__esModule=!0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=i(n(3118)),a=i(n(2282));function i(e){return e&&e.__esModule?e:{default:e}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e){return e.map((function(e){return e.nodes&&(e.nodes=c(e.nodes)),delete e.source,e}))}var u=function(e){function t(){return s(this,t),l(this,e.apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.push=function(e){return e.parent=this,this.nodes.push(e),this},t.prototype.each=function(e){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;var t=this.lastEach;if(this.indexes[t]=0,this.nodes){for(var n=void 0,r=void 0;this.indexes[t]<this.nodes.length&&(n=this.indexes[t],!1!==(r=e(this.nodes[n],n)));)this.indexes[t]+=1;return delete this.indexes[t],r}},t.prototype.walk=function(e){return this.each((function(t,n){var r=e(t,n);return!1!==r&&t.walk&&(r=t.walk(e)),r}))},t.prototype.walkDecls=function(e,t){return t?e instanceof RegExp?this.walk((function(n,r){if("decl"===n.type&&e.test(n.prop))return t(n,r)})):this.walk((function(n,r){if("decl"===n.type&&n.prop===e)return t(n,r)})):(t=e,this.walk((function(e,n){if("decl"===e.type)return t(e,n)})))},t.prototype.walkRules=function(e,t){return t?e instanceof RegExp?this.walk((function(n,r){if("rule"===n.type&&e.test(n.selector))return t(n,r)})):this.walk((function(n,r){if("rule"===n.type&&n.selector===e)return t(n,r)})):(t=e,this.walk((function(e,n){if("rule"===e.type)return t(e,n)})))},t.prototype.walkAtRules=function(e,t){return t?e instanceof RegExp?this.walk((function(n,r){if("atrule"===n.type&&e.test(n.name))return t(n,r)})):this.walk((function(n,r){if("atrule"===n.type&&n.name===e)return t(n,r)})):(t=e,this.walk((function(e,n){if("atrule"===e.type)return t(e,n)})))},t.prototype.walkComments=function(e){return this.walk((function(t,n){if("comment"===t.type)return e(t,n)}))},t.prototype.append=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i,l=this.normalize(s,this.last),c=l,u=Array.isArray(c),d=0;for(c=u?c:c[Symbol.iterator]();;){var g;if(u){if(d>=c.length)break;g=c[d++]}else{if((d=c.next()).done)break;g=d.value}var p=g;this.nodes.push(p)}}return this},t.prototype.prepend=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t=t.reverse(),o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i,l=this.normalize(s,this.first,"prepend").reverse(),c=l,u=Array.isArray(c),d=0;for(c=u?c:c[Symbol.iterator]();;){var g;if(u){if(d>=c.length)break;g=c[d++]}else{if((d=c.next()).done)break;g=d.value}var p=g;this.nodes.unshift(p)}for(var f in this.indexes)this.indexes[f]=this.indexes[f]+l.length}return this},t.prototype.cleanRaws=function(t){if(e.prototype.cleanRaws.call(this,t),this.nodes){var n=this.nodes,r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}a.cleanRaws(t)}}},t.prototype.insertBefore=function(e,t){var n=0===(e=this.index(e))&&"prepend",r=this.normalize(t,this.nodes[e],n).reverse(),o=r,a=Array.isArray(o),i=0;for(o=a?o:o[Symbol.iterator]();;){var s;if(a){if(i>=o.length)break;s=o[i++]}else{if((i=o.next()).done)break;s=i.value}var l=s;this.nodes.splice(e,0,l)}var c=void 0;for(var u in this.indexes)e<=(c=this.indexes[u])&&(this.indexes[u]=c+r.length);return this},t.prototype.insertAfter=function(e,t){e=this.index(e);var n=this.normalize(t,this.nodes[e]).reverse(),r=n,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;this.nodes.splice(e+1,0,s)}var l=void 0;for(var c in this.indexes)e<(l=this.indexes[c])&&(this.indexes[c]=l+n.length);return this},t.prototype.removeChild=function(e){e=this.index(e),this.nodes[e].parent=void 0,this.nodes.splice(e,1);var t=void 0;for(var n in this.indexes)(t=this.indexes[n])>=e&&(this.indexes[n]=t-1);return this},t.prototype.removeAll=function(){var e=this.nodes,t=Array.isArray(e),n=0;for(e=t?e:e[Symbol.iterator]();;){var r;if(t){if(n>=e.length)break;r=e[n++]}else{if((n=e.next()).done)break;r=n.value}r.parent=void 0}return this.nodes=[],this},t.prototype.replaceValues=function(e,t,n){return n||(n=t,t={}),this.walkDecls((function(r){t.props&&-1===t.props.indexOf(r.prop)||t.fast&&-1===r.value.indexOf(t.fast)||(r.value=r.value.replace(e,n))})),this},t.prototype.every=function(e){return this.nodes.every(e)},t.prototype.some=function(e){return this.nodes.some(e)},t.prototype.index=function(e){return"number"==typeof e?e:this.nodes.indexOf(e)},t.prototype.normalize=function(e,t){var r=this;if("string"==typeof e)e=c(n(1647)(e).nodes);else if(Array.isArray(e)){var i=e=e.slice(0),s=Array.isArray(i),l=0;for(i=s?i:i[Symbol.iterator]();;){var u;if(s){if(l>=i.length)break;u=i[l++]}else{if((l=i.next()).done)break;u=l.value}var d=u;d.parent&&d.parent.removeChild(d,"ignore")}}else if("root"===e.type){var g=e=e.nodes.slice(0),p=Array.isArray(g),f=0;for(g=p?g:g[Symbol.iterator]();;){var m;if(p){if(f>=g.length)break;m=g[f++]}else{if((f=g.next()).done)break;m=f.value}var h=m;h.parent&&h.parent.removeChild(h,"ignore")}}else if(e.type)e=[e];else if(e.prop){if(void 0===e.value)throw new Error("Value field is missed in node creation");"string"!=typeof e.value&&(e.value=String(e.value)),e=[new o.default(e)]}else if(e.selector)e=[new(n(806))(e)];else if(e.name)e=[new(n(8090))(e)];else{if(!e.text)throw new Error("Unknown node type in node creation");e=[new a.default(e)]}var y=e.map((function(e){return"function"!=typeof e.before&&(e=r.rebuild(e)),e.parent&&e.parent.removeChild(e),void 0===e.raws.before&&t&&void 0!==t.raws.before&&(e.raws.before=t.raws.before.replace(/[^\s]/g,"")),e.parent=r,e}));return y},t.prototype.rebuild=function(e,t){var r=this,i=void 0;if("root"===e.type){var s=n(573);i=new s}else if("atrule"===e.type){var l=n(8090);i=new l}else if("rule"===e.type){var c=n(806);i=new c}else"decl"===e.type?i=new o.default:"comment"===e.type&&(i=new a.default);for(var u in e)"nodes"===u?i.nodes=e.nodes.map((function(e){return r.rebuild(e,i)})):"parent"===u&&t?i.parent=t:e.hasOwnProperty(u)&&(i[u]=e[u]);return i},r(t,[{key:"first",get:function(){if(this.nodes)return this.nodes[0]}},{key:"last",get:function(){if(this.nodes)return this.nodes[this.nodes.length-1]}}]),t}(i(n(3200)).default);t.default=u,e.exports=t.default},4639:function(e,t,n){"use strict";t.__esModule=!0;var r=i(n(5580)),o=i(n(683)),a=i(n(8818));function i(e){return e&&e.__esModule?e:{default:e}}var s=function(){function e(t,n,r,o,a,i){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.name="CssSyntaxError",this.reason=t,a&&(this.file=a),o&&(this.source=o),i&&(this.plugin=i),void 0!==n&&void 0!==r&&(this.line=n,this.column=r),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,e)}return e.prototype.setMessage=function(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason},e.prototype.showSourceCode=function(e){var t=this;if(!this.source)return"";var n=this.source;void 0===e&&(e=r.default.stdout),e&&(n=(0,a.default)(n));var i=n.split(/\r?\n/),s=Math.max(this.line-3,0),l=Math.min(this.line+2,i.length),c=String(l).length;function u(t){return e&&o.default.red?o.default.red.bold(t):t}function d(t){return e&&o.default.gray?o.default.gray(t):t}return i.slice(s,l).map((function(e,n){var r=s+1+n,o=" "+(" "+r).slice(-c)+" | ";if(r===t.line){var a=d(o.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return u(">")+d(o)+e+"\n "+a+u("^")}return" "+d(o)+e})).join("\n")},e.prototype.toString=function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e},e}();t.default=s,e.exports=t.default},3118:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="decl",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(((r=n(3200))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},1810:function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=l(n(4639)),i=l(n(8389)),s=l(n(6470));function l(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var u=0,d=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(c(this,e),null===t||"object"===(void 0===t?"undefined":r(t))&&!t.toString)throw new Error("PostCSS received "+t+" instead of CSS string");this.css=t.toString(),"\ufeff"!==this.css[0]&&""!==this.css[0]||(this.css=this.css.slice(1)),n.from&&(/^\w+:\/\//.test(n.from)?this.file=n.from:this.file=s.default.resolve(n.from));var o=new i.default(this.css,n);if(o.text){this.map=o;var a=o.consumer().file;!this.file&&a&&(this.file=this.mapResolve(a))}this.file||(u+=1,this.id="<input css "+u+">"),this.map&&(this.map.file=this.from)}return e.prototype.error=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=void 0,i=this.origin(t,n);return(o=i?new a.default(e,i.line,i.column,i.source,i.file,r.plugin):new a.default(e,t,n,this.css,this.file,r.plugin)).input={line:t,column:n,source:this.css},this.file&&(o.input.file=this.file),o},e.prototype.origin=function(e,t){if(!this.map)return!1;var n=this.map.consumer(),r=n.originalPositionFor({line:e,column:t});if(!r.source)return!1;var o={file:this.mapResolve(r.source),line:r.line,column:r.column},a=n.sourceContentFor(r.source);return a&&(o.source=a),o},e.prototype.mapResolve=function(e){return/^\w+:\/\//.test(e)?e:s.default.resolve(this.map.consumer().sourceRoot||".",e)},o(e,[{key:"from",get:function(){return this.file||this.id}}]),e}();t.default=d,e.exports=t.default},1799:function(e,t,n){"use strict";t.__esModule=!0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a=u(n(2455)),i=u(n(4594)),s=u(n(6094)),l=u(n(4974)),c=u(n(1647));function u(e){return e&&e.__esModule?e:{default:e}}function d(e){return"object"===(void 0===e?"undefined":o(e))&&"function"==typeof e.then}var g=function(){function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.stringified=!1,this.processed=!1;var a=void 0;if("object"===(void 0===n?"undefined":o(n))&&null!==n&&"root"===n.type)a=n;else if(n instanceof e||n instanceof l.default)a=n.root,n.map&&(void 0===r.map&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=n.map);else{var i=c.default;r.syntax&&(i=r.syntax.parse),r.parser&&(i=r.parser),i.parse&&(i=i.parse);try{a=i(n,r)}catch(e){this.error=e}}this.result=new l.default(t,a,r)}return e.prototype.warnings=function(){return this.sync().warnings()},e.prototype.toString=function(){return this.css},e.prototype.then=function(e,t){return"from"in this.opts||(0,s.default)("Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning."),this.async().then(e,t)},e.prototype.catch=function(e){return this.async().catch(e)},e.prototype.handleError=function(e,t){try{if(this.error=e,"CssSyntaxError"!==e.name||e.plugin){if(t.postcssVersion){var n=t.postcssPlugin,r=t.postcssVersion,o=this.result.processor.version,a=r.split("."),i=o.split(".");(a[0]!==i[0]||parseInt(a[1])>parseInt(i[1]))&&console.error("Unknown error from PostCSS plugin. Your current PostCSS version is "+o+", but "+n+" uses "+r+". Perhaps this is the source of the error below.")}}else e.plugin=t.postcssPlugin,e.setMessage()}catch(e){console&&console.error&&console.error(e)}},e.prototype.asyncTick=function(e,t){var n=this;if(this.plugin>=this.processor.plugins.length)return this.processed=!0,e();try{var r=this.processor.plugins[this.plugin],o=this.run(r);this.plugin+=1,d(o)?o.then((function(){n.asyncTick(e,t)})).catch((function(e){n.handleError(e,r),n.processed=!0,t(e)})):this.asyncTick(e,t)}catch(e){this.processed=!0,t(e)}},e.prototype.async=function(){var e=this;return this.processed?new Promise((function(t,n){e.error?n(e.error):t(e.stringify())})):(this.processing||(this.processing=new Promise((function(t,n){if(e.error)return n(e.error);e.plugin=0,e.asyncTick(t,n)})).then((function(){return e.processed=!0,e.stringify()}))),this.processing)},e.prototype.sync=function(){if(this.processed)return this.result;if(this.processed=!0,this.processing)throw new Error("Use process(css).then(cb) to work with async plugins");if(this.error)throw this.error;var e=this.result.processor.plugins,t=Array.isArray(e),n=0;for(e=t?e:e[Symbol.iterator]();;){var r;if(t){if(n>=e.length)break;r=e[n++]}else{if((n=e.next()).done)break;r=n.value}var o=r;if(d(this.run(o)))throw new Error("Use process(css).then(cb) to work with async plugins")}return this.result},e.prototype.run=function(e){this.result.lastPlugin=e;try{return e(this.result.root,this.result)}catch(t){throw this.handleError(t,e),t}},e.prototype.stringify=function(){if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=i.default;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var n=new a.default(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result},r(e,[{key:"processor",get:function(){return this.result.processor}},{key:"opts",get:function(){return this.result.opts}},{key:"css",get:function(){return this.stringify().css}},{key:"content",get:function(){return this.stringify().content}},{key:"map",get:function(){return this.stringify().map}},{key:"root",get:function(){return this.sync().root}},{key:"messages",get:function(){return this.sync().messages}}]),e}();t.default=g,e.exports=t.default},1841:function(e,t){"use strict";t.__esModule=!0;var n={split:function(e,t,n){for(var r=[],o="",a=!1,i=0,s=!1,l=!1,c=0;c<e.length;c++){var u=e[c];s?l?l=!1:"\\"===u?l=!0:u===s&&(s=!1):'"'===u||"'"===u?s=u:"("===u?i+=1:")"===u?i>0&&(i-=1):0===i&&-1!==t.indexOf(u)&&(a=!0),a?(""!==o&&r.push(o.trim()),o="",a=!1):o+=u}return(n||""!==o)&&r.push(o.trim()),r},space:function(e){return n.split(e,[" ","\n","\t"])},comma:function(e){return n.split(e,[","],!0)}};t.default=n,e.exports=t.default},2455:function(e,t,n){"use strict";t.__esModule=!0;var r=a(n(4014)),o=a(n(6470));function a(e){return e&&e.__esModule?e:{default:e}}var i=function(){function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.stringify=t,this.mapOpts=r.map||{},this.root=n,this.opts=r}return e.prototype.isMap=function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0},e.prototype.previous=function(){var e=this;return this.previousMaps||(this.previousMaps=[],this.root.walk((function(t){if(t.source&&t.source.input.map){var n=t.source.input.map;-1===e.previousMaps.indexOf(n)&&e.previousMaps.push(n)}}))),this.previousMaps},e.prototype.isInline=function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some((function(e){return e.inline})))},e.prototype.isSourcesContent=function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some((function(e){return e.withContent()}))},e.prototype.clearAnnotation=function(){if(!1!==this.mapOpts.annotation)for(var e=void 0,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&0===e.text.indexOf("# sourceMappingURL=")&&this.root.removeChild(t)},e.prototype.setSourcesContent=function(){var e=this,t={};this.root.walk((function(n){if(n.source){var r=n.source.input.from;if(r&&!t[r]){t[r]=!0;var o=e.relative(r);e.map.setSourceContent(o,n.source.input.css)}}}))},e.prototype.applyPrevMaps=function(){var e=this.previous(),t=Array.isArray(e),n=0;for(e=t?e:e[Symbol.iterator]();;){var a;if(t){if(n>=e.length)break;a=e[n++]}else{if((n=e.next()).done)break;a=n.value}var i=a,s=this.relative(i.file),l=i.root||o.default.dirname(i.file),c=void 0;!1===this.mapOpts.sourcesContent?(c=new r.default.SourceMapConsumer(i.text)).sourcesContent&&(c.sourcesContent=c.sourcesContent.map((function(){return null}))):c=i.consumer(),this.map.applySourceMap(c,s,this.relative(l))}},e.prototype.isAnnotation=function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some((function(e){return e.annotation})))},e.prototype.toBase64=function(e){return Buffer?Buffer.from&&Buffer.from!==Uint8Array.from?Buffer.from(e).toString("base64"):new Buffer(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))},e.prototype.addAnnotation=function(){var e;e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:this.outputFile()+".map";var t="\n";-1!==this.css.indexOf("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"},e.prototype.outputFile=function(){return this.opts.to?this.relative(this.opts.to):this.opts.from?this.relative(this.opts.from):"to.css"},e.prototype.generateMap=function(){return this.generateString(),this.isSourcesContent()&&this.setSourcesContent(),this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]},e.prototype.relative=function(e){if(0===e.indexOf("<"))return e;if(/^\w+:\/\//.test(e))return e;var t=this.opts.to?o.default.dirname(this.opts.to):".";return"string"==typeof this.mapOpts.annotation&&(t=o.default.dirname(o.default.resolve(t,this.mapOpts.annotation))),e=o.default.relative(t,e),"\\"===o.default.sep?e.replace(/\\/g,"/"):e},e.prototype.sourcePath=function(e){return this.mapOpts.from?this.mapOpts.from:this.relative(e.source.input.from)},e.prototype.generateString=function(){var e=this;this.css="",this.map=new r.default.SourceMapGenerator({file:this.outputFile()});var t=1,n=1,o=void 0,a=void 0;this.stringify(this.root,(function(r,i,s){e.css+=r,i&&"end"!==s&&(i.source&&i.source.start?e.map.addMapping({source:e.sourcePath(i),generated:{line:t,column:n-1},original:{line:i.source.start.line,column:i.source.start.column-1}}):e.map.addMapping({source:"<no source>",original:{line:1,column:0},generated:{line:t,column:n-1}})),(o=r.match(/\n/g))?(t+=o.length,a=r.lastIndexOf("\n"),n=r.length-a):n+=r.length,i&&"start"!==s&&(i.source&&i.source.end?e.map.addMapping({source:e.sourcePath(i),generated:{line:t,column:n-1},original:{line:i.source.end.line,column:i.source.end.column}}):e.map.addMapping({source:"<no source>",original:{line:1,column:0},generated:{line:t,column:n-1}}))}))},e.prototype.generate=function(){if(this.clearAnnotation(),this.isMap())return this.generateMap();var e="";return this.stringify(this.root,(function(t){e+=t})),[e]},e}();t.default=i,e.exports=t.default},3200:function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=l(n(4639)),a=l(n(3255)),i=l(n(4594)),s=l(n(6094));function l(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var u=function e(t,n){var o=new t.constructor;for(var a in t)if(t.hasOwnProperty(a)){var i=t[a],s=void 0===i?"undefined":r(i);"parent"===a&&"object"===s?n&&(o[a]=n):"source"===a?o[a]=i:i instanceof Array?o[a]=i.map((function(t){return e(t,o)})):("object"===s&&null!==i&&(i=e(i)),o[a]=i)}return o},d=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(c(this,e),this.raws={},"object"!==(void 0===t?"undefined":r(t))&&void 0!==t)throw new Error("PostCSS nodes constructor accepts object, not "+JSON.stringify(t));for(var n in t)this[n]=t[n]}return e.prototype.error=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var n=this.positionBy(t);return this.source.input.error(e,n.line,n.column,t)}return new o.default(e)},e.prototype.warn=function(e,t,n){var r={node:this};for(var o in n)r[o]=n[o];return e.warn(t,r)},e.prototype.remove=function(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this},e.prototype.toString=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.default;e.stringify&&(e=e.stringify);var t="";return e(this,(function(e){t+=e})),t},e.prototype.clone=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=u(this);for(var n in e)t[n]=e[n];return t},e.prototype.cloneBefore=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t},e.prototype.cloneAfter=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t},e.prototype.replaceWith=function(){if(this.parent){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=t,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;this.parent.insertBefore(this,s)}this.remove()}return this},e.prototype.moveTo=function(e){return(0,s.default)("Node#moveTo was deprecated. Use Container#append."),this.cleanRaws(this.root()===e.root()),this.remove(),e.append(this),this},e.prototype.moveBefore=function(e){return(0,s.default)("Node#moveBefore was deprecated. Use Node#before."),this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertBefore(e,this),this},e.prototype.moveAfter=function(e){return(0,s.default)("Node#moveAfter was deprecated. Use Node#after."),this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertAfter(e,this),this},e.prototype.next=function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}},e.prototype.prev=function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e-1]}},e.prototype.before=function(e){return this.parent.insertBefore(this,e),this},e.prototype.after=function(e){return this.parent.insertAfter(this,e),this},e.prototype.toJSON=function(){var e={};for(var t in this)if(this.hasOwnProperty(t)&&"parent"!==t){var n=this[t];n instanceof Array?e[t]=n.map((function(e){return"object"===(void 0===e?"undefined":r(e))&&e.toJSON?e.toJSON():e})):"object"===(void 0===n?"undefined":r(n))&&n.toJSON?e[t]=n.toJSON():e[t]=n}return e},e.prototype.raw=function(e,t){return(new a.default).raw(this,e,t)},e.prototype.root=function(){for(var e=this;e.parent;)e=e.parent;return e},e.prototype.cleanRaws=function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between},e.prototype.positionInside=function(e){for(var t=this.toString(),n=this.source.start.column,r=this.source.start.line,o=0;o<e;o++)"\n"===t[o]?(n=1,r+=1):n+=1;return{line:r,column:n}},e.prototype.positionBy=function(e){var t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){var n=this.toString().indexOf(e.word);-1!==n&&(t=this.positionInside(n))}return t},e}();t.default=d,e.exports=t.default},1647:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){if(t&&t.safe)throw new Error('Option safe was removed. Use parser: require("postcss-safe-parser")');var n=new o.default(e,t),a=new r.default(n);try{a.parse()}catch(e){throw"CssSyntaxError"===e.name&&t&&t.from&&(/\.scss$/i.test(t.from)?e.message+="\nYou tried to parse SCSS with the standard CSS parser; try again with the postcss-scss parser":/\.sass/i.test(t.from)?e.message+="\nYou tried to parse Sass with the standard CSS parser; try again with the postcss-sass parser":/\.less$/i.test(t.from)&&(e.message+="\nYou tried to parse Less with the standard CSS parser; try again with the postcss-less parser")),e}return a.root};var r=a(n(9890)),o=a(n(1810));function a(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},9890:function(e,t,n){"use strict";t.__esModule=!0;var r=c(n(3118)),o=c(n(7272)),a=c(n(2282)),i=c(n(8090)),s=c(n(573)),l=c(n(806));function c(e){return e&&e.__esModule?e:{default:e}}var u=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.input=t,this.root=new s.default,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{line:1,column:1}}}return e.prototype.createTokenizer=function(){this.tokenizer=(0,o.default)(this.input)},e.prototype.parse=function(){for(var e=void 0;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()},e.prototype.comment=function(e){var t=new a.default;this.init(t,e[2],e[3]),t.source.end={line:e[4],column:e[5]};var n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{var r=n.match(/^(\s*)([^]*[^\s])(\s*)$/);t.text=r[2],t.raws.left=r[1],t.raws.right=r[3]}},e.prototype.emptyRule=function(e){var t=new l.default;this.init(t,e[2],e[3]),t.selector="",t.raws.between="",this.current=t},e.prototype.other=function(e){for(var t=!1,n=null,r=!1,o=null,a=[],i=[],s=e;s;){if(n=s[0],i.push(s),"("===n||"["===n)o||(o=s),a.push("("===n?")":"]");else if(0===a.length){if(";"===n){if(r)return void this.decl(i);break}if("{"===n)return void this.rule(i);if("}"===n){this.tokenizer.back(i.pop()),t=!0;break}":"===n&&(r=!0)}else n===a[a.length-1]&&(a.pop(),0===a.length&&(o=null));s=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(o),t&&r){for(;i.length&&("space"===(s=i[i.length-1][0])||"comment"===s);)this.tokenizer.back(i.pop());this.decl(i)}else this.unknownWord(i)},e.prototype.rule=function(e){e.pop();var t=new l.default;this.init(t,e[0][2],e[0][3]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t},e.prototype.decl=function(e){var t=new r.default;this.init(t);var n=e[e.length-1];for(";"===n[0]&&(this.semicolon=!0,e.pop()),n[4]?t.source.end={line:n[4],column:n[5]}:t.source.end={line:n[2],column:n[3]};"word"!==e[0][0];)1===e.length&&this.unknownWord(e),t.raws.before+=e.shift()[1];for(t.source.start={line:e[0][2],column:e[0][3]},t.prop="";e.length;){var o=e[0][0];if(":"===o||"space"===o||"comment"===o)break;t.prop+=e.shift()[1]}t.raws.between="";for(var a=void 0;e.length;){if(":"===(a=e.shift())[0]){t.raws.between+=a[1];break}t.raws.between+=a[1]}"_"!==t.prop[0]&&"*"!==t.prop[0]||(t.raws.before+=t.prop[0],t.prop=t.prop.slice(1)),t.raws.between+=this.spacesAndCommentsFromStart(e),this.precheckMissedSemicolon(e);for(var i=e.length-1;i>0;i--){if("!important"===(a=e[i])[1].toLowerCase()){t.important=!0;var s=this.stringFrom(e,i);" !important"!==(s=this.spacesFromEnd(e)+s)&&(t.raws.important=s);break}if("important"===a[1].toLowerCase()){for(var l=e.slice(0),c="",u=i;u>0;u--){var d=l[u][0];if(0===c.trim().indexOf("!")&&"space"!==d)break;c=l.pop()[1]+c}0===c.trim().indexOf("!")&&(t.important=!0,t.raws.important=c,e=l)}if("space"!==a[0]&&"comment"!==a[0])break}this.raw(t,"value",e),-1!==t.value.indexOf(":")&&this.checkMissedSemicolon(e)},e.prototype.atrule=function(e){var t=new i.default;t.name=e[1].slice(1),""===t.name&&this.unnamedAtrule(t,e),this.init(t,e[2],e[3]);for(var n=void 0,r=void 0,o=!1,a=!1,s=[];!this.tokenizer.endOfFile();){if(";"===(e=this.tokenizer.nextToken())[0]){t.source.end={line:e[2],column:e[3]},this.semicolon=!0;break}if("{"===e[0]){a=!0;break}if("}"===e[0]){if(s.length>0){for(n=s[r=s.length-1];n&&"space"===n[0];)n=s[--r];n&&(t.source.end={line:n[4],column:n[5]})}this.end(e);break}if(s.push(e),this.tokenizer.endOfFile()){o=!0;break}}t.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(t.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(t,"params",s),o&&(e=s[s.length-1],t.source.end={line:e[4],column:e[5]},this.spaces=t.raws.between,t.raws.between="")):(t.raws.afterName="",t.params=""),a&&(t.nodes=[],this.current=t)},e.prototype.end=function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end={line:e[2],column:e[3]},this.current=this.current.parent):this.unexpectedClose(e)},e.prototype.endFile=function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces},e.prototype.freeSemicolon=function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}},e.prototype.init=function(e,t,n){this.current.push(e),e.source={start:{line:t,column:n},input:this.input},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)},e.prototype.raw=function(e,t,n){for(var r=void 0,o=void 0,a=n.length,i="",s=!0,l=void 0,c=void 0,u=/^([.|#])?([\w])+/i,d=0;d<a;d+=1)"comment"!==(o=(r=n[d])[0])||"rule"!==e.type?"comment"===o||"space"===o&&d===a-1?s=!1:i+=r[1]:(c=n[d-1],l=n[d+1],"space"!==c[0]&&"space"!==l[0]&&u.test(c[1])&&u.test(l[1])?i+=r[1]:s=!1);if(!s){var g=n.reduce((function(e,t){return e+t[1]}),"");e.raws[t]={value:i,raw:g}}e[t]=i},e.prototype.spacesAndCommentsFromEnd=function(e){for(var t=void 0,n="";e.length&&("space"===(t=e[e.length-1][0])||"comment"===t);)n=e.pop()[1]+n;return n},e.prototype.spacesAndCommentsFromStart=function(e){for(var t=void 0,n="";e.length&&("space"===(t=e[0][0])||"comment"===t);)n+=e.shift()[1];return n},e.prototype.spacesFromEnd=function(e){for(var t="";e.length&&"space"===e[e.length-1][0];)t=e.pop()[1]+t;return t},e.prototype.stringFrom=function(e,t){for(var n="",r=t;r<e.length;r++)n+=e[r][1];return e.splice(t,e.length-t),n},e.prototype.colon=function(e){for(var t=0,n=void 0,r=void 0,o=void 0,a=0;a<e.length;a++){if("("===(r=(n=e[a])[0]))t+=1;else if(")"===r)t-=1;else if(0===t&&":"===r){if(o){if("word"===o[0]&&"progid"===o[1])continue;return a}this.doubleColon(n)}o=n}return!1},e.prototype.unclosedBracket=function(e){throw this.input.error("Unclosed bracket",e[2],e[3])},e.prototype.unknownWord=function(e){throw this.input.error("Unknown word",e[0][2],e[0][3])},e.prototype.unexpectedClose=function(e){throw this.input.error("Unexpected }",e[2],e[3])},e.prototype.unclosedBlock=function(){var e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)},e.prototype.doubleColon=function(e){throw this.input.error("Double colon",e[2],e[3])},e.prototype.unnamedAtrule=function(e,t){throw this.input.error("At-rule without name",t[2],t[3])},e.prototype.precheckMissedSemicolon=function(e){},e.prototype.checkMissedSemicolon=function(e){var t=this.colon(e);if(!1!==t){for(var n=0,r=void 0,o=t-1;o>=0&&("space"===(r=e[o])[0]||2!==(n+=1));o--);throw this.input.error("Missed semicolon",r[2],r[3])}},e}();t.default=u,e.exports=t.default},5344:function(e,t,n){"use strict";t.__esModule=!0;var r=p(n(3118)),o=p(n(9432)),a=p(n(4594)),i=p(n(2282)),s=p(n(8090)),l=p(n(3e3)),c=p(n(1647)),u=p(n(1841)),d=p(n(806)),g=p(n(573));function p(e){return e&&e.__esModule?e:{default:e}}function f(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return 1===t.length&&Array.isArray(t[0])&&(t=t[0]),new o.default(t)}f.plugin=function(e,t){var n=function(){var n=t.apply(void 0,arguments);return n.postcssPlugin=e,n.postcssVersion=(new o.default).version,n},r=void 0;return Object.defineProperty(n,"postcss",{get:function(){return r||(r=n()),r}}),n.process=function(e,t,r){return f([n(r)]).process(e,t)},n},f.stringify=a.default,f.parse=c.default,f.vendor=l.default,f.list=u.default,f.comment=function(e){return new i.default(e)},f.atRule=function(e){return new s.default(e)},f.decl=function(e){return new r.default(e)},f.rule=function(e){return new d.default(e)},f.root=function(e){return new g.default(e)},t.default=f,e.exports=t.default},8389:function(e,t,n){"use strict";t.__esModule=!0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=s(n(4014)),a=s(n(6470)),i=s(n(1285));function s(e){return e&&e.__esModule?e:{default:e}}var l=function(){function e(t,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var r=n.map?n.map.prev:void 0,o=this.loadMap(n.from,r);o&&(this.text=o)}return e.prototype.consumer=function(){return this.consumerCache||(this.consumerCache=new o.default.SourceMapConsumer(this.text)),this.consumerCache},e.prototype.withContent=function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)},e.prototype.startWith=function(e,t){return!!e&&e.substr(0,t.length)===t},e.prototype.loadAnnotation=function(e){var t=e.match(/\/\*\s*# sourceMappingURL=(.*)\s*\*\//);t&&(this.annotation=t[1].trim())},e.prototype.decodeInline=function(e){var t="data:application/json,";if(this.startWith(e,t))return decodeURIComponent(e.substr(t.length));if(/^data:application\/json;(?:charset=utf-?8;)?base64,/.test(e))return n=e.substr(RegExp.lastMatch.length),Buffer?Buffer.from&&Buffer.from!==Uint8Array.from?Buffer.from(n,"base64").toString():new Buffer(n,"base64").toString():window.atob(n);var n,r=e.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+r)},e.prototype.loadMap=function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var n=t(e);if(n&&i.default.existsSync&&i.default.existsSync(n))return i.default.readFileSync(n,"utf-8").toString().trim();throw new Error("Unable to load previous source map: "+n.toString())}if(t instanceof o.default.SourceMapConsumer)return o.default.SourceMapGenerator.fromSourceMap(t).toString();if(t instanceof o.default.SourceMapGenerator)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){var r=this.annotation;return e&&(r=a.default.join(a.default.dirname(e),r)),this.root=a.default.dirname(r),!(!i.default.existsSync||!i.default.existsSync(r))&&i.default.readFileSync(r,"utf-8").toString().trim()}},e.prototype.isMap=function(e){return"object"===(void 0===e?"undefined":r(e))&&("string"==typeof e.mappings||"string"==typeof e._mappings)},e}();t.default=l,e.exports=t.default},9432:function(e,t,n){"use strict";t.__esModule=!0;var r,o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a=(r=n(1799))&&r.__esModule?r:{default:r};function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var s=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];i(this,e),this.version="6.0.23",this.plugins=this.normalize(t)}return e.prototype.use=function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this},e.prototype.process=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new a.default(this,e,t)},e.prototype.normalize=function(e){var t=[],n=e,r=Array.isArray(n),a=0;for(n=r?n:n[Symbol.iterator]();;){var i;if(r){if(a>=n.length)break;i=n[a++]}else{if((a=n.next()).done)break;i=a.value}var s=i;if(s.postcss&&(s=s.postcss),"object"===(void 0===s?"undefined":o(s))&&Array.isArray(s.plugins))t=t.concat(s.plugins);else{if("function"!=typeof s)throw"object"===(void 0===s?"undefined":o(s))&&(s.parse||s.stringify)?new Error("PostCSS syntaxes cannot be used as plugins. Instead, please use one of the syntax/parser/stringifier options as outlined in your PostCSS runner documentation."):new Error(s+" is not a PostCSS plugin");t.push(s)}}return t},e}();t.default=s,e.exports=t.default},4974:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=(r=n(9936))&&r.__esModule?r:{default:r},i=function(){function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.processor=t,this.messages=[],this.root=n,this.opts=r,this.css=void 0,this.map=void 0}return e.prototype.toString=function(){return this.css},e.prototype.warn=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var n=new a.default(e,t);return this.messages.push(n),n},e.prototype.warnings=function(){return this.messages.filter((function(e){return"warning"===e.type}))},o(e,[{key:"content",get:function(){return this.css}}]),e}();t.default=i,e.exports=t.default},573:function(e,t,n){"use strict";t.__esModule=!0;var r,o=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="root",r.nodes||(r.nodes=[]),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.removeChild=function(t,n){var r=this.index(t);return!n&&0===r&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),e.prototype.removeChild.call(this,t)},t.prototype.normalize=function(t,n,r){var o=e.prototype.normalize.call(this,t);if(n)if("prepend"===r)this.nodes.length>1?n.raws.before=this.nodes[1].raws.before:delete n.raws.before;else if(this.first!==n){var a=o,i=Array.isArray(a),s=0;for(a=i?a:a[Symbol.iterator]();;){var l;if(i){if(s>=a.length)break;l=a[s++]}else{if((s=a.next()).done)break;l=s.value}l.raws.before=n.raws.before}}return o},t.prototype.toResult=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=n(1799),r=n(9432),o=new t(new r,this,e);return o.stringify()},t}(((r=n(2146))&&r.__esModule?r:{default:r}).default);t.default=o,e.exports=t.default},806:function(e,t,n){"use strict";t.__esModule=!0;var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=i(n(2146)),a=i(n(1841));function i(e){return e&&e.__esModule?e:{default:e}}var s=function(e){function t(n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,e.call(this,n));return r.type="rule",r.nodes||(r.nodes=[]),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),r(t,[{key:"selectors",get:function(){return a.default.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}}]),t}(o.default);t.default=s,e.exports=t.default},3255:function(e,t){"use strict";t.__esModule=!0;var n={colon:": ",indent:" ",beforeDecl:"\n",beforeRule:"\n",beforeOpen:" ",beforeClose:"\n",beforeComment:"\n",after:"\n",emptyBody:"",commentLeft:" ",commentRight:" "},r=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.builder=t}return e.prototype.stringify=function(e,t){this[e.type](e,t)},e.prototype.root=function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)},e.prototype.comment=function(e){var t=this.raw(e,"left","commentLeft"),n=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+n+"*/",e)},e.prototype.decl=function(e,t){var n=this.raw(e,"between","colon"),r=e.prop+n+this.rawValue(e,"value");e.important&&(r+=e.raws.important||" !important"),t&&(r+=";"),this.builder(r,e)},e.prototype.rule=function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")},e.prototype.atrule=function(e,t){var n="@"+e.name,r=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?n+=e.raws.afterName:r&&(n+=" "),e.nodes)this.block(e,n+r);else{var o=(e.raws.between||"")+(t?";":"");this.builder(n+r+o,e)}},e.prototype.body=function(e){for(var t=e.nodes.length-1;t>0&&"comment"===e.nodes[t].type;)t-=1;for(var n=this.raw(e,"semicolon"),r=0;r<e.nodes.length;r++){var o=e.nodes[r],a=this.raw(o,"before");a&&this.builder(a),this.stringify(o,t!==r||n)}},e.prototype.block=function(e,t){var n=this.raw(e,"between","beforeOpen");this.builder(t+n+"{",e,"start");var r=void 0;e.nodes&&e.nodes.length?(this.body(e),r=this.raw(e,"after")):r=this.raw(e,"after","emptyBody"),r&&this.builder(r),this.builder("}",e,"end")},e.prototype.raw=function(e,t,r){var o=void 0;if(r||(r=t),t&&void 0!==(o=e.raws[t]))return o;var a=e.parent;if("before"===r&&(!a||"root"===a.type&&a.first===e))return"";if(!a)return n[r];var i=e.root();if(i.rawCache||(i.rawCache={}),void 0!==i.rawCache[r])return i.rawCache[r];if("before"===r||"after"===r)return this.beforeAfter(e,r);var s,l="raw"+((s=r)[0].toUpperCase()+s.slice(1));return this[l]?o=this[l](i,e):i.walk((function(e){if(void 0!==(o=e.raws[t]))return!1})),void 0===o&&(o=n[r]),i.rawCache[r]=o,o},e.prototype.rawSemicolon=function(e){var t=void 0;return e.walk((function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1})),t},e.prototype.rawEmptyBody=function(e){var t=void 0;return e.walk((function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1})),t},e.prototype.rawIndent=function(e){if(e.raws.indent)return e.raws.indent;var t=void 0;return e.walk((function(n){var r=n.parent;if(r&&r!==e&&r.parent&&r.parent===e&&void 0!==n.raws.before){var o=n.raws.before.split("\n");return t=(t=o[o.length-1]).replace(/[^\s]/g,""),!1}})),t},e.prototype.rawBeforeComment=function(e,t){var n=void 0;return e.walkComments((function(e){if(void 0!==e.raws.before)return-1!==(n=e.raws.before).indexOf("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/[^\s]/g,"")),n},e.prototype.rawBeforeDecl=function(e,t){var n=void 0;return e.walkDecls((function(e){if(void 0!==e.raws.before)return-1!==(n=e.raws.before).indexOf("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/[^\s]/g,"")),n},e.prototype.rawBeforeRule=function(e){var t=void 0;return e.walk((function(n){if(n.nodes&&(n.parent!==e||e.first!==n)&&void 0!==n.raws.before)return-1!==(t=n.raws.before).indexOf("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/[^\s]/g,"")),t},e.prototype.rawBeforeClose=function(e){var t=void 0;return e.walk((function(e){if(e.nodes&&e.nodes.length>0&&void 0!==e.raws.after)return-1!==(t=e.raws.after).indexOf("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/[^\s]/g,"")),t},e.prototype.rawBeforeOpen=function(e){var t=void 0;return e.walk((function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1})),t},e.prototype.rawColon=function(e){var t=void 0;return e.walkDecls((function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1})),t},e.prototype.beforeAfter=function(e,t){var n=void 0;n="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r=e.parent,o=0;r&&"root"!==r.type;)o+=1,r=r.parent;if(-1!==n.indexOf("\n")){var a=this.raw(e,null,"indent");if(a.length)for(var i=0;i<o;i++)n+=a}return n},e.prototype.rawValue=function(e,t){var n=e[t],r=e.raws[t];return r&&r.value===n?r.raw:n},e}();t.default=r,e.exports=t.default},4594:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){new o.default(t).stringify(e)};var r,o=(r=n(3255))&&r.__esModule?r:{default:r};e.exports=t.default},8818:function(e,t,n){"use strict";t.__esModule=!0;var r=i(n(683)),o=i(n(7272)),a=i(n(1810));function i(e){return e&&e.__esModule?e:{default:e}}var s={brackets:r.default.cyan,"at-word":r.default.cyan,call:r.default.cyan,comment:r.default.gray,string:r.default.green,class:r.default.yellow,hash:r.default.magenta,"(":r.default.cyan,")":r.default.cyan,"{":r.default.yellow,"}":r.default.yellow,"[":r.default.yellow,"]":r.default.yellow,":":r.default.yellow,";":r.default.yellow};t.default=function(e){for(var t=(0,o.default)(new a.default(e),{ignoreErrors:!0}),n="",r=function(){var e=t.nextToken(),r=s[function(e,t){var n=e[0],r=e[1];if("word"===n){if("."===r[0])return"class";if("#"===r[0])return"hash"}if(!t.endOfFile()){var o=t.nextToken();if(t.back(o),"brackets"===o[0]||"("===o[0])return"call"}return n}(e,t)];n+=r?e[1].split(/\r?\n/).map((function(e){return r(e)})).join("\n"):e[1]};!t.endOfFile();)r();return n},e.exports=t.default},7272:function(e,t){"use strict";t.__esModule=!0,t.default=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},g=e.css.valueOf(),p=t.ignoreErrors,f=void 0,m=void 0,h=void 0,y=void 0,v=void 0,b=void 0,_=void 0,w=void 0,E=void 0,$=void 0,C=void 0,k=void 0,S=void 0,x=void 0,O=g.length,P=-1,A=1,N=0,R=[],T=[];function M(t){throw e.error("Unclosed "+t,A,N-P)}function j(){return 0===T.length&&N>=O}function I(){if(T.length)return T.pop();if(!(N>=O)){switch(((f=g.charCodeAt(N))===o||f===i||f===s&&g.charCodeAt(N+1)!==o)&&(P=N,A+=1),f){case o:case a:case 9:case s:case i:m=N;do{m+=1,(f=g.charCodeAt(m))===o&&(P=m,A+=1)}while(f===a||f===o||9===f||f===s||f===i);x=["space",g.slice(N,m)],N=m-1;break;case 91:x=["[","[",A,N-P];break;case 93:x=["]","]",A,N-P];break;case 123:x=["{","{",A,N-P];break;case 125:x=["}","}",A,N-P];break;case 58:x=[":",":",A,N-P];break;case 59:x=[";",";",A,N-P];break;case 40:if(k=R.length?R.pop()[1]:"",S=g.charCodeAt(N+1),"url"===k&&S!==n&&34!==S&&S!==a&&S!==o&&9!==S&&S!==i&&S!==s){m=N;do{if($=!1,-1===(m=g.indexOf(")",m+1))){if(p){m=N;break}M("bracket")}for(C=m;g.charCodeAt(C-1)===r;)C-=1,$=!$}while($);x=["brackets",g.slice(N,m+1),A,N-P,A,m-P],N=m}else m=g.indexOf(")",N+1),b=g.slice(N,m+1),-1===m||u.test(b)?x=["(","(",A,N-P]:(x=["brackets",b,A,N-P,A,m-P],N=m);break;case 41:x=[")",")",A,N-P];break;case n:case 34:h=f===n?"'":'"',m=N;do{if($=!1,-1===(m=g.indexOf(h,m+1))){if(p){m=N+1;break}M("string")}for(C=m;g.charCodeAt(C-1)===r;)C-=1,$=!$}while($);b=g.slice(N,m+1),y=b.split("\n"),(v=y.length-1)>0?(w=A+v,E=m-y[v].length):(w=A,E=P),x=["string",g.slice(N,m+1),A,N-P,w,m-E],P=E,A=w,N=m;break;case 64:l.lastIndex=N+1,l.test(g),m=0===l.lastIndex?g.length-1:l.lastIndex-2,x=["at-word",g.slice(N,m+1),A,N-P,A,m-P],N=m;break;case r:for(m=N,_=!0;g.charCodeAt(m+1)===r;)m+=1,_=!_;if(f=g.charCodeAt(m+1),_&&47!==f&&f!==a&&f!==o&&9!==f&&f!==s&&f!==i&&(m+=1,d.test(g.charAt(m)))){for(;d.test(g.charAt(m+1));)m+=1;g.charCodeAt(m+1)===a&&(m+=1)}x=["word",g.slice(N,m+1),A,N-P,A,m-P],N=m;break;default:47===f&&42===g.charCodeAt(N+1)?(0===(m=g.indexOf("*/",N+2)+1)&&(p?m=g.length:M("comment")),b=g.slice(N,m+1),y=b.split("\n"),(v=y.length-1)>0?(w=A+v,E=m-y[v].length):(w=A,E=P),x=["comment",b,A,N-P,w,m-E],P=E,A=w,N=m):(c.lastIndex=N+1,c.test(g),m=0===c.lastIndex?g.length-1:c.lastIndex-2,x=["word",g.slice(N,m+1),A,N-P,A,m-P],R.push(x),N=m)}return N++,x}}function F(e){T.push(e)}return{back:F,nextToken:I,endOfFile:j}};var n=39,r=92,o=10,a=32,i=12,s=13,l=/[ \n\t\r\f\{\}\(\)'"\\;/\[\]#]/g,c=/[ \n\t\r\f\(\)\{\}:;@!'"\\\]\[#]|\/(?=\*)/g,u=/.[\\\/\("'\n]/,d=/[a-f0-9]/i;e.exports=t.default},3e3:function(e,t){"use strict";t.__esModule=!0,t.default={prefix:function(e){var t=e.match(/^(-\w+-)/);return t?t[0]:""},unprefixed:function(e){return e.replace(/^-\w+-/,"")}},e.exports=t.default},6094:function(e,t){"use strict";t.__esModule=!0,t.default=function(e){n[e]||(n[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))};var n={};e.exports=t.default},9936:function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}t.__esModule=!0;var r=function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(n(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var o=r.node.positionBy(r);this.line=o.line,this.column=o.column}for(var a in r)this[a]=r[a]}return e.prototype.toString=function(){return this.node?this.node.error(this.text,{plugin:this.plugin,index:this.index,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text},e}();t.default=r,e.exports=t.default},40:function(e,t,n){var r=n(5037),o=Object.prototype.hasOwnProperty,a="undefined"!=typeof Map;function i(){this._array=[],this._set=a?new Map:Object.create(null)}i.fromArray=function(e,t){for(var n=new i,r=0,o=e.length;r<o;r++)n.add(e[r],t);return n},i.prototype.size=function(){return a?this._set.size:Object.getOwnPropertyNames(this._set).length},i.prototype.add=function(e,t){var n=a?e:r.toSetString(e),i=a?this.has(e):o.call(this._set,n),s=this._array.length;i&&!t||this._array.push(e),i||(a?this._set.set(e,s):this._set[n]=s)},i.prototype.has=function(e){if(a)return this._set.has(e);var t=r.toSetString(e);return o.call(this._set,t)},i.prototype.indexOf=function(e){if(a){var t=this._set.get(e);if(t>=0)return t}else{var n=r.toSetString(e);if(o.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},i.prototype.at=function(e){if(e>=0&&e<this._array.length)return this._array[e];throw new Error("No element indexed by "+e)},i.prototype.toArray=function(){return this._array.slice()},t.I=i},3858:function(e,t,n){var r=n(2629);t.encode=function(e){var t,n="",o=function(e){return e<0?1+(-e<<1):0+(e<<1)}(e);do{t=31&o,(o>>>=5)>0&&(t|=32),n+=r.encode(t)}while(o>0);return n},t.decode=function(e,t,n){var o,a,i,s,l=e.length,c=0,u=0;do{if(t>=l)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(a=r.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));o=!!(32&a),c+=(a&=31)<<u,u+=5}while(o);n.value=(s=(i=c)>>1,1==(1&i)?-s:s),n.rest=t}},2629:function(e,t){var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");t.encode=function(e){if(0<=e&&e<n.length)return n[e];throw new TypeError("Must be between 0 and 63: "+e)},t.decode=function(e){return 65<=e&&e<=90?e-65:97<=e&&e<=122?e-97+26:48<=e&&e<=57?e-48+52:43==e?62:47==e?63:-1}},115:function(e,t){function n(e,r,o,a,i,s){var l=Math.floor((r-e)/2)+e,c=i(o,a[l],!0);return 0===c?l:c>0?r-l>1?n(l,r,o,a,i,s):s==t.LEAST_UPPER_BOUND?r<a.length?r:-1:l:l-e>1?n(e,l,o,a,i,s):s==t.LEAST_UPPER_BOUND?l:e<0?-1:e}t.GREATEST_LOWER_BOUND=1,t.LEAST_UPPER_BOUND=2,t.search=function(e,r,o,a){if(0===r.length)return-1;var i=n(-1,r.length,e,r,o,a||t.GREATEST_LOWER_BOUND);if(i<0)return-1;for(;i-1>=0&&0===o(r[i],r[i-1],!0);)--i;return i}},212:function(e,t,n){var r=n(5037);function o(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}o.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},o.prototype.add=function(e){var t,n,o,a,i,s;n=e,o=(t=this._last).generatedLine,a=n.generatedLine,i=t.generatedColumn,s=n.generatedColumn,a>o||a==o&&s>=i||r.compareByGeneratedPositionsInflated(t,n)<=0?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},o.prototype.toArray=function(){return this._sorted||(this._array.sort(r.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},t.H=o},8251:function(e,t){function n(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function r(e,t,o,a){if(o<a){var i=o-1;n(e,(u=o,d=a,Math.round(u+Math.random()*(d-u))),a);for(var s=e[a],l=o;l<a;l++)t(e[l],s)<=0&&n(e,i+=1,l);n(e,i+1,l);var c=i+1;r(e,t,o,c-1),r(e,t,c+1,a)}var u,d}t.U=function(e,t){r(e,t,0,e.length-1)}},5177:function(e,t,n){var r=n(5037),o=n(115),a=n(40).I,i=n(3858),s=n(8251).U;function l(e,t){var n=e;return"string"==typeof e&&(n=r.parseSourceMapInput(e)),null!=n.sections?new d(n,t):new c(n,t)}function c(e,t){var n=e;"string"==typeof e&&(n=r.parseSourceMapInput(e));var o=r.getArg(n,"version"),i=r.getArg(n,"sources"),s=r.getArg(n,"names",[]),l=r.getArg(n,"sourceRoot",null),c=r.getArg(n,"sourcesContent",null),u=r.getArg(n,"mappings"),d=r.getArg(n,"file",null);if(o!=this._version)throw new Error("Unsupported version: "+o);l&&(l=r.normalize(l)),i=i.map(String).map(r.normalize).map((function(e){return l&&r.isAbsolute(l)&&r.isAbsolute(e)?r.relative(l,e):e})),this._names=a.fromArray(s.map(String),!0),this._sources=a.fromArray(i,!0),this._absoluteSources=this._sources.toArray().map((function(e){return r.computeSourceURL(l,e,t)})),this.sourceRoot=l,this.sourcesContent=c,this._mappings=u,this._sourceMapURL=t,this.file=d}function u(){this.generatedLine=0,this.generatedColumn=0,this.source=null,this.originalLine=null,this.originalColumn=null,this.name=null}function d(e,t){var n=e;"string"==typeof e&&(n=r.parseSourceMapInput(e));var o=r.getArg(n,"version"),i=r.getArg(n,"sections");if(o!=this._version)throw new Error("Unsupported version: "+o);this._sources=new a,this._names=new a;var s={line:-1,column:0};this._sections=i.map((function(e){if(e.url)throw new Error("Support for url field in sections not implemented.");var n=r.getArg(e,"offset"),o=r.getArg(n,"line"),a=r.getArg(n,"column");if(o<s.line||o===s.line&&a<s.column)throw new Error("Section offsets must be ordered and non-overlapping.");return s=n,{generatedOffset:{generatedLine:o+1,generatedColumn:a+1},consumer:new l(r.getArg(e,"map"),t)}}))}l.fromSourceMap=function(e,t){return c.fromSourceMap(e,t)},l.prototype._version=3,l.prototype.__generatedMappings=null,Object.defineProperty(l.prototype,"_generatedMappings",{configurable:!0,enumerable:!0,get:function(){return this.__generatedMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__generatedMappings}}),l.prototype.__originalMappings=null,Object.defineProperty(l.prototype,"_originalMappings",{configurable:!0,enumerable:!0,get:function(){return this.__originalMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__originalMappings}}),l.prototype._charIsMappingSeparator=function(e,t){var n=e.charAt(t);return";"===n||","===n},l.prototype._parseMappings=function(e,t){throw new Error("Subclasses must implement _parseMappings")},l.GENERATED_ORDER=1,l.ORIGINAL_ORDER=2,l.GREATEST_LOWER_BOUND=1,l.LEAST_UPPER_BOUND=2,l.prototype.eachMapping=function(e,t,n){var o,a=t||null;switch(n||l.GENERATED_ORDER){case l.GENERATED_ORDER:o=this._generatedMappings;break;case l.ORIGINAL_ORDER:o=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var i=this.sourceRoot;o.map((function(e){var t=null===e.source?null:this._sources.at(e.source);return{source:t=r.computeSourceURL(i,t,this._sourceMapURL),generatedLine:e.generatedLine,generatedColumn:e.generatedColumn,originalLine:e.originalLine,originalColumn:e.originalColumn,name:null===e.name?null:this._names.at(e.name)}}),this).forEach(e,a)},l.prototype.allGeneratedPositionsFor=function(e){var t=r.getArg(e,"line"),n={source:r.getArg(e,"source"),originalLine:t,originalColumn:r.getArg(e,"column",0)};if(n.source=this._findSourceIndex(n.source),n.source<0)return[];var a=[],i=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,o.LEAST_UPPER_BOUND);if(i>=0){var s=this._originalMappings[i];if(void 0===e.column)for(var l=s.originalLine;s&&s.originalLine===l;)a.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)}),s=this._originalMappings[++i];else for(var c=s.originalColumn;s&&s.originalLine===t&&s.originalColumn==c;)a.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)}),s=this._originalMappings[++i]}return a},t.SourceMapConsumer=l,c.prototype=Object.create(l.prototype),c.prototype.consumer=l,c.prototype._findSourceIndex=function(e){var t,n=e;if(null!=this.sourceRoot&&(n=r.relative(this.sourceRoot,n)),this._sources.has(n))return this._sources.indexOf(n);for(t=0;t<this._absoluteSources.length;++t)if(this._absoluteSources[t]==e)return t;return-1},c.fromSourceMap=function(e,t){var n=Object.create(c.prototype),o=n._names=a.fromArray(e._names.toArray(),!0),i=n._sources=a.fromArray(e._sources.toArray(),!0);n.sourceRoot=e._sourceRoot,n.sourcesContent=e._generateSourcesContent(n._sources.toArray(),n.sourceRoot),n.file=e._file,n._sourceMapURL=t,n._absoluteSources=n._sources.toArray().map((function(e){return r.computeSourceURL(n.sourceRoot,e,t)}));for(var l=e._mappings.toArray().slice(),d=n.__generatedMappings=[],g=n.__originalMappings=[],p=0,f=l.length;p<f;p++){var m=l[p],h=new u;h.generatedLine=m.generatedLine,h.generatedColumn=m.generatedColumn,m.source&&(h.source=i.indexOf(m.source),h.originalLine=m.originalLine,h.originalColumn=m.originalColumn,m.name&&(h.name=o.indexOf(m.name)),g.push(h)),d.push(h)}return s(n.__originalMappings,r.compareByOriginalPositions),n},c.prototype._version=3,Object.defineProperty(c.prototype,"sources",{get:function(){return this._absoluteSources.slice()}}),c.prototype._parseMappings=function(e,t){for(var n,o,a,l,c,d=1,g=0,p=0,f=0,m=0,h=0,y=e.length,v=0,b={},_={},w=[],E=[];v<y;)if(";"===e.charAt(v))d++,v++,g=0;else if(","===e.charAt(v))v++;else{for((n=new u).generatedLine=d,l=v;l<y&&!this._charIsMappingSeparator(e,l);l++);if(a=b[o=e.slice(v,l)])v+=o.length;else{for(a=[];v<l;)i.decode(e,v,_),c=_.value,v=_.rest,a.push(c);if(2===a.length)throw new Error("Found a source, but no line and column");if(3===a.length)throw new Error("Found a source and line, but no column");b[o]=a}n.generatedColumn=g+a[0],g=n.generatedColumn,a.length>1&&(n.source=m+a[1],m+=a[1],n.originalLine=p+a[2],p=n.originalLine,n.originalLine+=1,n.originalColumn=f+a[3],f=n.originalColumn,a.length>4&&(n.name=h+a[4],h+=a[4])),E.push(n),"number"==typeof n.originalLine&&w.push(n)}s(E,r.compareByGeneratedPositionsDeflated),this.__generatedMappings=E,s(w,r.compareByOriginalPositions),this.__originalMappings=w},c.prototype._findMapping=function(e,t,n,r,a,i){if(e[n]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+e[n]);if(e[r]<0)throw new TypeError("Column must be greater than or equal to 0, got "+e[r]);return o.search(e,t,a,i)},c.prototype.computeColumnSpans=function(){for(var e=0;e<this._generatedMappings.length;++e){var t=this._generatedMappings[e];if(e+1<this._generatedMappings.length){var n=this._generatedMappings[e+1];if(t.generatedLine===n.generatedLine){t.lastGeneratedColumn=n.generatedColumn-1;continue}}t.lastGeneratedColumn=1/0}},c.prototype.originalPositionFor=function(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")},n=this._findMapping(t,this._generatedMappings,"generatedLine","generatedColumn",r.compareByGeneratedPositionsDeflated,r.getArg(e,"bias",l.GREATEST_LOWER_BOUND));if(n>=0){var o=this._generatedMappings[n];if(o.generatedLine===t.generatedLine){var a=r.getArg(o,"source",null);null!==a&&(a=this._sources.at(a),a=r.computeSourceURL(this.sourceRoot,a,this._sourceMapURL));var i=r.getArg(o,"name",null);return null!==i&&(i=this._names.at(i)),{source:a,line:r.getArg(o,"originalLine",null),column:r.getArg(o,"originalColumn",null),name:i}}}return{source:null,line:null,column:null,name:null}},c.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some((function(e){return null==e}))},c.prototype.sourceContentFor=function(e,t){if(!this.sourcesContent)return null;var n=this._findSourceIndex(e);if(n>=0)return this.sourcesContent[n];var o,a=e;if(null!=this.sourceRoot&&(a=r.relative(this.sourceRoot,a)),null!=this.sourceRoot&&(o=r.urlParse(this.sourceRoot))){var i=a.replace(/^file:\/\//,"");if("file"==o.scheme&&this._sources.has(i))return this.sourcesContent[this._sources.indexOf(i)];if((!o.path||"/"==o.path)&&this._sources.has("/"+a))return this.sourcesContent[this._sources.indexOf("/"+a)]}if(t)return null;throw new Error('"'+a+'" is not in the SourceMap.')},c.prototype.generatedPositionFor=function(e){var t=r.getArg(e,"source");if((t=this._findSourceIndex(t))<0)return{line:null,column:null,lastColumn:null};var n={source:t,originalLine:r.getArg(e,"line"),originalColumn:r.getArg(e,"column")},o=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,r.getArg(e,"bias",l.GREATEST_LOWER_BOUND));if(o>=0){var a=this._originalMappings[o];if(a.source===n.source)return{line:r.getArg(a,"generatedLine",null),column:r.getArg(a,"generatedColumn",null),lastColumn:r.getArg(a,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},d.prototype=Object.create(l.prototype),d.prototype.constructor=l,d.prototype._version=3,Object.defineProperty(d.prototype,"sources",{get:function(){for(var e=[],t=0;t<this._sections.length;t++)for(var n=0;n<this._sections[t].consumer.sources.length;n++)e.push(this._sections[t].consumer.sources[n]);return e}}),d.prototype.originalPositionFor=function(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")},n=o.search(t,this._sections,(function(e,t){return e.generatedLine-t.generatedOffset.generatedLine||e.generatedColumn-t.generatedOffset.generatedColumn})),a=this._sections[n];return a?a.consumer.originalPositionFor({line:t.generatedLine-(a.generatedOffset.generatedLine-1),column:t.generatedColumn-(a.generatedOffset.generatedLine===t.generatedLine?a.generatedOffset.generatedColumn-1:0),bias:e.bias}):{source:null,line:null,column:null,name:null}},d.prototype.hasContentsOfAllSources=function(){return this._sections.every((function(e){return e.consumer.hasContentsOfAllSources()}))},d.prototype.sourceContentFor=function(e,t){for(var n=0;n<this._sections.length;n++){var r=this._sections[n].consumer.sourceContentFor(e,!0);if(r)return r}if(t)return null;throw new Error('"'+e+'" is not in the SourceMap.')},d.prototype.generatedPositionFor=function(e){for(var t=0;t<this._sections.length;t++){var n=this._sections[t];if(-1!==n.consumer._findSourceIndex(r.getArg(e,"source"))){var o=n.consumer.generatedPositionFor(e);if(o)return{line:o.line+(n.generatedOffset.generatedLine-1),column:o.column+(n.generatedOffset.generatedLine===o.line?n.generatedOffset.generatedColumn-1:0)}}}return{line:null,column:null}},d.prototype._parseMappings=function(e,t){this.__generatedMappings=[],this.__originalMappings=[];for(var n=0;n<this._sections.length;n++)for(var o=this._sections[n],a=o.consumer._generatedMappings,i=0;i<a.length;i++){var l=a[i],c=o.consumer._sources.at(l.source);c=r.computeSourceURL(o.consumer.sourceRoot,c,this._sourceMapURL),this._sources.add(c),c=this._sources.indexOf(c);var u=null;l.name&&(u=o.consumer._names.at(l.name),this._names.add(u),u=this._names.indexOf(u));var d={source:c,generatedLine:l.generatedLine+(o.generatedOffset.generatedLine-1),generatedColumn:l.generatedColumn+(o.generatedOffset.generatedLine===l.generatedLine?o.generatedOffset.generatedColumn-1:0),originalLine:l.originalLine,originalColumn:l.originalColumn,name:u};this.__generatedMappings.push(d),"number"==typeof d.originalLine&&this.__originalMappings.push(d)}s(this.__generatedMappings,r.compareByGeneratedPositionsDeflated),s(this.__originalMappings,r.compareByOriginalPositions)}},8530:function(e,t,n){var r=n(3858),o=n(5037),a=n(40).I,i=n(212).H;function s(e){e||(e={}),this._file=o.getArg(e,"file",null),this._sourceRoot=o.getArg(e,"sourceRoot",null),this._skipValidation=o.getArg(e,"skipValidation",!1),this._sources=new a,this._names=new a,this._mappings=new i,this._sourcesContents=null}s.prototype._version=3,s.fromSourceMap=function(e){var t=e.sourceRoot,n=new s({file:e.file,sourceRoot:t});return e.eachMapping((function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};null!=e.source&&(r.source=e.source,null!=t&&(r.source=o.relative(t,r.source)),r.original={line:e.originalLine,column:e.originalColumn},null!=e.name&&(r.name=e.name)),n.addMapping(r)})),e.sources.forEach((function(r){var a=r;null!==t&&(a=o.relative(t,r)),n._sources.has(a)||n._sources.add(a);var i=e.sourceContentFor(r);null!=i&&n.setSourceContent(r,i)})),n},s.prototype.addMapping=function(e){var t=o.getArg(e,"generated"),n=o.getArg(e,"original",null),r=o.getArg(e,"source",null),a=o.getArg(e,"name",null);this._skipValidation||this._validateMapping(t,n,r,a),null!=r&&(r=String(r),this._sources.has(r)||this._sources.add(r)),null!=a&&(a=String(a),this._names.has(a)||this._names.add(a)),this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:null!=n&&n.line,originalColumn:null!=n&&n.column,source:r,name:a})},s.prototype.setSourceContent=function(e,t){var n=e;null!=this._sourceRoot&&(n=o.relative(this._sourceRoot,n)),null!=t?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[o.toSetString(n)]=t):this._sourcesContents&&(delete this._sourcesContents[o.toSetString(n)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},s.prototype.applySourceMap=function(e,t,n){var r=t;if(null==t){if(null==e.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');r=e.file}var i=this._sourceRoot;null!=i&&(r=o.relative(i,r));var s=new a,l=new a;this._mappings.unsortedForEach((function(t){if(t.source===r&&null!=t.originalLine){var a=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});null!=a.source&&(t.source=a.source,null!=n&&(t.source=o.join(n,t.source)),null!=i&&(t.source=o.relative(i,t.source)),t.originalLine=a.line,t.originalColumn=a.column,null!=a.name&&(t.name=a.name))}var c=t.source;null==c||s.has(c)||s.add(c);var u=t.name;null==u||l.has(u)||l.add(u)}),this),this._sources=s,this._names=l,e.sources.forEach((function(t){var r=e.sourceContentFor(t);null!=r&&(null!=n&&(t=o.join(n,t)),null!=i&&(t=o.relative(i,t)),this.setSourceContent(t,r))}),this)},s.prototype._validateMapping=function(e,t,n,r){if(t&&"number"!=typeof t.line&&"number"!=typeof t.column)throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if((!(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},s.prototype._serializeMappings=function(){for(var e,t,n,a,i=0,s=1,l=0,c=0,u=0,d=0,g="",p=this._mappings.toArray(),f=0,m=p.length;f<m;f++){if(e="",(t=p[f]).generatedLine!==s)for(i=0;t.generatedLine!==s;)e+=";",s++;else if(f>0){if(!o.compareByGeneratedPositionsInflated(t,p[f-1]))continue;e+=","}e+=r.encode(t.generatedColumn-i),i=t.generatedColumn,null!=t.source&&(a=this._sources.indexOf(t.source),e+=r.encode(a-d),d=a,e+=r.encode(t.originalLine-1-c),c=t.originalLine-1,e+=r.encode(t.originalColumn-l),l=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=r.encode(n-u),u=n)),g+=e}return g},s.prototype._generateSourcesContent=function(e,t){return e.map((function(e){if(!this._sourcesContents)return null;null!=t&&(e=o.relative(t,e));var n=o.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null}),this)},s.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},s.prototype.toString=function(){return JSON.stringify(this.toJSON())},t.SourceMapGenerator=s},8570:function(e,t,n){var r=n(8530).SourceMapGenerator,o=n(5037),a=/(\r?\n)/,i="$$$isSourceNode$$$";function s(e,t,n,r,o){this.children=[],this.sourceContents={},this.line=null==e?null:e,this.column=null==t?null:t,this.source=null==n?null:n,this.name=null==o?null:o,this[i]=!0,null!=r&&this.add(r)}s.fromStringWithSourceMap=function(e,t,n){var r=new s,i=e.split(a),l=0,c=function(){return e()+(e()||"");function e(){return l<i.length?i[l++]:void 0}},u=1,d=0,g=null;return t.eachMapping((function(e){if(null!==g){if(!(u<e.generatedLine)){var t=(n=i[l]||"").substr(0,e.generatedColumn-d);return i[l]=n.substr(e.generatedColumn-d),d=e.generatedColumn,p(g,t),void(g=e)}p(g,c()),u++,d=0}for(;u<e.generatedLine;)r.add(c()),u++;if(d<e.generatedColumn){var n=i[l]||"";r.add(n.substr(0,e.generatedColumn)),i[l]=n.substr(e.generatedColumn),d=e.generatedColumn}g=e}),this),l<i.length&&(g&&p(g,c()),r.add(i.splice(l).join(""))),t.sources.forEach((function(e){var a=t.sourceContentFor(e);null!=a&&(null!=n&&(e=o.join(n,e)),r.setSourceContent(e,a))})),r;function p(e,t){if(null===e||void 0===e.source)r.add(t);else{var a=n?o.join(n,e.source):e.source;r.add(new s(e.originalLine,e.originalColumn,a,t,e.name))}}},s.prototype.add=function(e){if(Array.isArray(e))e.forEach((function(e){this.add(e)}),this);else{if(!e[i]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);e&&this.children.push(e)}return this},s.prototype.prepend=function(e){if(Array.isArray(e))for(var t=e.length-1;t>=0;t--)this.prepend(e[t]);else{if(!e[i]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);this.children.unshift(e)}return this},s.prototype.walk=function(e){for(var t,n=0,r=this.children.length;n<r;n++)(t=this.children[n])[i]?t.walk(e):""!==t&&e(t,{source:this.source,line:this.line,column:this.column,name:this.name})},s.prototype.join=function(e){var t,n,r=this.children.length;if(r>0){for(t=[],n=0;n<r-1;n++)t.push(this.children[n]),t.push(e);t.push(this.children[n]),this.children=t}return this},s.prototype.replaceRight=function(e,t){var n=this.children[this.children.length-1];return n[i]?n.replaceRight(e,t):"string"==typeof n?this.children[this.children.length-1]=n.replace(e,t):this.children.push("".replace(e,t)),this},s.prototype.setSourceContent=function(e,t){this.sourceContents[o.toSetString(e)]=t},s.prototype.walkSourceContents=function(e){for(var t=0,n=this.children.length;t<n;t++)this.children[t][i]&&this.children[t].walkSourceContents(e);var r=Object.keys(this.sourceContents);for(t=0,n=r.length;t<n;t++)e(o.fromSetString(r[t]),this.sourceContents[r[t]])},s.prototype.toString=function(){var e="";return this.walk((function(t){e+=t})),e},s.prototype.toStringWithSourceMap=function(e){var t={code:"",line:1,column:0},n=new r(e),o=!1,a=null,i=null,s=null,l=null;return this.walk((function(e,r){t.code+=e,null!==r.source&&null!==r.line&&null!==r.column?(a===r.source&&i===r.line&&s===r.column&&l===r.name||n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name}),a=r.source,i=r.line,s=r.column,l=r.name,o=!0):o&&(n.addMapping({generated:{line:t.line,column:t.column}}),a=null,o=!1);for(var c=0,u=e.length;c<u;c++)10===e.charCodeAt(c)?(t.line++,t.column=0,c+1===u?(a=null,o=!1):o&&n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})):t.column++})),this.walkSourceContents((function(e,t){n.setSourceContent(e,t)})),{code:t.code,map:n}},t.SourceNode=s},5037:function(e,t){t.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var n=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/,r=/^data:.+\,.+$/;function o(e){var t=e.match(n);return t?{scheme:t[1],auth:t[2],host:t[3],port:t[4],path:t[5]}:null}function a(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth&&(t+=e.auth+"@"),e.host&&(t+=e.host),e.port&&(t+=":"+e.port),e.path&&(t+=e.path),t}function i(e){var n=e,r=o(e);if(r){if(!r.path)return e;n=r.path}for(var i,s=t.isAbsolute(n),l=n.split(/\/+/),c=0,u=l.length-1;u>=0;u--)"."===(i=l[u])?l.splice(u,1):".."===i?c++:c>0&&(""===i?(l.splice(u+1,c),c=0):(l.splice(u,2),c--));return""===(n=l.join("/"))&&(n=s?"/":"."),r?(r.path=n,a(r)):n}function s(e,t){""===e&&(e="."),""===t&&(t=".");var n=o(t),s=o(e);if(s&&(e=s.path||"/"),n&&!n.scheme)return s&&(n.scheme=s.scheme),a(n);if(n||t.match(r))return t;if(s&&!s.host&&!s.path)return s.host=t,a(s);var l="/"===t.charAt(0)?t:i(e.replace(/\/+$/,"")+"/"+t);return s?(s.path=l,a(s)):l}t.urlParse=o,t.urlGenerate=a,t.normalize=i,t.join=s,t.isAbsolute=function(e){return"/"===e.charAt(0)||n.test(e)},t.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var l=!("__proto__"in Object.create(null));function c(e){return e}function u(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function d(e,t){return e===t?0:null===e?1:null===t?-1:e>t?1:-1}t.toSetString=l?c:function(e){return u(e)?"$"+e:e},t.fromSetString=l?c:function(e){return u(e)?e.slice(1):e},t.compareByOriginalPositions=function(e,t,n){var r=d(e.source,t.source);return 0!==r||0!=(r=e.originalLine-t.originalLine)||0!=(r=e.originalColumn-t.originalColumn)||n||0!=(r=e.generatedColumn-t.generatedColumn)||0!=(r=e.generatedLine-t.generatedLine)?r:d(e.name,t.name)},t.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r||0!=(r=e.generatedColumn-t.generatedColumn)||n||0!==(r=d(e.source,t.source))||0!=(r=e.originalLine-t.originalLine)||0!=(r=e.originalColumn-t.originalColumn)?r:d(e.name,t.name)},t.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n||0!=(n=e.generatedColumn-t.generatedColumn)||0!==(n=d(e.source,t.source))||0!=(n=e.originalLine-t.originalLine)||0!=(n=e.originalColumn-t.originalColumn)?n:d(e.name,t.name)},t.parseSourceMapInput=function(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))},t.computeSourceURL=function(e,t,n){if(t=t||"",e&&("/"!==e[e.length-1]&&"/"!==t[0]&&(e+="/"),t=e+t),n){var r=o(n);if(!r)throw new Error("sourceMapURL could not be parsed");if(r.path){var l=r.path.lastIndexOf("/");l>=0&&(r.path=r.path.substring(0,l+1))}t=s(a(r),t)}return i(t)}},4014:function(e,t,n){t.SourceMapGenerator=n(8530).SourceMapGenerator,t.SourceMapConsumer=n(5177).SourceMapConsumer,t.SourceNode=n(8570).SourceNode},4624:function(e,t,n){"use strict";e.exports=n(5627)},5627:function(e,t){"use strict";var n=function(e){if(!e.includes("grid"))return e;if("display:grid"===e)return"\n display: -ms-grid;\n display: grid;\n ";if("display:inline-grid"===e)return"\n display: -ms-inline-grid;\n display: inline-grid;\n ";var t=e.match(/^grid-([a-z-]+): *(.+)/);if(!t)return e;var n=t[1],r=t[2];return"template"===n?function(e,t){var n=t.split(/\s*\/\s*/),r=n[0],o=n[1],a=/repeat\((\d+), *(.+)\)/;return r&&o?"\n -ms-grid-rows: "+r.replace(a,"($2)[$1]")+";\n -ms-grid-columns: "+o.replace(a,"($2)[$1]")+";\n grid-"+e+": "+t+";\n ":e+": "+t+";"}(n,r):"template-rows"===n||"template-columns"===n?function(e,t){return"\n -ms-grid-"+e.split("-")[1]+": "+t.replace(/repeat\((\d+), *(.+)\)/,"($2)[$1]")+";\n grid-"+e+": "+t+";\n "}(n,r):"row"===n||"column"===n?function(e,t){var n=t.split(/\s*\/\s*/),r=n[0],o=n[1],a=null==o?void 0:o.match("span ");if(!r)return"\n -ms-grid-"+e+": "+t+";\n grid-"+e+": "+t+";\n ";if(r&&a)return"\n -ms-grid-"+e+": "+r+";\n -ms-grid-"+e+"-span: "+o.replace("span ","")+";\n grid-"+e+": "+t+";\n ";if(r&&!a){var i=parseInt(r);return"\n -ms-grid-"+e+": "+r+";\n -ms-grid-"+e+"-span: "+(parseInt(o)-i)+";\n grid-"+e+": "+t+";\n "}return"\n grid-"+e+": "+t+";\n "}(n,r):e},r=function(e,t){if(1===e||2===e)return Array.isArray(t)?t.forEach((function(e){return n(e)})):n(t)};Object.defineProperty(r,"name",{value:"griddie"}),t.default=r},7621:function(e,t,n){var r;!function(o){var a=/^\s+/,i=/\s+$/,s=0,l=o.round,c=o.min,u=o.max,d=o.random;function g(e,t){if(t=t||{},(e=e||"")instanceof g)return e;if(!(this instanceof g))return new g(e,t);var n=function(e){var t,n,r,s={r:0,g:0,b:0},l=1,d=null,g=null,p=null,f=!1,m=!1;return"string"==typeof e&&(e=function(e){e=e.replace(a,"").replace(i,"").toLowerCase();var t,n=!1;if(A[e])e=A[e],n=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=z.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=z.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=z.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=z.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=z.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=z.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=z.hex8.exec(e))?{r:j(t[1]),g:j(t[2]),b:j(t[3]),a:L(t[4]),format:n?"name":"hex8"}:(t=z.hex6.exec(e))?{r:j(t[1]),g:j(t[2]),b:j(t[3]),format:n?"name":"hex"}:(t=z.hex4.exec(e))?{r:j(t[1]+""+t[1]),g:j(t[2]+""+t[2]),b:j(t[3]+""+t[3]),a:L(t[4]+""+t[4]),format:n?"name":"hex8"}:!!(t=z.hex3.exec(e))&&{r:j(t[1]+""+t[1]),g:j(t[2]+""+t[2]),b:j(t[3]+""+t[3]),format:n?"name":"hex"}}(e)),"object"==typeof e&&(H(e.r)&&H(e.g)&&H(e.b)?(t=e.r,n=e.g,r=e.b,s={r:255*T(t,255),g:255*T(n,255),b:255*T(r,255)},f=!0,m="%"===String(e.r).substr(-1)?"prgb":"rgb"):H(e.h)&&H(e.s)&&H(e.v)?(d=F(e.s),g=F(e.v),s=function(e,t,n){e=6*T(e,360),t=T(t,100),n=T(n,100);var r=o.floor(e),a=e-r,i=n*(1-t),s=n*(1-a*t),l=n*(1-(1-a)*t),c=r%6;return{r:255*[n,s,i,i,l,n][c],g:255*[l,n,n,s,i,i][c],b:255*[i,i,l,n,n,s][c]}}(e.h,d,g),f=!0,m="hsv"):H(e.h)&&H(e.s)&&H(e.l)&&(d=F(e.s),p=F(e.l),s=function(e,t,n){var r,o,a;function i(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=T(e,360),t=T(t,100),n=T(n,100),0===t)r=o=a=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=i(l,s,e+1/3),o=i(l,s,e),a=i(l,s,e-1/3)}return{r:255*r,g:255*o,b:255*a}}(e.h,d,p),f=!0,m="hsl"),e.hasOwnProperty("a")&&(l=e.a)),l=R(l),{ok:f,format:e.format||m,r:c(255,u(s.r,0)),g:c(255,u(s.g,0)),b:c(255,u(s.b,0)),a:l}}(e);this._originalInput=e,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=l(100*this._a)/100,this._format=t.format||n.format,this._gradientType=t.gradientType,this._r<1&&(this._r=l(this._r)),this._g<1&&(this._g=l(this._g)),this._b<1&&(this._b=l(this._b)),this._ok=n.ok,this._tc_id=s++}function p(e,t,n){e=T(e,255),t=T(t,255),n=T(n,255);var r,o,a=u(e,t,n),i=c(e,t,n),s=(a+i)/2;if(a==i)r=o=0;else{var l=a-i;switch(o=s>.5?l/(2-a-i):l/(a+i),a){case e:r=(t-n)/l+(t<n?6:0);break;case t:r=(n-e)/l+2;break;case n:r=(e-t)/l+4}r/=6}return{h:r,s:o,l:s}}function f(e,t,n){e=T(e,255),t=T(t,255),n=T(n,255);var r,o,a=u(e,t,n),i=c(e,t,n),s=a,l=a-i;if(o=0===a?0:l/a,a==i)r=0;else{switch(a){case e:r=(t-n)/l+(t<n?6:0);break;case t:r=(n-e)/l+2;break;case n:r=(e-t)/l+4}r/=6}return{h:r,s:o,v:s}}function m(e,t,n,r){var o=[I(l(e).toString(16)),I(l(t).toString(16)),I(l(n).toString(16))];return r&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)?o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0):o.join("")}function h(e,t,n,r){return[I(D(r)),I(l(e).toString(16)),I(l(t).toString(16)),I(l(n).toString(16))].join("")}function y(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.s-=t/100,n.s=M(n.s),g(n)}function v(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.s+=t/100,n.s=M(n.s),g(n)}function b(e){return g(e).desaturate(100)}function _(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.l+=t/100,n.l=M(n.l),g(n)}function w(e,t){t=0===t?0:t||10;var n=g(e).toRgb();return n.r=u(0,c(255,n.r-l(-t/100*255))),n.g=u(0,c(255,n.g-l(-t/100*255))),n.b=u(0,c(255,n.b-l(-t/100*255))),g(n)}function E(e,t){t=0===t?0:t||10;var n=g(e).toHsl();return n.l-=t/100,n.l=M(n.l),g(n)}function $(e,t){var n=g(e).toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,g(n)}function C(e){var t=g(e).toHsl();return t.h=(t.h+180)%360,g(t)}function k(e){var t=g(e).toHsl(),n=t.h;return[g(e),g({h:(n+120)%360,s:t.s,l:t.l}),g({h:(n+240)%360,s:t.s,l:t.l})]}function S(e){var t=g(e).toHsl(),n=t.h;return[g(e),g({h:(n+90)%360,s:t.s,l:t.l}),g({h:(n+180)%360,s:t.s,l:t.l}),g({h:(n+270)%360,s:t.s,l:t.l})]}function x(e){var t=g(e).toHsl(),n=t.h;return[g(e),g({h:(n+72)%360,s:t.s,l:t.l}),g({h:(n+216)%360,s:t.s,l:t.l})]}function O(e,t,n){t=t||6,n=n||30;var r=g(e).toHsl(),o=360/n,a=[g(e)];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,a.push(g(r));return a}function P(e,t){t=t||6;for(var n=g(e).toHsv(),r=n.h,o=n.s,a=n.v,i=[],s=1/t;t--;)i.push(g({h:r,s:o,v:a})),a=(a+s)%1;return i}g.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r=this.toRgb();return e=r.r/255,t=r.g/255,n=r.b/255,.2126*(e<=.03928?e/12.92:o.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:o.pow((t+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:o.pow((n+.055)/1.055,2.4))},setAlpha:function(e){return this._a=R(e),this._roundA=l(100*this._a)/100,this},toHsv:function(){var e=f(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=f(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=p(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=p(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return m(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return function(e,t,n,r,o){var a=[I(l(e).toString(16)),I(l(t).toString(16)),I(l(n).toString(16)),I(D(r))];return o&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")}(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:l(this._r),g:l(this._g),b:l(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+l(this._r)+", "+l(this._g)+", "+l(this._b)+")":"rgba("+l(this._r)+", "+l(this._g)+", "+l(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:l(100*T(this._r,255))+"%",g:l(100*T(this._g,255))+"%",b:l(100*T(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+l(100*T(this._r,255))+"%, "+l(100*T(this._g,255))+"%, "+l(100*T(this._b,255))+"%)":"rgba("+l(100*T(this._r,255))+"%, "+l(100*T(this._g,255))+"%, "+l(100*T(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(N[m(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+h(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var o=g(e);n="#"+h(o._r,o._g,o._b,o._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0;return t||!r||"hex"!==e&&"hex6"!==e&&"hex3"!==e&&"hex4"!==e&&"hex8"!==e&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this._a?this.toName():this.toRgbString()},clone:function(){return g(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(_,arguments)},brighten:function(){return this._applyModification(w,arguments)},darken:function(){return this._applyModification(E,arguments)},desaturate:function(){return this._applyModification(y,arguments)},saturate:function(){return this._applyModification(v,arguments)},greyscale:function(){return this._applyModification(b,arguments)},spin:function(){return this._applyModification($,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(O,arguments)},complement:function(){return this._applyCombination(C,arguments)},monochromatic:function(){return this._applyCombination(P,arguments)},splitcomplement:function(){return this._applyCombination(x,arguments)},triad:function(){return this._applyCombination(k,arguments)},tetrad:function(){return this._applyCombination(S,arguments)}},g.fromRatio=function(e,t){if("object"==typeof e){var n={};for(var r in e)e.hasOwnProperty(r)&&(n[r]="a"===r?e[r]:F(e[r]));e=n}return g(e,t)},g.equals=function(e,t){return!(!e||!t)&&g(e).toRgbString()==g(t).toRgbString()},g.random=function(){return g.fromRatio({r:d(),g:d(),b:d()})},g.mix=function(e,t,n){n=0===n?0:n||50;var r=g(e).toRgb(),o=g(t).toRgb(),a=n/100;return g({r:(o.r-r.r)*a+r.r,g:(o.g-r.g)*a+r.g,b:(o.b-r.b)*a+r.b,a:(o.a-r.a)*a+r.a})},g.readability=function(e,t){var n=g(e),r=g(t);return(o.max(n.getLuminance(),r.getLuminance())+.05)/(o.min(n.getLuminance(),r.getLuminance())+.05)},g.isReadable=function(e,t,n){var r,o,a,i,s,l=g.readability(e,t);switch(o=!1,(a=n,"AA"!==(i=((a=a||{level:"AA",size:"small"}).level||"AA").toUpperCase())&&"AAA"!==i&&(i="AA"),"small"!==(s=(a.size||"small").toLowerCase())&&"large"!==s&&(s="small"),r={level:i,size:s}).level+r.size){case"AAsmall":case"AAAlarge":o=l>=4.5;break;case"AAlarge":o=l>=3;break;case"AAAsmall":o=l>=7}return o},g.mostReadable=function(e,t,n){var r,o,a,i,s=null,l=0;o=(n=n||{}).includeFallbackColors,a=n.level,i=n.size;for(var c=0;c<t.length;c++)(r=g.readability(e,t[c]))>l&&(l=r,s=g(t[c]));return g.isReadable(e,s,{level:a,size:i})||!o?s:(n.includeFallbackColors=!1,g.mostReadable(e,["#fff","#000"],n))};var A=g.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},N=g.hexNames=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}(A);function R(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function T(e,t){(function(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"==typeof e&&-1!=e.indexOf("%")}(e);return e=c(t,u(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),o.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function M(e){return c(1,u(0,e))}function j(e){return parseInt(e,16)}function I(e){return 1==e.length?"0"+e:""+e}function F(e){return e<=1&&(e=100*e+"%"),e}function D(e){return o.round(255*parseFloat(e)).toString(16)}function L(e){return j(e)/255}var G,B,q,z=(B="[\\s|\\(]+("+(G="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+G+")[,|\\s]+("+G+")\\s*\\)?",q="[\\s|\\(]+("+G+")[,|\\s]+("+G+")[,|\\s]+("+G+")[,|\\s]+("+G+")\\s*\\)?",{CSS_UNIT:new RegExp(G),rgb:new RegExp("rgb"+B),rgba:new RegExp("rgba"+q),hsl:new RegExp("hsl"+B),hsla:new RegExp("hsla"+q),hsv:new RegExp("hsv"+B),hsva:new RegExp("hsva"+q),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function H(e){return!!z.CSS_UNIT.exec(e)}e.exports?e.exports=g:void 0===(r=function(){return g}.call(t,n,t,e))||(e.exports=r)}(Math)},8026:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/components/account-card//5585d65b9d8c575e5a1f.gogole-g-logo.svg"},4515:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/components/account-card//25a37606f64ef10ff60e.wp-logo.svg"},8465:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/components/free-listings/configure-product-listings/hero//0cab27878b485c59ab37.google-free-listing.svg"},221:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/dashboard/campaign-creation-success-guide//c4325f35cdc65f85a7c1.header.svg"},4802:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/benefits-card//ff593be89bcb7ad1ab7e.image.png"},1704:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/customer-quotes-card//1ad852c48821e91bfd6e.img-quote.svg"},434:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/features-card//3905a197de7922d5b82a.img-dashboard.svg"},2454:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/features-card//563fd40c029bebb36783.img-free-listings.svg"},9648:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/features-card//c94ebde75361208ddf3a.img-product-promotion.svg"},4682:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/get-started-page/get-started-card//d7e2d04ea7d6535fecf8.image.svg"},5314:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/images//64742f6405be8486218c.google-logo.svg"},1393:function(e,t,n){"use strict";e.exports=n.p+"images/js/src/product-feed/submission-success-guide//9a968634c60ce598aae3.woocommerce-logo.svg"},9196:function(e){"use strict";e.exports=window.React},2819:function(e){"use strict";e.exports=window.lodash},6292:function(e){"use strict";e.exports=window.moment},5736:function(e){"use strict";e.exports=window.wp.i18n},683:function(){},1285:function(){},5580:function(){}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.exports}__webpack_require__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=function(e,t){for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;__webpack_require__.g.importScripts&&(e=__webpack_require__.g.location+"");var t=__webpack_require__.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");n.length&&(e=n[n.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),__webpack_require__.p=e}();var __webpack_exports__={};!function(){"use strict";var e={};__webpack_require__.r(e),__webpack_require__.d(e,{Text:function(){return bi},block:function(){return _i},destructive:function(){return Ei},highlighterText:function(){return Ci},muted:function(){return $i},positive:function(){return wi},upperCase:function(){return ki}});var t={};__webpack_require__.r(t),__webpack_require__.d(t,{createAdsCampaign:function(){return od},deleteAdsCampaign:function(){return id},deleteShippingRates:function(){return Nu},deleteShippingTimes:function(){return Mu},disconnectAllAccounts:function(){return Uu},disconnectGoogleAccount:function(){return zu},disconnectGoogleAdsAccount:function(){return Hu},fetchAdsCampaigns:function(){return rd},fetchExistingGoogleAdsAccounts:function(){return Wu},fetchExistingGoogleMCAccounts:function(){return Bu},fetchGoogleAccount:function(){return Du},fetchGoogleAdsAccount:function(){return qu},fetchGoogleAdsAccountBillingStatus:function(){return Vu},fetchGoogleMCAccount:function(){return Gu},fetchJetpackAccount:function(){return Fu},fetchMCSetup:function(){return ld},fetchSettings:function(){return ju},fetchShippingRates:function(){return Pu},fetchShippingTimes:function(){return Ru},fetchTargetAudience:function(){return Xu},handleFetchError:function(){return Ou},receiveAdsAccount:function(){return ed},receiveGoogleAccountAccess:function(){return Lu},receiveGoogleAdsAccountBillingStatus:function(){return td},receiveGoogleMCContactInformation:function(){return Yu},receiveMCAccount:function(){return Ju},receiveMCIssues:function(){return gd},receiveMCProductFeed:function(){return pd},receiveMCProductStatistics:function(){return ud},receiveMCReviewRequest:function(){return dd},receiveMCSetup:function(){return cd},receiveReport:function(){return sd},requestPhoneVerificationCode:function(){return Qu},saveSettings:function(){return Iu},saveTargetAudience:function(){return nd},sendMCReviewRequest:function(){return md},updateAdsCampaign:function(){return ad},updateGoogleMCContactInformation:function(){return Ku},updateMCProductVisibility:function(){return fd},upsertShippingRates:function(){return Au},upsertShippingTimes:function(){return Tu},verifyPhoneNumber:function(){return Zu}});var n={};__webpack_require__.r(n),__webpack_require__.d(n,{getAdsCampaigns:function(){return Vd},getDashboardPerformance:function(){return eg},getExistingGoogleAdsAccounts:function(){return Bd},getExistingGoogleMCAccounts:function(){return Dd},getGoogleAccount:function(){return jd},getGoogleAccountAccess:function(){return Id},getGoogleAdsAccount:function(){return Ld},getGoogleAdsAccountBillingStatus:function(){return Gd},getGoogleMCAccount:function(){return Fd},getGoogleMCContactInformation:function(){return qd},getGoogleMCPhoneNumber:function(){return zd},getJetpackAccount:function(){return Md},getMCCountriesAndContinents:function(){return Hd},getMCIssues:function(){return Qd},getMCProductFeed:function(){return Zd},getMCProductStatistics:function(){return Yd},getMCReviewRequest:function(){return Kd},getMCSetup:function(){return Wd},getReport:function(){return Jd},getReportByApiQuery:function(){return Xd},getSettings:function(){return Td},getShippingRates:function(){return Nd},getShippingTimes:function(){return Rd},getTargetAudience:function(){return Ud}});var r={};__webpack_require__.r(r),__webpack_require__.d(r,{getAdsCampaigns:function(){return hg},getExistingGoogleAdsAccounts:function(){return gg},getExistingGoogleMCAccounts:function(){return cg},getGoogleAccount:function(){return ig},getGoogleAccountAccess:function(){return sg},getGoogleAdsAccount:function(){return ug},getGoogleAdsAccountBillingStatus:function(){return dg},getGoogleMCAccount:function(){return lg},getGoogleMCContactInformation:function(){return pg},getJetpackAccount:function(){return ag},getMCCountriesAndContinents:function(){return fg},getMCIssues:function(){return _g},getMCProductFeed:function(){return wg},getMCProductStatistics:function(){return vg},getMCReviewRequest:function(){return bg},getMCSetup:function(){return yg},getReportByApiQuery:function(){return $g},getSettings:function(){return og},getShippingRates:function(){return ng},getShippingTimes:function(){return rg},getTargetAudience:function(){return mg}});var o=__webpack_require__(5736),a=window.wp.hooks,i=window.wc.wcSettings,s=window.wp.element;function l(){return l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},l.apply(this,arguments)}function c(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var u=__webpack_require__(4184),d=__webpack_require__.n(u),g=(0,s.createContext)({}),p=function(){return(0,s.useContext)(g)};function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var m=__webpack_require__(9196),h=__webpack_require__.n(m),y=function(e){var t={};return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}},v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|inert|itemProp|itemScope|itemType|itemID|itemRef|on|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,b=y((function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}));function _(e,t){return _=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},_(e,t)}var w=function(){function e(e){this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.before=null}var t=e.prototype;return t.insert=function(e){if(this.ctr%(this.isSpeedy?65e3:1)==0){var t,n=function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t}(this);t=0===this.tags.length?this.before:this.tags[this.tags.length-1].nextSibling,this.container.insertBefore(n,t),this.tags.push(n)}var r=this.tags[this.tags.length-1];if(this.isSpeedy){var o=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(r);try{var a=105===e.charCodeAt(1)&&64===e.charCodeAt(0);o.insertRule(e,a?0:o.cssRules.length)}catch(e){}}else r.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){return e.parentNode.removeChild(e)})),this.tags=[],this.ctr=0},e}(),E=function(e){function t(e,r,l,c,g){for(var p,f,m,h,_,E=0,$=0,C=0,k=0,S=0,R=0,M=m=p=0,I=0,F=0,D=0,L=0,G=l.length,B=G-1,q="",z="",H="",U="";I<G;){if(f=l.charCodeAt(I),I===B&&0!==$+k+C+E&&(0!==$&&(f=47===$?10:47),k=C=E=0,G++,B++),0===$+k+C+E){if(I===B&&(0<F&&(q=q.replace(d,"")),0<q.trim().length)){switch(f){case 32:case 9:case 59:case 13:case 10:break;default:q+=l.charAt(I)}f=59}switch(f){case 123:for(p=(q=q.trim()).charCodeAt(0),m=1,L=++I;I<G;){switch(f=l.charCodeAt(I)){case 123:m++;break;case 125:m--;break;case 47:switch(f=l.charCodeAt(I+1)){case 42:case 47:e:{for(M=I+1;M<B;++M)switch(l.charCodeAt(M)){case 47:if(42===f&&42===l.charCodeAt(M-1)&&I+2!==M){I=M+1;break e}break;case 10:if(47===f){I=M+1;break e}}I=M}}break;case 91:f++;case 40:f++;case 34:case 39:for(;I++<B&&l.charCodeAt(I)!==f;);}if(0===m)break;I++}if(m=l.substring(L,I),0===p&&(p=(q=q.replace(u,"").trim()).charCodeAt(0)),64===p){switch(0<F&&(q=q.replace(d,"")),f=q.charCodeAt(1)){case 100:case 109:case 115:case 45:F=r;break;default:F=N}if(L=(m=t(r,F,m,f,g+1)).length,0<T&&(_=s(3,m,F=n(N,q,D),r,O,x,L,f,g,c),q=F.join(""),void 0!==_&&0===(L=(m=_.trim()).length)&&(f=0,m="")),0<L)switch(f){case 115:q=q.replace(w,i);case 100:case 109:case 45:m=q+"{"+m+"}";break;case 107:m=(q=q.replace(y,"$1 $2"))+"{"+m+"}",m=1===A||2===A&&a("@"+m,3)?"@-webkit-"+m+"@"+m:"@"+m;break;default:m=q+m,112===c&&(z+=m,m="")}else m=""}else m=t(r,n(r,q,D),m,c,g+1);H+=m,m=D=F=M=p=0,q="",f=l.charCodeAt(++I);break;case 125:case 59:if(1<(L=(q=(0<F?q.replace(d,""):q).trim()).length))switch(0===M&&(p=q.charCodeAt(0),45===p||96<p&&123>p)&&(L=(q=q.replace(" ",":")).length),0<T&&void 0!==(_=s(1,q,r,e,O,x,z.length,c,g,c))&&0===(L=(q=_.trim()).length)&&(q="\0\0"),p=q.charCodeAt(0),f=q.charCodeAt(1),p){case 0:break;case 64:if(105===f||99===f){U+=q+l.charAt(I);break}default:58!==q.charCodeAt(L-1)&&(z+=o(q,p,f,q.charCodeAt(2)))}D=F=M=p=0,q="",f=l.charCodeAt(++I)}}switch(f){case 13:case 10:47===$?$=0:0===1+p&&107!==c&&0<q.length&&(F=1,q+="\0"),0<T*j&&s(0,q,r,e,O,x,z.length,c,g,c),x=1,O++;break;case 59:case 125:if(0===$+k+C+E){x++;break}default:switch(x++,h=l.charAt(I),f){case 9:case 32:if(0===k+E+$)switch(S){case 44:case 58:case 9:case 32:h="";break;default:32!==f&&(h=" ")}break;case 0:h="\\0";break;case 12:h="\\f";break;case 11:h="\\v";break;case 38:0===k+$+E&&(F=D=1,h="\f"+h);break;case 108:if(0===k+$+E+P&&0<M)switch(I-M){case 2:112===S&&58===l.charCodeAt(I-3)&&(P=S);case 8:111===R&&(P=R)}break;case 58:0===k+$+E&&(M=I);break;case 44:0===$+C+k+E&&(F=1,h+="\r");break;case 34:case 39:0===$&&(k=k===f?0:0===k?f:k);break;case 91:0===k+$+C&&E++;break;case 93:0===k+$+C&&E--;break;case 41:0===k+$+E&&C--;break;case 40:0===k+$+E&&(0===p&&(2*S+3*R==533||(p=1)),C++);break;case 64:0===$+C+k+E+M+m&&(m=1);break;case 42:case 47:if(!(0<k+E+C))switch($){case 0:switch(2*f+3*l.charCodeAt(I+1)){case 235:$=47;break;case 220:L=I,$=42}break;case 42:47===f&&42===S&&L+2!==I&&(33===l.charCodeAt(L+2)&&(z+=l.substring(L,I+1)),h="",$=0)}}0===$&&(q+=h)}R=S,S=f,I++}if(0<(L=z.length)){if(F=r,0<T&&void 0!==(_=s(2,z,F,e,O,x,L,c,g,c))&&0===(z=_).length)return U+z+H;if(z=F.join(",")+"{"+z+"}",0!=A*P){switch(2!==A||a(z,2)||(P=0),P){case 111:z=z.replace(b,":-moz-$1")+z;break;case 112:z=z.replace(v,"::-webkit-input-$1")+z.replace(v,"::-moz-$1")+z.replace(v,":-ms-input-$1")+z}P=0}}return U+z+H}function n(e,t,n){var o=t.trim().split(m);t=o;var a=o.length,i=e.length;switch(i){case 0:case 1:var s=0;for(e=0===i?"":e[0]+" ";s<a;++s)t[s]=r(e,t[s],n).trim();break;default:var l=s=0;for(t=[];s<a;++s)for(var c=0;c<i;++c)t[l++]=r(e[c]+" ",o[s],n).trim()}return t}function r(e,t,n){var r=t.charCodeAt(0);switch(33>r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(h,"$1"+e.trim());case 58:return e.trim()+t.replace(h,"$1"+e.trim());default:if(0<1*n&&0<t.indexOf("\f"))return t.replace(h,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,n,r){var i=e+";",s=2*t+3*n+4*r;if(944===s){e=i.indexOf(":",9)+1;var l=i.substring(e,i.length-1).trim();return l=i.substring(0,e).trim()+l+";",1===A||2===A&&a(l,1)?"-webkit-"+l+l:l}if(0===A||2===A&&!a(i,1))return i;switch(s){case 1015:return 97===i.charCodeAt(10)?"-webkit-"+i+i:i;case 951:return 116===i.charCodeAt(3)?"-webkit-"+i+i:i;case 963:return 110===i.charCodeAt(5)?"-webkit-"+i+i:i;case 1009:if(100!==i.charCodeAt(4))break;case 969:case 942:return"-webkit-"+i+i;case 978:return"-webkit-"+i+"-moz-"+i+i;case 1019:case 983:return"-webkit-"+i+"-moz-"+i+"-ms-"+i+i;case 883:if(45===i.charCodeAt(8))return"-webkit-"+i+i;if(0<i.indexOf("image-set(",11))return i.replace(S,"$1-webkit-$2")+i;break;case 932:if(45===i.charCodeAt(4))switch(i.charCodeAt(5)){case 103:return"-webkit-box-"+i.replace("-grow","")+"-webkit-"+i+"-ms-"+i.replace("grow","positive")+i;case 115:return"-webkit-"+i+"-ms-"+i.replace("shrink","negative")+i;case 98:return"-webkit-"+i+"-ms-"+i.replace("basis","preferred-size")+i}return"-webkit-"+i+"-ms-"+i+i;case 964:return"-webkit-"+i+"-ms-flex-"+i+i;case 1023:if(99!==i.charCodeAt(8))break;return"-webkit-box-pack"+(l=i.substring(i.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+i+"-ms-flex-pack"+l+i;case 1005:return p.test(i)?i.replace(g,":-webkit-")+i.replace(g,":-moz-")+i:i;case 1e3:switch(t=(l=i.substring(13).trim()).indexOf("-")+1,l.charCodeAt(0)+l.charCodeAt(t)){case 226:l=i.replace(_,"tb");break;case 232:l=i.replace(_,"tb-rl");break;case 220:l=i.replace(_,"lr");break;default:return i}return"-webkit-"+i+"-ms-"+l+i;case 1017:if(-1===i.indexOf("sticky",9))break;case 975:switch(t=(i=e).length-10,s=(l=(33===i.charCodeAt(t)?i.substring(0,t):i).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|l.charCodeAt(7))){case 203:if(111>l.charCodeAt(8))break;case 115:i=i.replace(l,"-webkit-"+l)+";"+i;break;case 207:case 102:i=i.replace(l,"-webkit-"+(102<s?"inline-":"")+"box")+";"+i.replace(l,"-webkit-"+l)+";"+i.replace(l,"-ms-"+l+"box")+";"+i}return i+";";case 938:if(45===i.charCodeAt(5))switch(i.charCodeAt(6)){case 105:return l=i.replace("-items",""),"-webkit-"+i+"-webkit-box-"+l+"-ms-flex-"+l+i;case 115:return"-webkit-"+i+"-ms-flex-item-"+i.replace($,"")+i;default:return"-webkit-"+i+"-ms-flex-line-pack"+i.replace("align-content","").replace($,"")+i}break;case 973:case 989:if(45!==i.charCodeAt(3)||122===i.charCodeAt(4))break;case 931:case 953:if(!0===k.test(e))return 115===(l=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,n,r).replace(":fill-available",":stretch"):i.replace(l,"-webkit-"+l)+i.replace(l,"-moz-"+l.replace("fill-",""))+i;break;case 962:if(i="-webkit-"+i+(102===i.charCodeAt(5)?"-ms-"+i:"")+i,211===n+r&&105===i.charCodeAt(13)&&0<i.indexOf("transform",10))return i.substring(0,i.indexOf(";",27)+1).replace(f,"$1-webkit-$2")+i}return i}function a(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10);return n=e.substring(n+1,e.length-1),M(2!==t?r:r.replace(C,"$1"),n,t)}function i(e,t){var n=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(E," or ($1)").substring(4):"("+t+")"}function s(e,t,n,r,o,a,i,s,l,u){for(var d,g=0,p=t;g<T;++g)switch(d=R[g].call(c,e,p,n,r,o,a,i,s,l,u)){case void 0:case!1:case!0:case null:break;default:p=d}if(p!==t)return p}function l(e){return void 0!==(e=e.prefix)&&(M=null,e?"function"!=typeof e?A=1:(A=2,M=e):A=0),l}function c(e,n){var r=e;if(33>r.charCodeAt(0)&&(r=r.trim()),r=[r],0<T){var o=s(-1,n,r,r,O,x,0,0,0,0);void 0!==o&&"string"==typeof o&&(n=o)}var a=t(N,r,n,0,0);return 0<T&&void 0!==(o=s(-2,a,r,r,O,x,a.length,0,0,0))&&(a=o),P=0,x=O=1,a}var u=/^\0+/g,d=/[\0\r\f]/g,g=/: */g,p=/zoo|gra/,f=/([,: ])(transform)/g,m=/,\r+?/g,h=/([\t\r\n ])*\f?&/g,y=/@(k\w+)\s*(\S*)\s*/,v=/::(place)/g,b=/:(read-only)/g,_=/[svh]\w+-[tblr]{2}/,w=/\(\s*(.*)\s*\)/g,E=/([\s\S]*?);/g,$=/-self|flex-/g,C=/[^]*?(:[rp][el]a[\w-]+)[^]*/,k=/stretch|:\s*\w+\-(?:conte|avail)/,S=/([^-])(image-set\()/,x=1,O=1,P=0,A=1,N=[],R=[],T=0,M=null,j=0;return c.use=function e(t){switch(t){case void 0:case null:T=R.length=0;break;default:if("function"==typeof t)R[T++]=t;else if("object"==typeof t)for(var n=0,r=t.length;n<r;++n)e(t[n]);else j=0|!!t}return e},c.set=l,void 0!==e&&l(e),c},$="/*|*/";function C(e){e&&k.current.insert(e+"}")}var k={current:null},S=function(e,t,n,r,o,a,i,s,l,c){switch(e){case 1:switch(t.charCodeAt(0)){case 64:return k.current.insert(t+";"),"";case 108:if(98===t.charCodeAt(2))return""}break;case 2:if(0===s)return t+$;break;case 3:switch(s){case 102:case 112:return k.current.insert(n[0]+t),"";default:return t+(0===c?$:"")}case-2:t.split("/*|*/}").forEach(C)}},x=function(e){void 0===e&&(e={});var t,n=e.key||"css";void 0!==e.prefix&&(t={prefix:e.prefix});var r,o=new E(t),a={};r=e.container||document.head;var i,s=document.querySelectorAll("style[data-emotion-"+n+"]");Array.prototype.forEach.call(s,(function(e){e.getAttribute("data-emotion-"+n).split(" ").forEach((function(e){a[e]=!0})),e.parentNode!==r&&r.appendChild(e)})),o.use(e.stylisPlugins)(S),i=function(e,t,n,r){var a=t.name;k.current=n,o(e,t.styles),r&&(l.inserted[a]=!0)};var l={key:n,sheet:new w({key:n,container:r,nonce:e.nonce,speedy:e.speedy}),nonce:e.nonce,inserted:a,registered:{},insert:i};return l},O=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)},P={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},A=/[A-Z]|^ms/g,N=/_EMO_([^_]+?)_([^]*?)_EMO_/g,R=function(e){return 45===e.charCodeAt(1)},T=function(e){return null!=e&&"boolean"!=typeof e},M=y((function(e){return R(e)?e:e.replace(A,"-$&").toLowerCase()})),j=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(N,(function(e,t,n){return F={name:t,styles:n,next:F},t}))}return 1===P[e]||R(e)||"number"!=typeof t||0===t?t:t+"px"};function I(e,t,n,r){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return F={name:n.name,styles:n.styles,next:F},n.name;if(void 0!==n.styles){var o=n.next;if(void 0!==o)for(;void 0!==o;)F={name:o.name,styles:o.styles,next:F},o=o.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o<n.length;o++)r+=I(e,t,n[o],!1);else for(var a in n){var i=n[a];if("object"!=typeof i)null!=t&&void 0!==t[i]?r+=a+"{"+t[i]+"}":T(i)&&(r+=M(a)+":"+j(a,i)+";");else if(!Array.isArray(i)||"string"!=typeof i[0]||null!=t&&void 0!==t[i[0]]){var s=I(e,t,i,!1);switch(a){case"animation":case"animationName":r+=M(a)+":"+s+";";break;default:r+=a+"{"+s+"}"}}else for(var l=0;l<i.length;l++)T(i[l])&&(r+=M(a)+":"+j(a,i[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var a=F,i=n(e);return F=a,I(e,t,i,r)}}if(null==t)return n;var s=t[n];return void 0===s||r?n:s}var F,D=/label:\s*([^\s;\n{]+)\s*;/g,L=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var r=!0,o="";F=void 0;var a=e[0];null==a||void 0===a.raw?(r=!1,o+=I(n,t,a,!1)):o+=a[0];for(var i=1;i<e.length;i++)o+=I(n,t,e[i],46===o.charCodeAt(o.length-1)),r&&(o+=a[i]);D.lastIndex=0;for(var s,l="";null!==(s=D.exec(o));)l+="-"+s[1];return{name:O(o)+l,styles:o,next:F}},G=(Object.prototype.hasOwnProperty,(0,m.createContext)("undefined"!=typeof HTMLElement?x():null)),B=(0,m.createContext)({}),q=(G.Provider,function(e){var t=function(t,n){return(0,m.createElement)(G.Consumer,null,(function(r){return e(t,r,n)}))};return(0,m.forwardRef)(t)});function z(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]):r+=n+" "})),r}var H=function(e,t,n){var r=e.key+"-"+t.name;if(!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles),void 0===e.inserted[t.name]){var o=t;do{e.insert("."+r,o,e.sheet,!0),o=o.next}while(void 0!==o)}},U=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return L(t)},V=(m.Component,function e(t){for(var n=t.length,r=0,o="";r<n;r++){var a=t[r];if(null!=a){var i=void 0;switch(typeof a){case"boolean":break;case"object":if(Array.isArray(a))i=e(a);else for(var s in i="",a)a[s]&&s&&(i&&(i+=" "),i+=s);break;default:i=a}i&&(o&&(o+=" "),o+=i)}}return o});function W(e,t,n){var r=[],o=z(e,r,n);return r.length<2?n:o+t(r)}q((function(e,t){return(0,m.createElement)(B.Consumer,null,(function(n){var r=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered);return H(t,o,!1),t.key+"-"+o.name},o={css:r,cx:function(){for(var e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];return W(t.registered,r,V(n))},theme:n};return e.children(o)}))}));var Y=b,K=function(e){return"theme"!==e&&"innerRef"!==e},Q=function(e){return"string"==typeof e&&e.charCodeAt(0)>96?Y:K};function Z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function X(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Z(n,!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Z(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var J=function e(t,n){var r,o,a;void 0!==n&&(r=n.label,a=n.target,o=t.__emotion_forwardProp&&n.shouldForwardProp?function(e){return t.__emotion_forwardProp(e)&&n.shouldForwardProp(e)}:n.shouldForwardProp);var i=t.__emotion_real===t,s=i&&t.__emotion_base||t;"function"!=typeof o&&i&&(o=t.__emotion_forwardProp);var l=o||Q(s),c=!l("as");return function(){var u=arguments,d=i&&void 0!==t.__emotion_styles?t.__emotion_styles.slice(0):[];if(void 0!==r&&d.push("label:"+r+";"),null==u[0]||void 0===u[0].raw)d.push.apply(d,u);else{d.push(u[0][0]);for(var g=u.length,p=1;p<g;p++)d.push(u[p],u[0][p])}var f=q((function(e,t,n){return(0,m.createElement)(B.Consumer,null,(function(r){var i=c&&e.as||s,u="",g=[],p=e;if(null==e.theme){for(var f in p={},e)p[f]=e[f];p.theme=r}"string"==typeof e.className?u=z(t.registered,g,e.className):null!=e.className&&(u=e.className+" ");var h=L(d.concat(g),t.registered,p);H(t,h,"string"==typeof i),u+=t.key+"-"+h.name,void 0!==a&&(u+=" "+a);var y=c&&void 0===o?Q(i):l,v={};for(var b in e)c&&"as"===b||y(b)&&(v[b]=e[b]);return v.className=u,v.ref=n||e.innerRef,(0,m.createElement)(i,v)}))}));return f.displayName=void 0!==r?r:"Styled("+("string"==typeof s?s:s.displayName||s.name||"Component")+")",f.defaultProps=t.defaultProps,f.__emotion_real=f,f.__emotion_base=s,f.__emotion_styles=d,f.__emotion_forwardProp=o,Object.defineProperty(f,"toString",{value:function(){return"."+a}}),f.withComponent=function(t,r){return e(t,void 0!==r?X({},n||{},{},r):n).apply(void 0,d)},f}},ee={name:"8kj89b",styles:"flex-direction:row-reverse;"},te=J("div",{target:"eboqfv50",label:"Flex"})("box-sizing:border-box;display:flex;width:100%;",(function(e){var t=e.align;return U({alignItems:{top:"flex-start",bottom:"flex-end"}[t]||t},"")})," ",(function(e){var t=e.justify,n=e.isReversed,r={left:"flex-start",right:"flex-end"},o=r[t]||t;return n&&r[t]&&(o="left"===t?r.right:r.left),U({justifyContent:o},"")})," ",(function(e){var t=e.gap,n=e.isReversed,r="number"==typeof t?4*t:4,o="margin-".concat(n?"left":"right");return U("> *{",o,":",r,"px;&:last-child{",o,":0;}}")})," ",(function(e){return e.isReversed?ee:""}),""),ne=J("div",{target:"eboqfv51",label:"Item"})({name:"13luw5d",styles:"box-sizing:border-box;min-width:0;max-width:100%;"}),re=J(ne,{target:"eboqfv52",label:"Block"})({name:"1rr4qq7",styles:"flex:1;"}),oe=(0,s.forwardRef)((function(e,t){var n=e.align,r=void 0===n?"center":n,o=e.className,a=e.gap,i=void 0===a?2:a,u=e.justify,g=void 0===u?"space-between":u,p=e.isReversed,f=void 0!==p&&p,m=c(e,["align","className","gap","justify","isReversed"]),h=d()("components-flex",o);return(0,s.createElement)(te,l({},m,{align:r,className:h,ref:t,gap:i,justify:g,isReversed:f}))})),ae=oe,ie=__webpack_require__(2819),se=__webpack_require__(7621),le=__webpack_require__.n(se);function ce(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ue(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ce(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ce(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var de={black:"#000",white:"#fff"},ge={blue:{medium:{focus:"#007cba",focusDark:"#fff"}},gray:{900:"#1e1e1e",700:"#757575",600:"#949494",400:"#ccc",200:"#ddd",100:"#f0f0f0"},darkGray:{primary:"#1e1e1e"},mediumGray:{text:"#757575"},lightGray:{ui:"#949494",secondary:"#ccc",tertiary:"#e7e8e9"}},pe={900:"#191e23",800:"#23282d",700:"#32373c",600:"#40464d",500:"#555d66",400:"#606a73",300:"#6c7781",200:"#7e8993",150:"#8d96a0",100:"#8f98a1",placeholder:Ee(ge.gray[900],.62)},fe={900:Ee("#000510",.9),800:Ee("#00000a",.85),700:Ee("#06060b",.8),600:Ee("#000913",.75),500:Ee("#0a1829",.7),400:Ee("#0a1829",.65),300:Ee("#0e1c2e",.62),200:Ee("#162435",.55),100:Ee("#223443",.5),backgroundFill:Ee(pe[700],.7)},me={900:Ee("#304455",.45),800:Ee("#425863",.4),700:Ee("#667886",.35),600:Ee("#7b86a2",.3),500:Ee("#9197a2",.25),400:Ee("#95959c",.2),300:Ee("#829493",.15),200:Ee("#8b8b96",.1),100:Ee("#747474",.05)},he={900:"#a2aab2",800:"#b5bcc2",700:"#ccd0d4",600:"#d7dade",500:"#e2e4e7",400:"#e8eaeb",300:"#edeff0",200:"#f3f4f5",100:"#f8f9f9",placeholder:Ee(de.white,.65)},ye={900:Ee(de.white,.5),800:Ee(de.white,.45),700:Ee(de.white,.4),600:Ee(de.white,.35),500:Ee(de.white,.3),400:Ee(de.white,.25),300:Ee(de.white,.2),200:Ee(de.white,.15),100:Ee(de.white,.1),backgroundFill:Ee(he[300],.8)},ve={wordpress:{700:"#00669b"},dark:{900:"#0071a1"},medium:{900:"#006589",800:"#00739c",700:"#007fac",600:"#008dbe",500:"#00a0d2",400:"#33b3db",300:"#66c6e4",200:"#bfe7f3",100:"#e5f5fa",highlight:"#b3e7fe",focus:"#007cba"}},be={theme:"var( --wp-admin-theme-color, ".concat(ve.wordpress[700],")"),themeDark10:"var( --wp-admin-theme-color-darker-10, ".concat(ve.medium.focus,")")},_e={theme:be.theme,background:de.white,backgroundDisabled:he[200],border:ge.gray[700],borderFocus:be.themeDark10,borderDisabled:ge.gray[400],borderLight:ge.gray[200],label:pe[500],textDisabled:pe[150],textDark:de.white,textLight:de.black},we=ue(ue({},de),{},{darkGray:(0,ie.merge)({},pe,ge.darkGray),darkOpacity:fe,darkOpacityLight:me,mediumGray:ge.mediumGray,gray:ge.gray,lightGray:(0,ie.merge)({},he,ge.lightGray),lightGrayLight:ye,blue:(0,ie.merge)({},ve,ge.blue),alert:{yellow:"#f0b849",red:"#d94f4f",green:"#4ab866"},admin:be,ui:_e});function Ee(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=le()(e).toRgb(),r=n.r,o=n.g,a=n.b;return"rgba(".concat(r,", ").concat(o,", ").concat(a,", ").concat(t,")")}function $e(e){return(0,ie.get)(we,e,"#000")}function Ce(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;return isNaN(e)?"".concat(8,"px"):"".concat(8*e,"px")}var ke={borderColor:$e("lightGray.500"),borderRadius:"3px",backgroundShady:$e("lightGray.200")},Se=ke.borderColor,xe=ke.borderRadius,Oe=ke.backgroundShady,Pe=J("div",{target:"e1q7k77g0",label:"CardUI"})("background:",$e("white"),";box-sizing:border-box;border-radius:",xe,";border:1px solid ",Se,";",je,";&.is-elevated{box-shadow:0px 1px 3px 0px rgba( 0,0,0,0.2 ),0px 1px 1px 0px rgba( 0,0,0,0.14 ),0px 2px 1px -1px rgba( 0,0,0,0.12 );}"),Ae=J(ae,{target:"e1q7k77g1",label:"HeaderUI"})("border-bottom:1px solid ",Se,";border-top-left-radius:",xe,";border-top-right-radius:",xe,";box-sizing:border-box;&:last-child{border-bottom:none;}",Me,";",je,";",Ie,";"),Ne=(J("div",{target:"e1q7k77g2",label:"MediaUI"})("box-sizing:border-box;overflow:hidden;& > img,& > iframe{display:block;height:auto;max-width:100%;width:100%;}&:first-of-type{border-top-left-radius:",xe,";border-top-right-radius:",xe,";}&:last-of-type{border-bottom-left-radius:",xe,";border-bottom-right-radius:",xe,";}"),J("div",{target:"e1q7k77g3",label:"BodyUI"})("box-sizing:border-box;",(function(){return"\n\t\t&.is-size {\n\t\t\t&-large {\n\t\t\t\tpadding: ".concat(Ce(3)," ").concat(Ce(4),";\n\t\t\t}\n\t\t\t&-medium {\n\t\t\t\tpadding: ").concat(Ce(2)," ").concat(Ce(3),";\n\t\t\t}\n\t\t\t&-small {\n\t\t\t\tpadding: ").concat(Ce(2),";\n\t\t\t}\n\t\t\t&-extraSmall {\n\t\t\t\tpadding: ").concat(Ce(1),";\n\t\t\t}\n\t\t}\n\t")}),";",Ie,";")),Re=J(ae,{target:"e1q7k77g4",label:"FooterUI"})("border-top:1px solid ",Se,";border-bottom-left-radius:",xe,";border-bottom-right-radius:",xe,";box-sizing:border-box;&:first-of-type{border-top:none;}",Me,";",je,";",Ie,";"),Te=J("hr",{target:"e1q7k77g5",label:"DividerUI"})("all:unset;border-top:1px solid ",Se,";box-sizing:border-box;display:block;height:0;width:100%;");function Me(){return"\n\t\t&.is-size {\n\t\t\t&-large {\n\t\t\t\tpadding: ".concat(Ce(3)," ").concat(Ce(4),";\n\t\t\t}\n\t\t\t&-medium {\n\t\t\t\tpadding: ").concat(Ce(2)," ").concat(Ce(3),";\n\t\t\t}\n\t\t\t&-small {\n\t\t\t\tpadding: ").concat(Ce(2),";\n\t\t\t}\n\t\t\t&-extraSmall {\n\t\t\t\tpadding: ").concat(Ce(1),";\n\t\t\t}\n\t\t}\n\t")}function je(){return"\n\t\t&.is-borderless {\n\t\t\tborder: none;\n\t\t}\n\t"}function Ie(){return"\n\t\t&.is-shady {\n\t\t\tbackground: ".concat(Oe,";\n\t\t}\n\t")}function Fe(e){var t=e.className,n=e.isBorderless,r=e.isElevated,o=e.size,a=c(e,["className","isBorderless","isElevated","size"]),i=g.Provider,u={isBorderless:n,isElevated:r,size:o},p=d()("components-card",n&&"is-borderless",r&&"is-elevated",o&&"is-size-".concat(o),t);return(0,s.createElement)(i,{value:u},(0,s.createElement)(Pe,l({},a,{className:p})))}Fe.defaultProps={isBorderless:!1,isElevated:!1,size:"medium"};var De=Fe;function Le(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ge(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Le(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Be={isShady:!1,size:"medium"},qe=function(e){var t=e.className,n=e.isShady,r=c(e,["className","isShady"]),o=Ge(Ge(Ge({},Be),p()),e).size,a=d()("components-card__body",n&&"is-shady",o&&"is-size-".concat(o),t);return(0,s.createElement)(Ne,l({},r,{className:a}))},ze=(0,s.forwardRef)((function(e,t){var n=e.className,r=c(e,["className"]),o=d()("components-flex__item",n);return(0,s.createElement)(ne,l({},r,{className:o,ref:t}))}));function He(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}var Ue=U;function Ve(){var e=He(["\n\t","\n\t","\n"]);return Ve=function(){return e},e}function We(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return We=function(){return e},e}function Ye(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Ye=function(){return e},e}function Ke(){var e=He(["\n\t\t\t\t","\n\t\t\t"]);return Ke=function(){return e},e}function Qe(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Qe=function(){return e},e}function Ze(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Ze=function(){return e},e}function Xe(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Xe=function(){return e},e}function Je(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return Je=function(){return e},e}function et(){var e=He(["\n\t\t\t\t","\n\t\t\t\t","\n\t\t\t"]);return et=function(){return e},e}var tt="font-weight: 400;",nt="font-weight: 600;",rt="\n ".concat(tt,"\n"),ot="\n\tfont-size: 32px;\n\tline-height: 40px;\n",at="\n\tfont-size: 24px;\n\tline-height: 32px;\n",it="\n\tfont-size: 20px;\n\tline-height: 28px;\n",st="\n\t".concat(nt,"\n\tfont-size: 14px;\n\tline-height: 20px;\n"),lt="\n\tfont-size: 16px;\n\tline-height: 24px;\n",ct="\n\tfont-size: 14px;\n\tline-height: 20px;\n",ut="\n\t".concat(tt,"\n"),dt="\n\tfont-size: 16px;\n\tline-height: 24px;\n",gt="\n\tfont-size: 14px;\n\tline-height: 20px;\n",pt="\n ".concat(nt,"\n font-size: 14px;\n line-height: 20px;\n"),ft="\n\t".concat(tt,"\n\tfont-size: 12px;\n\tline-height: 16px;\n"),mt="\n\t".concat(nt,"\n\tfont-size: 12px;\n\tline-height: 16px;\n"),ht="\n\t".concat("font-weight: 500;","\n\tfont-size: 11px;\n\tline-height: 1.4;\n\ttext-transform: uppercase;\n\tcolor: ").concat(ge.gray[700],"\n"),yt=function(e){return Ue(Ve(),'font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,\nOxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;',function(){switch(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"body"){case"title.large":return Ue(et(),rt,ot);case"title.medium":return Ue(Je(),rt,at);case"title.small":return Ue(Xe(),rt,it);case"subtitle":return Ue(Ze(),st,lt);case"subtitle.small":return Ue(Qe(),st,ct);case"body":return Ue(Ke(),ut);case"body.large":return Ue(Ye(),ut,dt);case"body.small":return Ue(We(),ut,gt);case"button":return pt;case"caption":return ft;case"label":return mt;case"sectionheading":return ht}}(e.variant))};function vt(e){if(Array.isArray(e))return e}function bt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function _t(e,t){if(e){if("string"==typeof e)return bt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?bt(e,t):void 0}}function wt(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Et(e,t){return vt(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],_n=!0,i=!1;try{for(n=n.call(e);!(_n=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);_n=!0);}catch(e){i=!0,o=e}finally{try{_n||null==n.return||n.return()}finally{if(i)throw o}}return a}}(e,t)||_t(e,t)||wt()}var $t=ie.isArray,Ct=ie.isBoolean,kt=ie.isDate,St=ie.isEmpty,xt=ie.isFunction,Ot=ie.isMap,Pt=ie.isNaN,At=ie.isNil,Nt=ie.isNull,Rt=ie.isNumber,Tt=ie.isObject,Mt=ie.isObjectLike,jt=ie.isPlainObject,It=ie.isRegExp,Ft=ie.isSet,Dt=ie.isString,Lt=ie.isSymbol,Gt=ie.isUndefined,Bt=ie.isWeakMap,qt=ie.isWeakSet,zt={blob:function(e){return e instanceof Blob},defined:function(e){return!At(e)},file:function(e){return e instanceof File},numeric:function(e){var t="string"==typeof e?e.replace(/,/g,""):e;return!Pt(parseFloat(t))&&!Pt(Number(t))&&isFinite(t)&&"[object array]"!==Object.prototype.toString.call(t).toLowerCase()},numericZero:function(e){return 0===e||"0"===e},valueEmpty:function(e){return!zt.defined(e)||""===e},objectInterpolation:function(e){return jt(e)},array:$t,boolean:Ct,date:kt,empty:St,function:xt,map:Ot,nan:Pt,nil:At,number:Rt,null:Nt,object:Tt,objectLike:Mt,plainObject:jt,regExp:It,set:Ft,string:Dt,symbol:Lt,undefined:Gt,weakSet:qt,weakMap:Bt},Ht="data-system-ui-color-blind-mode",Ut='[data-system-ui-mode="dark"]',Vt='[data-system-ui-contrast-mode="high"]',Wt="["+Ht+'="true"]',Yt=""+Ut+Vt,Kt={baseStyles:{},config:{},darkModeConfig:{},highContrastModeConfig:{},darkHighContrastModeConfig:{},compilerOptions:void 0};function Qt(e){return"--wp-g2-"+(0,ie.kebabCase)(e)}function Zt(e){return"var("+Qt(e.toString())+")"}function Xt(e){void 0===e&&(e={});for(var t={},n=0,r=Object.entries(e);n<r.length;n++){var o=Et(r[n],2),a=o[0],i=o[1];t[""+Qt(a)]=null==i?void 0:i.toString()}return t}function Jt(e,t,n){void 0===e&&(e=":root"),void 0===t&&(t={}),void 0===n&&(n=!0);var r=Xt(t),o=[],a=!1;n?(o.push(e+" {"),a=!0):":root"!==e&&(o.push("&"+e+" {"),a=!0);for(var i=0,s=Object.entries(r);i<s.length;i++){var l=Et(s[i],2),c=l[0],u=l[1];zt.defined(u)&&!zt.boolean(u)&&o.push(c+": "+u+";")}return a&&o.push("}"),o.join("")}function en(e,t){return e.map((function(e){return"function"==typeof e?e(t):e}))}function tn(e,t){return t||(t=e.slice(0)),e.raw=t,e}var nn=function(e){return function(t){e.forEach((function(e){"function"==typeof e?e(t):null!=e&&(e.current=t)}))}};function rn(){var e=tn(["\n\t\t\t",";\n\t\t\t",";\n\t\t\t",";\n\t\t\t",";\n\t\t"]);return rn=function(){return e},e}var on={didInjectGlobal:!1};function an(e){var t=e.globalStyles,n=e.injectGlobal;if(!on.didInjectGlobal){var r=t.darkHighContrastModeCSSVariables,o=t.darkModeCSSVariables,a=t.globalCSSVariables,i=t.highContrastModeCSSVariables;n&&(n(rn(),a,o,i,r),on.didInjectGlobal=!0)}}function sn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var ln=(0,m.createContext)({isDark:null,isColorBlind:null,isReducedMotion:null,isHighContrast:null});var cn=window.wp.isShallowEqual,un=m.useLayoutEffect,dn=window.wp.data;function gn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?gn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):gn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var fn="g2/is-reduced-motion",mn={isReducedMotion:!1};(0,dn.registerStore)(fn,{reducer:function(e,t){return void 0===e&&(e=mn),"SET_IS_REDUCED_MOTION"===t.type?pn(pn({},e),{},{isReducedMotion:t.isReducedMotion}):e},actions:{setIsReducedMotion:function(e){return{type:"SET_IS_REDUCED_MOTION",isReducedMotion:e}}},selectors:{getIsReducedMotion:function(e){return e.isReducedMotion}}});var hn=fn;function yn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function vn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var bn=function(e,t){return"SET_THEME"===t.type?vn(vn({},e),{},{theme:t.theme}):e};function wn(){var e=tn(["",""]);return wn=function(){return e},e}function En(e){var t,n=e.injectGlobal,r=e.isGlobal,o=void 0===r||r,a=e.theme,i=void 0===a?{}:a,s=e.selector,l=void 0===s?":root":s,c=Et((void 0===t&&(t=""),(0,m.useReducer)(bn,{theme:t})),2),u=c[0].theme,d=c[1],g=(0,m.useRef)(),p=(0,m.useRef)(!1);if(!p.current&&o&&i){if("function"==typeof n)try{var f=Jt(l,i,o);n(wn(),f)}catch(e){}p.current=!0}return un((function(){if(!(g.current&&i&&(0,cn.isShallowEqualObjects)(g.current,i))){g.current=i;var e=function(){var e="StyleSystemThemeProviderStyleNode",t=document.getElementById(e);if(t)return t;(t=document.createElement("style")).id=e,t.setAttribute("data-g2-theme-provider","theme");var n=document.querySelector("head");return n&&n.appendChild(t),t}(),t=Jt(l,i,o);o?e&&(e.innerHTML=t):d(function(e){return{type:"SET_THEME",theme:e}}(t))}}),[n,o,d,i]),u}function $n(){var e=tn(["\n\t\t\t","\n\t\t\t","\n\t\t\t","\n\t\t\t","\n\t\t"]);return $n=function(){return e},e}function Cn(e,t){var n=e.children,r=e.compiler,o=e.className,a=e.isGlobal,i=void 0!==a&&a,s=e.globalStyles,l=e.isDark,u=e.isColorBlind,d=e.isReducedMotion,g=e.isHighContrast,p=e.theme,y=void 0===p?{}:p,v=e.darkTheme,b=void 0===v?{}:v,_=e.highContrastTheme,w=void 0===_?{}:_,E=e.darkHighContrastTheme,$=void 0===E?{}:E,C=c(e,["children","compiler","className","isGlobal","globalStyles","isDark","isColorBlind","isReducedMotion","isHighContrast","theme","darkTheme","highContrastTheme","darkHighContrastTheme"]),k=r.css,S=r.cx,x=r.injectGlobal;an({injectGlobal:x,globalStyles:s});var O=(0,m.useRef)(),P=En({injectGlobal:x,isGlobal:i,theme:y,selector:":root"}),A=En({injectGlobal:x,isGlobal:i,theme:b,selector:(0,ie.repeat)(Ut,3)}),N=En({injectGlobal:x,isGlobal:i,theme:w,selector:(0,ie.repeat)(Vt,3)}),R=En({injectGlobal:x,isGlobal:i,theme:$,selector:(0,ie.repeat)(Yt,3)});!function(e){var t=e.isColorBlind,n=e.isGlobal,r=void 0===n||n,o=e.ref;(0,m.useEffect)((function(){if(zt.defined(t)){var e=document.documentElement;!r&&o.current&&(e=o.current),t?e.setAttribute("data-system-ui-color-blind-mode","true"):e.setAttribute("data-system-ui-color-blind-mode","false")}}),[r,t,o])}({isColorBlind:u,isGlobal:i,ref:O}),function(e){var t=e.isDark,n=e.isGlobal,r=void 0===n||n,o=e.ref;(0,m.useEffect)((function(){if(zt.defined(t)){var e=document.documentElement;!r&&o.current&&(e=o.current),t?e.setAttribute("data-system-ui-mode","dark"):e.setAttribute("data-system-ui-mode","light")}}),[r,t,o])}({isDark:l,isGlobal:i,ref:O}),function(e){var t=e.isGlobal,n=void 0===t||t,r=e.isHighContrast,o=e.ref;(0,m.useEffect)((function(){if(zt.defined(r)){var e=document.documentElement;!n&&o.current&&(e=o.current),r?e.setAttribute("data-system-ui-contrast-mode","high"):e.setAttribute("data-system-ui-contrast-mode","normal")}}),[n,r,o])}({isGlobal:i,isHighContrast:g,ref:O}),function(e){var t=e.isGlobal,n=void 0===t||t,r=e.isReducedMotion,o=e.ref,a=Et([(0,dn.useSelect)((function(e){return e(hn).getIsReducedMotion()})),(0,dn.useDispatch)(hn).setIsReducedMotion],2)[1];(0,m.useEffect)((function(){n&&a(!!r)}),[n,r,a]),(0,m.useEffect)((function(){if(zt.defined(r)){var e=document.documentElement;!n&&o.current&&(e=o.current),r?e.setAttribute("data-system-ui-reduced-motion-mode","true"):e.setAttribute("data-system-ui-reduced-motion-mode","false")}}),[n,r,o])}({isGlobal:i,isReducedMotion:d,ref:O});var T=function(e){void 0===e&&(e={});for(var t=(0,m.useContext)(ln),n=(0,m.useRef)(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?sn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):sn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},t)).current,r=0,o=Object.entries(e);r<o.length;r++){var a=Et(o[r],2),i=a[0],s=a[1];zt.defined(s)&&(n[i]=s)}return n}({isDark:l,isReducedMotion:d,isColorBlind:u,isHighContrast:g}),M=function(e){void 0===e&&(e={});var t=e,n=t.isColorBlind,r=t.isDark,o=t.isHighContrast,a=t.isReducedMotion,i={};return r&&(i["data-system-ui-mode"]="dark"),o&&(i["data-system-ui-contrast-mode"]=!0),n&&(i[Ht]=!0),a&&(i["data-system-ui-reduced-motion-mode"]=!0),i}(T),j=S(o,k($n(),P,A,N,R));return h().createElement("div",Object.assign({},C,M,{className:j,"data-system-theme-provider":!0,ref:nn([t,O])}),h().createElement(ln.Provider,{value:T},n))}var kn=h().memo(h().forwardRef(Cn));function Sn(e,t){if(void 0===e.inserted[t.name])return e.insert("",t,e.sheet,!0)}function xn(e,t,n){var r=[],o=z(e,r,n);return r.length<2?n:o+t(r)}var On=function e(t){for(var n="",r=0;r<t.length;r++){var o=t[r];if(null!=o){var a=void 0;switch(typeof o){case"boolean":break;case"object":if(Array.isArray(o))a=e(o);else for(var i in a="",o)o[i]&&i&&(a&&(a+=" "),a+=i);break;default:a=o}a&&(n&&(n+=" "),n+=a)}}return n};function Pn(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}var An=new RegExp(/var\(.*?\)[ ) ]*/,"g");function Nn(e){return null==e||null==e.includes?void 0:e.includes("var(")}function Rn(e){var t,n,r,o,a=(null==(t=e.match(/\(/g))?void 0:t.length)||0,i=(null==(n=e.match(/\)/g))?void 0:n.length)||0;if(a>i)o=""+e+(0,ie.repeat)(")",a-i);else{var s=new RegExp("((\\)){"+(i-a)+"})$","gi");o=e.replace(s,"")}return null==(r=o)?void 0:r.trim()}function Tn(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Mn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Mn(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}function Mn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function jn(e,t){var n,r,o=!1,a=Et(e.split(/:/),2);n=a[0],r=a[1],n=n.trim();for(var i,s,l=Tn(r.match(An)||[]);!(i=l()).done;)for(var c,u=i.value,d=Tn((u=u.trim()).replace(/ /g,"").split("var(").filter(Boolean));!(c=d()).done;){var g=vt(s=Rn(c.value).split(","))||Pn(s)||_t(s)||wt(),p=g[0],f=g.slice(1).join(","),m=t&&t.get(p)||f;m&&(o=!0,r=r.replace(u,m))}return[n,r=o?Rn(r):void 0]}function In(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Fn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Dn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Fn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Fn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ln=function(e){var t=this;void 0===e&&(e={}),this.state={},this.get=function(e){return t.state[e]},this.getState=function(){return t.state},this.setState=function(e){return void 0===e&&(e={}),t._updateState(e),t._resolveVariablesInStateValue(),t.state},this._updateState=function(e){void 0===e&&(e={}),t.state=Object.freeze(Dn(Dn({},t.state),e))},this._resolveVariablesInStateValue=function(){for(var e,n={},r=Object.entries(t.state).filter((function(e){var t=Et(e,2);return t[0],Nn(t[1])})),o=function(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return In(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?In(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}(r);!(e=o()).done;){var a=Et(e.value,2),i=a[0],s=Et(jn("resolve: "+a[1],t),2)[1];s&&(n[i]=s)}t._updateState(n),r.length&&t._resolveVariablesInStateValue()},this.setState(e)};function Gn(e){return void 0===e&&(e={}),new Ln(e)}var Bn,qn,zn=["40em","52em","64em"],Hn=function(e,t){void 0===e&&(e={}),void 0===t&&(t=function(e,t){return t});var n={},r=[null].concat(zn.map((function(e){return"@media screen and (min-width: "+e+")"})));for(var o in e){var a=o,i=e[a];if(null!==i)if(Array.isArray(i))for(var s=0;s<i.slice(0,r.length).length;s++){var l=r[s];l?(n[l]=n[l]||{},null!==i[s]&&(n[l][a]=t(a,i[s]))):n[a]=t(a,i[s])}else n[a]=i}return n},Un=__webpack_require__(4624),Vn=__webpack_require__(9588),Wn=__webpack_require__.n(Vn),Yn=Wn()((function(e,t){var n=e.split(";").filter(Boolean),r=!1,o=n.reduce((function(e,n){if(!Nn(n))return[].concat(e,[n]);var o=function(e,t){if(Nn(e)||function(e){return 0===e.indexOf("--")}(e)){var n=Et(jn(e,t),2),r=n[0],o=n[1];return o?[r,o].join(":"):void 0}}(n,t);return o?(r=!0,[].concat(e,[o,n])):[].concat(e,[n])}),[]),a=o.join(";").concat(";");return r?a:void 0}));function Kn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Qn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Kn(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Kn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Zn="undefined"!=typeof window&&(null==(Bn=window)||null==(qn=Bn.CSS)||null==qn.supports?void 0:qn.supports("(--a: 0)")),Xn={rootStore:Gn(),skipSupportedBrowsers:!0},Jn=function(e){void 0===e&&(e={});var t=Qn(Qn({},Xn),e),n=t.rootStore,r=t.skipSupportedBrowsers;return function(e,t,o,__,a,i,s,l){if((!r||!Zn)&&2===e&&107!==l&&Nn(t))return Yn(t,n)}};function er(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function tr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?er(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):er(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var nr,rr,or,ar=new WeakSet,ir=new Set,sr={key:"wp-css",level:7},lr=function(e){void 0===e&&(e=sr);var t=tr(tr({},sr),e),n=t.key,r=t.level,o=(0,ie.clamp)(r,0,20);return function(e,__,t){if(!ar.has(t)){ar.add(t);for(var r=new RegExp("."+n+"-[\\w|\\d]*","g"),a=0;a<t.length;a++){var i=t[a],s=Et(i.match(r)||[],1)[0];if(s){if(ir.has(s))return;ir.add(s),i=i.replace(new RegExp(s,"g"),s).replace(s,(0,ie.repeat)(s,o)),t[a]=i}}}}},cr=__webpack_require__(8314),ur=__webpack_require__.n(cr),dr=!1;"undefined"!=typeof window&&(dr="rtl"===(null==(nr=window)||null==(rr=nr.document)||null==(or=rr.documentElement)?void 0:or.dir));var gr=function(e,t){if(-1===e)return dr?ur().process(t,void 0,void 0,void 0):void 0};function pr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function fr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?pr(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):pr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var mr={key:"css",specificityLevel:7,rootStore:new Ln};function hr(e){var t=fr(fr({},mr),e),n=t.key,r=t.rootStore,o=function(e){var t=e.specificityLevel,n=void 0===t?7:t,r=e.key,o=void 0===r?"css":r,a=e.skipSupportedBrowsers;return[gr,Jn({skipSupportedBrowsers:void 0===a||a,rootStore:e.rootStore}),lr({level:n,key:o}),Un.default]}({key:n,specificityLevel:t.specificityLevel,rootStore:r});e.stylisPlugins?Array.isArray(e.stylisPlugins)?t.stylisPlugins=[].concat(o,e.stylisPlugins):zt.defined(e.stylisPlugins)?t.stylisPlugins=[].concat(o,[e.stylisPlugins]):t.stylisPlugins=o:t.stylisPlugins=o;var a,i=fr(fr({},function(e){var t=x(e);t.sheet.speedy=function(e){this.isSpeedy=e},t.compat=!0;var n=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered,void 0);return H(t,o,!1),t.key+"-"+o.name};return{css:n,cx:function(){for(var e=arguments.length,r=new Array(e),o=0;o<e;o++)r[o]=arguments[o];return xn(t.registered,n,On(r))},injectGlobal:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered);Sn(t,o)},keyframes:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=L(n,t.registered),a="animation-"+o.name;return Sn(t,{name:o.name,styles:"@keyframes "+a+"{"+o.styles+"}"}),a},hydrate:function(e){e.forEach((function(e){t.inserted[e]=!0}))},flush:function(){t.registered={},t.inserted={},t.sheet.flush()},sheet:t.sheet,cache:t,getRegisteredStyles:z.bind(null,t.registered),merge:xn.bind(null,t.registered,n)}}(t)),{},{breakpoints:zn,__events:{all:a=a||new Map,on:function(e,t){var n=a.get(e);n&&n.push(t)||a.set(e,[t])},off:function(e,t){var n=a.get(e);n&&n.splice(n.indexOf(t)>>>0,1)},emit:function(e,t){(a.get(e)||[]).slice().map((function(e){e(t)})),(a.get("*")||[]).slice().map((function(n){n(e,t)}))}}}),s=i.css;i.css=function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var o=n[0],a=n.slice(1);if(zt.objectInterpolation(o))return e(Hn(o));if(Array.isArray(o)){for(var i=0,s=o.length;i<s;i++){var l=o[i];zt.objectInterpolation(l)&&(o[i]=Hn(l))}return e.apply(void 0,[o].concat(a))}return e.apply(void 0,n)}}(s);var l=i.sheet.insert;return i.sheet.insert=function(){for(var e,t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];l.apply(i.sheet,[].concat(n)),(e=i.__events).emit.apply(e,["sheet.insert"].concat(n))},i}function yr(){var e=tn(["\n\t\t\t@media (prefers-reduced-motion) {\n\t\t\t\ttransition: none !important;\n\t\t\t}\n\t\t\t"," & {\n\t\t\t\ttransition: none !important;\n\t\t\t}\n\t\t"]);return yr=function(){return e},e}function vr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function br(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?vr(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):vr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var _r=b,wr=Kt,Er=function(e,t){var n=br(br({},wr),t),r=n.baseStyles,o=n.compiler,a=n.globalStyles,i=o.css,s=o.cx,l=o.injectGlobal,u={Base:i({boxSizing:"border-box"}),reduceMotion:i(yr(),'[data-system-ui-reduced-motion-mode="true"]')},d=i(r),g=(0,m.forwardRef)((function(t,n){var r=t.css,o=t.as,g=t.children,p=t.className,f=t.forwardedRef,m=c(t,["css","as","children","className","forwardedRef"]);an({globalStyles:a,injectGlobal:l});var y=o||e,v="string"!=typeof p?s(p):p,b=s(u.Base,u.reduceMotion,d,v,r&&i(r)),_={};for(var w in m)"string"==typeof y?_r(w)&&(_[w]=m[w]):_[w]=m[w];var E=h().useMemo((function(){return f?nn([f,n]):n}),[f,n]);return h().createElement(y,br({className:b,ref:E},_),g)}));return g},$r=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"];function Cr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var kr=__webpack_require__(8679),Sr=__webpack_require__.n(kr);function xr(e){return"string"==typeof e?e:e.displayName||e.name||"Component"}function Or(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Or(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Or(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ar(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Nr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ar(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ar(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Rr=Kt;function Tr(){for(var e=[],t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];for(var o=0,a=n;o<a.length;o++){var i=a[o];"number"!=typeof i&&"string"!=typeof i||e.push(i),Array.isArray(i)&&e.push(Tr.apply(void 0,i),",")}return e.join(" ").trim().replace(/,$/,"")}var Mr=Tr;function jr(e){return"number"==typeof e?"calc("+Zt("gridBase")+" * "+e+")":e}function Ir(e){for(var t={},n=Object.entries(e),r=n[0][1],o=le()(r).lighten(15).toHexString(),a=n[n.length-1][1],i=le()(a).darken(15).toHexString(),s=0,l=n;s<l.length;s++){var c=Et(l[s],2),u=c[0],d=c[1];t[u+"Text"]=le().mostReadable(d,[o,r,a,i]).toHexString()}return t}function Fr(e,t){void 0===t&&(t=!1);var n={},r=Et(Object.entries(e)[2],2),o=r[0],a=r[1],i=Et(o.split(/\d+/),1)[0],s=t?"#000":"#fff",l=t?"#fff":"#000",c=t?"darken":"lighten";return[10,20,30,40,50,60,70,80,90].forEach((function(e,t){var r=a;r=le()(r).setAlpha(e/100).toRgbString();var o=le().mix(a,s,t).toRgbString();le().isReadable(o,l,{})||(r=le()(r)[c](20).toRgbString()),n[i+"Rgba"+e]=r})),n}function Dr(e,t){var n,r=((n={})[e]=t,n);return[10,20,30,40,50,60,70,80,90].forEach((function(n){r[e+"Rgba"+n]=le()(t).setAlpha(n/100).toRgbString()})),r}function Lr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Gr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Lr(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Lr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}Mr.calc=function(){return"calc("+Tr.apply(void 0,arguments)+")"};var Br={purple100:"#f3f1f8",purple300:"#B4A8D2",purple500:"#826eb4",purple700:"#4e426c",purple900:"#342c48"},qr={darkGray100:"#8F98A1",darkGray300:"#6C7781",darkGray500:"#555D66",darkGray700:"#32373C",darkGray900:"#191E23"},zr={lightGray100:"#fbfbfc",lightGray300:"#edeff0",lightGray500:"#e2e4e7",lightGray700:"#ccd0d4",lightGray900:"#a2aab2"},Hr={red100:"#fcebeb",red300:"#ea8484",red500:"#dc3232",red700:"#b02828",red900:"#841e1e"},Ur={orange100:"#fef1ea",orange300:"#f9a87e",orange500:"#F56E28",orange700:"#ca4a1f",orange900:"#aa3e1a"},Vr={yellow100:"#fff8e6",yellow300:"#ffd566",yellow500:"#ffb900",yellow700:"#ee8e0d",yellow900:"#dd631a"},Wr={green100:"#edf8ee",green300:"#90d296",green500:"#46b450",green700:"#328540",green900:"#25612f"},Yr={blue100:"#e6f6fb",blue300:"#66c6e4",blue500:"#00a0d2",blue700:"#0085ba",blue900:"#0072A8"},Kr=Gr(Gr(Gr({},qr),Ir(qr)),Fr(qr)),Qr=Gr(Gr(Gr({},zr),Ir(zr)),Fr(zr)),Zr=Gr(Gr(Gr({},Hr),Ir(Hr)),Fr(Hr)),Xr=Gr(Gr(Gr({},Ur),Ir(Ur)),Fr(Ur)),Jr=Gr(Gr(Gr({},Vr),Ir(Vr)),Fr(Vr)),eo=Gr(Gr(Gr({},Wr),Ir(Wr)),Fr(Wr)),to=Gr(Gr(Gr({},Br),Ir(Br)),Fr(Br)),no=Gr(Gr(Gr({},Yr),Ir(Yr)),Fr(Yr)),ro=Gr(Gr(Gr(Gr(Gr(Gr(Gr(Gr({},Kr),Qr),Zr),Xr),Jr),eo),to),no),oo={black:"#000000",blueberry:"#3858E9",blueberryDark:"#1D35B4",greens:"#33F078",grey:"#40464D",greyBlack:"#1E1E1E",lightBlue:"#33F078",lightGrey:"#40464D",lighterGrey:"#dddddd",pomegrade:"#E26F56",wordpressBlue:"#007cba",white:"#ffffff"},ao={colorBackgroundBlue:Zt("blueRgba10"),colorBackgroundBlueText:Zt("blue900"),colorBackgroundDarkGray:Zt("darkGrayRgba10"),colorBackgroundDarkGrayText:Zt("darkGray900"),colorBackgroundGreen:Zt("greenRgba10"),colorBackgroundGreenText:Zt("green900"),colorBackgroundLightGray:Zt("lightGrayRgba10"),colorBackgroundLightGrayText:Zt("lightGray900"),colorBackgroundOrange:Zt("orangeRgba10"),colorBackgroundOrangeText:Zt("orange900"),colorBackgroundPurple:Zt("purpleRgba10"),colorBackgroundPurpleText:Zt("purple900"),colorBackgroundRed:Zt("redRgba10"),colorBackgroundRedText:Zt("red900"),colorBackgroundYellow:Zt("yellowRgba10"),colorBackgroundYellowText:Zt("yellow900")},io={colorBackgroundBlue:Zt("blueRgba20"),colorBackgroundBlueText:Zt("blue300"),colorBackgroundDarkGray:Zt("darkGrayRgba20"),colorBackgroundDarkGrayText:Zt("white"),colorBackgroundGreen:Zt("greenRgba20"),colorBackgroundGreenText:Zt("green300"),colorBackgroundLightGray:Zt("lightGrayRgba20"),colorBackgroundLightGrayText:Zt("white"),colorBackgroundOrange:Zt("orangeRgba20"),colorBackgroundOrangeText:Zt("orange300"),colorBackgroundPurple:Zt("purpleRgba20"),colorBackgroundPurpleText:Zt("purple300"),colorBackgroundRed:Zt("redRgba20"),colorBackgroundRedText:Zt("red300"),colorBackgroundYellow:Zt("yellowRgba20"),colorBackgroundYellowText:Zt("yellow300")},so=Gr(Gr(Gr(Gr(Gr(Gr(Gr(Gr({},Fr(Yr,!0)),Fr(Wr,!0)),Fr(Ur,!0)),Fr(Br,!0)),Fr(Hr,!0)),Fr(Vr,!0)),Fr(qr,!0)),Fr(zr,!0));function lo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function co(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?lo(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):lo(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var uo=co(co(co(co({},ro),ao),{},{colorAdmin:"#007cba",colorDestructive:"#D94F4F",colorBodyBackground:Zt("white"),colorDivider:"rgba(0, 0, 0, 0.1)",colorPositive:Zt("greens"),colorScrollbarThumb:"rgba(0, 0, 0, 0.2)",colorScrollbarThumbHover:"rgba(0, 0, 0, 0.5)",colorScrollbarTrack:"rgba(0, 0, 0, 0.04)",colorText:"#1e1e1e",colorTextInverted:Zt("white"),colorTextHeading:"#050505",colorTextMuted:"#8a8b8c"},Dr("colorAdmin","#007cba")),Dr("colorDestructive","#D94F4F")),go={fontFamily:'Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif',fontFamilyMono:"SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace",fontSize:"13px",fontSizeH1:"calc(2.44 * "+Zt("fontSize")+")",fontSizeH2:"calc(1.95 * "+Zt("fontSize")+")",fontSizeH3:"calc(1.56 * "+Zt("fontSize")+")",fontSizeH4:"calc(1.25 * "+Zt("fontSize")+")",fontSizeH5:"calc(1 * "+Zt("fontSize")+")",fontSizeH6:"calc(0.8 * "+Zt("fontSize")+")",fontSizeInputMobile:"16px",fontSizeMobile:"15px",fontSizeSmall:"calc(0.92 * "+Zt("fontSize")+")",fontSizeXSmall:"calc(0.75 * "+Zt("fontSize")+")",fontLineHeightBase:"1.2",fontWeight:"normal",fontWeightHeading:"600"},po={surfaceBackgroundColor:Zt("surfaceColor"),surfaceBackgroundSubtleColor:"#F3F3F3",surfaceBackgroundTintColor:"#F5F5F5",surfaceBorderColor:"rgba(0, 0, 0, 0.1)",surfaceBorderBoldColor:"rgba(0, 0, 0, 0.15)",surfaceBorderSubtleColor:"rgba(0, 0, 0, 0.05)",surfaceBackgroundTertiaryColor:"#ffffff",surfaceColor:Zt("white")},fo={controlBackgroundColor:Zt("white"),controlBackgroundColorHover:"rgba(0, 0, 0, 0.05)",controlBackgroundColorActive:"rgba(0, 0, 0, 0.05)",controlBackgroundDimColor:"rgba(0, 0, 0, 0.1)",controlBackgroundBrightColor:"rgba(0, 0, 0, 0.03)",controlBorderColor:"#757575",controlBorderColorHover:Zt("controlBorderColor"),controlBorderColorSubtle:"transparent",controlBorderRadius:"2px",controlBorderSubtleColor:"rgba(0, 0, 0, 0.2)",controlBoxShadowFocusSize:"0.5px",controlBoxShadow:"transparent",controlBoxShadowFocus:Mr("0 0 0",Zt("controlBoxShadowFocusSize"),Zt("colorAdmin")),controlPseudoBoxShadowFocusWidth:"2px",controlPseudoBoxShadowFocusRingSize:Mr.calc(Zt("controlPseudoBoxShadowFocusWidth"),"+ 1px +",Zt("controlBoxShadowFocusSize")),controlPseudoBoxShadowFocusRingSizeSmall:Mr.calc(Zt("controlPseudoBoxShadowFocusWidth"),"+ 1px"),controlPseudoBoxShadowFocus:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSize"),Zt("colorAdmin")]),controlPseudoBoxShadowFocusSmall:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSizeSmall"),Zt("colorAdmin")]),controlDestructivePseudoBoxShadowFocus:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSize"),Zt("colorDestructive")]),controlDestructivePseudoBoxShadowFocusSmall:Mr(["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("surfaceBackgroundColor")],["0 0 0",Zt("controlPseudoBoxShadowFocusRingSizeSmall"),Zt("colorDestructive")]),controlDestructiveBorderColor:Zt("colorDestructive"),controlDestructiveBorderColorFocus:Zt("controlDestructiveBorderColor"),controlDestructiveBoxShadowFocus:Mr("0 0 0",Zt("controlBoxShadowFocusSize"),Zt("colorDestructive")),controlHeight:"30px",controlHeightLarge:"calc("+Zt("controlHeight")+" * 1.2)",controlHeightSmall:"calc("+Zt("controlHeight")+" * 0.8)",controlHeightXLarge:"calc("+Zt("controlHeight")+" * 1.4)",controlHeightXSmall:"calc("+Zt("controlHeight")+" * 0.67)",controlHeightXXSmall:"calc("+Zt("controlHeight")+" * 0.4)",controlPaddingX:"12px",controlPaddingXLarge:"calc("+Zt("controlPaddingX")+" * 1.3334)",controlPaddingXSmall:"calc("+Zt("controlPaddingX")+" / 1.3334)",controlPrimaryTextColorActive:Zt("white"),controlPrimaryTextColor:Zt("white"),controlSurfaceBoxShadow:Mr(["0 1px 1px rgba(0, 0, 0, 0.2)"],["0 1px 2px rgba(0, 0, 0, 0.2)"]),controlSurfaceColor:Zt("white"),controlTextActiveColor:Zt("colorAdmin"),controlInnerControltextColor:Zt("colorAdmin")},mo={buttonPaddingXRatio:"calc(4/3)",buttonPaddingX:Mr.calc(Zt("controlPaddingX"),"*",Zt("buttonPaddingXRatio")),buttonTextColor:Zt("colorAdmin"),buttonTextColorActive:Zt("buttonTextColor"),buttonPrimaryColor:Zt("colorAdmin"),buttonPrimaryColorHover:Zt("buttonPrimaryColor"),buttonPrimaryColorActive:Zt("colorText"),buttonPrimaryColorFocus:Zt("buttonPrimaryColor"),buttonPrimaryBorderColor:Zt("buttonPrimaryColor"),buttonPrimaryBorderColorHover:Zt("buttonPrimaryColor"),buttonPrimaryBorderColorFocus:Zt("buttonPrimaryColor"),buttonPrimaryBorderColorActive:Zt("buttonPrimaryColor"),buttonPrimaryTextColor:Zt("controlPrimaryTextColor"),buttonPrimaryTextColorHover:Zt("controlPrimaryTextColor"),buttonPrimaryTextColorActive:Zt("controlPrimaryTextColor"),buttonPrimaryTextColorFocus:Zt("controlPrimaryTextColor"),buttonSecondaryColor:"transparent",buttonSecondaryColorHover:Zt("buttonSecondaryColor"),buttonSecondaryColorActive:"rgba(0, 0, 0, 0.05)",buttonSecondaryColorFocus:Zt("buttonSecondaryColor"),buttonSecondaryBorderColor:Zt("buttonPrimaryColor"),buttonSecondaryTextColor:Zt("buttonPrimaryColor"),buttonSecondaryTextColorFocus:Zt("buttonPrimaryColor"),buttonSecondaryTextColorActive:Zt("buttonPrimaryColor"),buttonSecondaryBorderColorHover:Zt("buttonPrimaryColor"),buttonSecondaryBorderColorActive:Zt("buttonPrimaryColor"),buttonSecondaryBorderColorFocus:Zt("buttonPrimaryColor"),buttonTertiaryColor:"transparent",buttonTertiaryColorHover:Zt("buttonTertiaryColor"),buttonTertiaryColorActive:"rgba(0, 0, 0, 0.05)",buttonTertiaryColorFocus:Zt("buttonTertiaryColor"),buttonTertiaryBorderColor:"transparent",buttonTertiaryTextColor:Zt("buttonPrimaryColor"),buttonTertiaryTextColorFocus:Zt("buttonPrimaryColor"),buttonTertiaryTextColorActive:Zt("buttonPrimaryColor"),buttonTertiaryBorderColorHover:Zt("buttonPrimaryColor"),buttonTertiaryBorderColorActive:Zt("buttonPrimaryColor"),buttonTertiaryBorderColorFocus:Zt("buttonPrimaryColor"),buttonControlActiveStateColor:Zt("colorText"),buttonControlActiveStateColorHover:Zt("buttonControlActiveStateColor"),buttonControlActiveStateColorActive:Zt("buttonControlActiveStateColor"),buttonControlActiveStateColorFocus:Zt("buttonControlActiveStateColor"),buttonControlActiveStateTextColor:Zt("buttonPrimaryTextColor"),buttonControlActiveStateBorderColorFocus:Zt("buttonPrimaryColor"),buttonControlActiveStateBoxShadowFocus:Mr(["0 0 0",Zt("controlBoxShadowFocusSize"),Zt("colorAdmin")],["0 0 0",Zt("controlPseudoBoxShadowFocusWidth"),Zt("buttonControlActiveStateTextColor"),"inset"])},ho={cardBorderRadius:"2px",cardPaddingX:jr(3),cardPaddingY:jr(3),cardPadding:Mr(Zt("cardPaddingX"),Zt("cardPaddingY")),cardHeaderFooterPaddingY:jr(1),cardHeaderHeight:"44px"},yo={flexGap:jr(2),flexItemMarginRight:Zt("flexGap")},vo={linkColor:Zt("colorAdmin"),linkColorHover:Zt("colorAdmin"),linkColorActive:Zt("colorAdmin"),linkColorFocus:Zt("colorAdmin")},bo={menuItemBorderWidth:"1px",menuItemFocusBackgroundColor:"transparent",menuItemFocusBorderColor:Zt("colorAdmin"),menuItemFocusTextColor:Zt("menuItemFocusBorderColor"),menuItemFocusBoxShadow:Zt("controlBorderSubtleColor"),menuItemActiveBackgroundColor:Zt("controlBackgroundColor"),menuItemActiveBorderColor:Zt("menuItemFocusBorderColor"),menuItemActiveTextColor:Zt("colorText"),menuItemActiveBoxShadow:Zt("controlBorderSubtleColor"),menuItemHeight:"30px",menuItemHeightLarge:"calc("+Zt("menuItemHeight")+" * 1.2)",menuItemHeightSmall:"calc("+Zt("menuItemHeight")+" * 0.8)",menuItemHeightXLarge:"calc("+Zt("menuItemHeight")+" * 1.4)",menuItemHeightXSmall:"calc("+Zt("menuItemHeight")+" * 0.67)",menuItemHeightXXSmall:"calc("+Zt("menuItemHeight")+" * 0.4)"},_o={panelHeaderPadding:jr(3)+" "+jr(4),panelBodyPadding:jr(2)+" "+jr(4)+" "+jr(3)},wo={radioBoxShadow:Zt("checkboxBoxShadow"),radioSize:Zt("checkboxSize"),radioDotSize:"10px"},Eo={segmentedControlFontSize:"12px",segmentedControlBackgroundColor:Zt("controlBackgroundColor"),segmentedControlBorderColor:Zt("controlBorderColor"),segmentedControlBackdropBackgroundColor:Zt("controlSurfaceColor"),segmentedControlBackdropBorderColor:Zt("controlBorderColor"),segmentedControlBackdropBoxShadow:"transparent",segmentedControlButtonColorActive:Zt("controlBackgroundColor")},$o={sliderThumbBorderColor:"transparent",sliderThumbBoxShadow:"none",sliderThumbBoxShadowSizeFocus:"3px",sliderThumbBoxShadowColorFocus:Zt("colorAdminRgba20"),sliderThumbBackgroundColor:Zt("colorAdmin")},Co={switchBackdropBackgroundColor:Zt("lightGray900"),switchBackdropBackgroundColorActive:Zt("colorAdmin"),switchBackdropBorderColor:Zt("lightGray900"),switchBackdropBorderColorActive:Zt("colorAdmin"),switchBackdropBorderColorFocus:Zt("white"),switchToggleBackgroundColor:Zt("colorTextInverted"),switchToggleBackgroundColorActive:Zt("colorTextInverted"),switchToggleBoxShadow:"none",switchPaddingOffset:"6px"},ko=co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co(co({},oo),uo),ho),fo),{elevationIntensity:1}),yo),go),po),{transitionDuration:"200ms",transitionDurationFast:"160ms",transitionDurationFaster:"120ms",transitionDurationFastest:"100ms",transitionTimingFunction:"cubic-bezier(0.08, 0.52, 0.52, 1)",transitionTimingFunctionControl:"cubic-bezier(0.12, 0.8, 0.32, 1)"}),mo),{checkboxBoxShadow:"none",checkboxSize:"16px"}),{gridBase:"4px"}),vo),bo),_o),wo),Eo),$o),Co);function So(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function xo(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?So(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):So(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Oo=xo(xo(xo({},io),so),{},{buttonPrimaryTextColorActive:Zt("controlPrimaryTextColorActive"),buttonControlActiveStateTextColor:Zt("colorTextInverted"),colorBodyBackground:"#18191A",colorDivider:"rgba(255, 255, 255, 0.1)",colorScrollbarThumb:"rgba(255, 255, 255, 0.2)",colorScrollbarThumbHover:"rgba(255, 255, 255, 0.5)",colorScrollbarTrack:"rgba(0, 0, 0, 0.04)",colorText:"#E4E6EB",colorTextInverted:"#050505",colorTextHeading:"#ffffff",controlBackgroundColor:Zt("colorBodyBackground"),controlBackgroundColorHover:"rgba(255, 255, 255, 0.3)",controlBackgroundBrightColor:"rgba(255, 255, 255, 0.08)",controlBackgroundDimColor:"rgba(255, 255, 255, 0.2)",controlBorderSubtleColor:"rgba(255, 255, 255, 0.5)",controlPrimaryTextColorActive:Zt("black"),controlPrimaryTextColor:Zt("white"),controlSurfaceColor:"rgba(255, 255, 255, 0.3)",controlTextActiveColor:Zt("white"),surfaceBackgroundColor:Zt("colorBodyBackground"),surfaceBackgroundSubtleColor:"#151515",surfaceBackgroundTintColor:"#252525",surfaceBackgroundTertiaryColor:"#000",surfaceBorderColor:"rgba(255, 255, 255, 0.1)",surfaceBorderBoldColor:"rgba(255, 255, 255, 0.15)",surfaceBorderSubtleColor:"rgba(255, 255, 255, 0.05)",surfaceColor:"#292929"}),Po=xo({},Oo),Ao=function(e){void 0===e&&(e=Rr);var t=Nr(Nr({},Rr),e),n=t.baseStyles,r=t.compilerOptions,o=function(e){var t=e.config,n=void 0===t?{}:t,r=e.darkModeConfig,o=void 0===r?{}:r,a=e.highContrastModeConfig,i=void 0===a?{}:a,s=e.darkHighContrastModeConfig,l=void 0===s?{}:s,c=function(e){void 0===e&&(e={});for(var t={},n=0,r=Object.entries(e);n<r.length;n++){var o=Et(r[n],2),a=o[0],i=o[1],s="var("+Qt(a)+", "+i+")";t[a]=s}return t}(n);return{theme:c,globalVariables:Xt(n),globalCSSVariables:Jt(":root",n),darkModeCSSVariables:Jt((0,ie.repeat)(Ut,3),o),highContrastModeCSSVariables:Jt((0,ie.repeat)(Vt,3),i),darkHighContrastModeCSSVariables:Jt((0,ie.repeat)(Yt,3),l)}}({config:t.config,darkHighContrastModeConfig:t.darkHighContrastModeConfig,darkModeConfig:t.darkModeConfig,highContrastModeConfig:t.highContrastModeConfig}),a=Gn(o.globalVariables);a.setState(o.globalVariables);var i=hr(Nr(Nr({},r),{},{rootStore:a})),s=i.css,l=i.cx,u=function(e){for(var t,n=e.baseStyles,r=e.compiler,o=e.globalStyles,a={},i=function(e){return Er(e,{baseStyles:n,compiler:r,globalStyles:o})},s=function(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Cr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Cr(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}($r);!(t=s()).done;){var l=t.value;a[l]=i(l)}return a}({baseStyles:n,compiler:i,globalStyles:o}),d=function(e){var t=e.compiler,n=e.core,r=t.css,o=t.cx,a=n.div;function i(e,t){void 0===t&&(t={});var n=t.props;return function(){for(var s=arguments.length,l=new Array(s),u=0;u<s;u++)l[u]=arguments[u];var d=h().forwardRef((function(t,i){var s=t.as,u=t.className,d=c(t,["as","className"]),g=Pr(Pr(Pr({},n),d),{},{ref:i}),p=en(l,d),f=o(r.apply(void 0,p),u);return h().createElement(a,Object.assign({as:s||e},g,{className:f}))}));return d.displayName="string"==typeof e?"Styled("+xr(e)+")":zt.defined(null==e?void 0:e.displayName)?e.displayName:"Styled("+xr(e)+")",d.withComponent=function(e,n){return i(e,void 0!==n?Pr(Pr({},t||{}),n):t).apply(void 0,l)},"string"!=typeof e?Sr()(d,e):d}}var s=i.bind(void 0);return $r.forEach((function(e){s[e]=i(e)})),s}({compiler:i,core:u}),g=u.div;return{compiler:i,core:u,createCoreElement:function(e){return Er(e,{baseStyles:n,compiler:i,globalStyles:o})},createToken:Qt,css:s,cx:l,get:function(e){return"var("+Qt(e.toString())+")"},styled:d,View:g,ThemeProvider:function(e){return h().createElement(kn,Object.assign({},e,{compiler:i,globalStyles:o}))},rootStore:a}}({baseStyles:{MozOsxFontSmoothing:"grayscale",WebkitFontSmoothing:"antialiased",fontFamily:Zt("fontFamily"),fontSize:Zt("fontSize"),fontWeight:Zt("fontWeight"),margin:0},config:ko,darkModeConfig:Po,highContrastModeConfig:{colorDivider:"#444",controlBorderColor:"#444",controlBorderColorHover:"#444",controlBorderColorSubtle:"#444",surfaceBorderColor:"#444"},darkHighContrastModeConfig:{colorDivider:"#eee",controlBorderColor:"#eee",controlBorderColorHover:"#eee",controlBorderColorSubtle:"#eee",surfaceBorderColor:"#eee"}}),No=(Ao.ThemeProvider,Ao.compiler),Ro=Ao.core,To=(Ao.createCoreElement,Ao.createToken),Mo=Ao.get,jo=(Ao.styled,No.breakpoints,No.cache,No.cx);function Io(e){return"number"==typeof e?"calc("+Mo("gridBase")+" * "+e+")":e}No.flush,No.getRegisteredStyles,No.hydrate,No.injectGlobal,No.keyframes,No.merge,No.sheet;var Fo=No.css,Do={gridGap:"space",gridColumnGap:"space",gridRowGap:"space",gap:"space",columnGap:"space",rowGap:"space"},Lo={space:Io};function Go(e,t){var n=Do[e],r=t;return n&&Lo&&(r=(0,Lo[n])(t)),r}function Bo(e){void 0===e&&(e={});var t={};for(var n in e)t[n]=Go(n,e[n]);return t}function qo(e){if(zt.objectInterpolation(e))return Fo(Bo(Hn(e,Go)));for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];if(Array.isArray(e)){for(var o=0,a=e.length;o<a;o++){var i=e[o];zt.objectInterpolation(i)&&(e[o]=Bo(Hn(i,Go)))}return Fo.apply(void 0,[e].concat(n))}return Fo.apply(void 0,[e].concat(n))}var zo=(0,m.createContext)({}),Ho="data-g2-component";function Uo(e,t){var n,r=(0,m.useContext)(zo),o=Array.isArray(t)?t[0]:t,a=(null==r?void 0:r[o])||{},i=((n={})["data-g2-c16t"]=!0,n),s=function(e){var t;return(t={})[Ho]=e,t}(o);for(var l in s)"string"==typeof s[l]&&(i[l]=s[l]);var u=a._overrides,d=a.css,g=c(a,["_overrides","css"]),p=Object.entries(g).length?Object.assign({},g,e):e,f=jo(d&&qo(d),p.css&&qo(p.css),Wo(o),e.className),h="function"==typeof p.renderChildren?p.renderChildren(p):p.children;for(var y in p)"css"!==y&&(i[y]=p[y]);for(var v in u)i[v]=u[v];return i.children=h,i.className=f,i}function Vo(e){if(!e||"string"!=typeof e)return"";var t=(0,ie.kebabCase)(e);return"components-"+t+" wp-components-"+t}var Wo=Wn()((function(e){return e?Array.isArray(e)?jo((0,ie.uniq)(e).map(Vo)):"string"==typeof e?Vo(e):"":""}));function Yo(e,t,n){void 0===n&&(n={});var r=n.memo,o=void 0===r||r,a=(0,m.forwardRef)(e);o&&(a=h().memo(a));var i=Array.isArray(t)?t[0]:t||a.name,s=a.__contextSystemKey__||[i];return Array.isArray(t)&&(s=[].concat(s,t)),"string"==typeof t&&(s=[].concat(s,[t])),a.displayName=i,a.__contextSystemKey__=(0,ie.uniq)(s),a}function Ko(e){if(!e)return[];var t=[];return e.__contextSystemKey__&&(t=e.__contextSystemKey__),e.type&&e.type.__contextSystemKey__&&(t=e.type.__contextSystemKey__),t}var Qo=__webpack_require__(4155),Zo=Ro.div;Zo.displayName="View";var Xo=Zo,Jo={bottom:qo({alignItems:"flex-end",display:"flex",justifyContent:"center"}),center:qo({alignItems:"center",display:"flex",justifyContent:"center"}),left:qo({alignItems:"center",display:"flex",justifyContent:"flex-start"}),right:qo({alignItems:"center",display:"flex",justifyContent:"flex-end"}),top:qo({alignItems:"flex-start",display:"flex",justifyContent:"center"})},ea={center:qo({margin:"auto"}),content:Jo,left:qo({marginRight:"auto"}),right:qo({marginLeft:"auto"})};function ta(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function na(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ta(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ta(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ra={transitionDuration:Mo("transitionDuration"),transitionProperty:"all",transitionTimingFunction:"ease-in-out"},oa=function(e){return qo({transition:e})};oa.default=qo(na(na({},ra),{},{transitionTimingFunction:"ease"})),oa.bounce=qo(na(na({},ra),{},{transitionTimingFunction:"cubic-bezier(.8, .5, .2, 1.4)"})),oa.delay=function(e){return qo({transitionDelay:e+"s"})},oa.duration=function(e){return qo({transitionDuration:e+"s"})},oa.ease=qo(na(na({},ra),{},{transitionTimingFunction:"ease"})),oa.easeIn=qo(na(na({},ra),{},{transitionTimingFunction:"ease-in"})),oa.easeInOut=qo(na(na({},ra),{},{transitionTimingFunction:"ease-in-out"})),oa.easeOut=qo(na(na({},ra),{},{transitionTimingFunction:"ease-out"})),oa.easing=function(e){return qo(na(na({},ra),{},{transitionTimingFunction:e}))},oa.linear=qo(na(na({},ra),{},{transitionTimingFunction:"linear"}));var aa=["blue","red","purple","green","yellow","orange","darkGray","lightGray"];function ia(){var e=tn(["\n\t\t"," & {\n\t\t\t","\n\t\t}\n\t"]);return ia=function(){return e},e}function sa(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ia(),Wt,o)}function la(){var e=tn(["",""]);return la=function(){return e},e}function ca(){var e=tn(["\n\t\t",";\n\t\t",";\n\t"]);return ca=function(){return e},e}function ua(e,t){if(void 0===t&&(t={}),!aa.includes(e))return"";var n,r=t,o=r.isBold,a=r.isSubtle,i=o?"Rgba20":"Rgba10",s=qo({background:Mo(o?e+"Rgba70":a?e+"Rgba10":e+"Rgba20")});return"green"===e&&(n=qo({backgroundImage:"repeating-linear-gradient(45deg, transparent, transparent 10px, "+Mo("colorBackgroundGreen")+" 10px, "+Mo("colorBackgroundGreen")+" 20px)"})),"red"===e&&(n=qo({backgroundImage:"linear-gradient(45deg, "+Mo("red"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("red"+i)+" 75%, "+Mo("red"+i)+"),\n linear-gradient(-45deg, "+Mo("red"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("red"+i)+" 75%, "+Mo("red"+i)+")",backgroundSize:"10px 10px"})),"yellow"===e&&(n=qo({backgroundImage:"linear-gradient(45deg, "+Mo("yellow"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("yellow"+i)+" 75%, "+Mo("yellow"+i)+"),\n linear-gradient(-45deg, "+Mo("yellow"+i)+" 25%, transparent 25%, transparent 75%, "+Mo("yellow"+i)+" 75%, "+Mo("yellow"+i)+")",backgroundSize:"10px 10px"})),qo(ca(),s,sa(la(),n))}function da(e){return qo({background:e})}da.black=da(Mo("black")),da.white=da(Mo("white")),da.admin=da(Mo("colorAdmin")),da.blue=ua("blue"),da.darkGray=ua("darkGray"),da.green=ua("green"),da.lightGray=ua("lightGray"),da.orange=ua("orange"),da.purple=ua("purple"),da.red=ua("red"),da.yellow=ua("yellow"),da.control=da(Mo("controlBackgroundColor")),da.surface=da(Mo("surfaceBackgroundColor")),da.secondary=da(Mo("surfaceBackgroundSubtleColor"));var ga={default:qo({border:"1px solid "+Mo("controlBorderColor")}),focus:qo({border:"1px solid "+Mo("colorAdmin"),boxShadow:Mo("controlBoxShadowFocus")}),subtle:qo({border:"1px solid "+Mo("controlBorderSubtleColor")})},pa={all:qo({border:"1px solid "+Mo("surfaceBorderColor")}),bottom:qo({borderBottom:"1px solid "+Mo("surfaceBorderColor")}),control:ga,left:qo({borderLeft:"1px solid "+Mo("surfaceBorderColor")}),right:qo({borderRight:"1px solid "+Mo("surfaceBorderColor")}),top:qo({borderTop:"1px solid "+Mo("surfaceBorderColor")})};function fa(e){return qo({borderRadius:e})}function ma(){var e=tn(["\n\t\t@media not all and (min-resolution: 0.001dpcm) {\n\t\t\t@supports (-webkit-appearance: none) {\n\t\t\t\t","\n\t\t\t}\n\t\t}\n\t"]);return ma=function(){return e},e}function ha(){var e=tn(["\n\t\t@-moz-document url-prefix() {\n\t\t\t",";\n\t\t}\n\t"]);return ha=function(){return e},e}function ya(){var e=tn(["\n\t\t@media screen and (-ms-high-contrast: active),\n\t\t\t(-ms-high-contrast: none) {\n\t\t\t",";\n\t\t}\n\t"]);return ya=function(){return e},e}fa.none=fa(0),fa.round=fa(Mo("controlBorderRadius")),fa.circle=fa(99999);var va={ie:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ya(),o)},firefox:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ha(),o)},safari:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(ma(),o)}},ba=function(e){return le()(e)};ba.admin=Mo("colorAdmin"),ba.text=Mo("colorText"),ba.textInverted=Mo("colorTextInverted"),ba.border=Mo("surfaceBorderColor"),ba.positive=Mo("colorPositive"),ba.destructive=Mo("colorDestructive"),["blue","red","purple","green","yellow","orange","darkGray","lightGray"].forEach((function(e){[null,100,300,500,700,900].forEach((function(t){t?ba[""+e+t]=Mo(""+e+t):ba[e]=Mo(e+"500")}))})),Object.keys(oo).forEach((function(e){ba[e]=Mo(e)}));var _a=function(e){var t=e.height,n=e.width,r=[];return zt.defined(n)&&r.push([qo({maxWidth:"100%",width:n})]),zt.defined(t)&&r.push([qo({height:t,maxHeight:"100%"})]),qo(r)};_a.width=function(e){return qo({maxWidth:"100%",width:e})},_a.height=function(e){return qo({height:e,maxHeight:"100%"})};var wa={body:13,caption:10,footnote:11,largeTitle:28,subheadline:12,title:20};function Ea(e){return void 0===e&&(e=13),wa[e]?Ea(wa[e]):"number"!=typeof e?e:"calc("+e/13+" * "+Mo("fontSize")+")"}function $a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ca(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?$a(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):$a(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ka(e){return qo({color:e})}ka.black=ka(Mo("black")),ka.white=ka(Mo("white")),ka.admin=ka(Mo("colorAdmin")),ka.purple=ka(Mo("purple500")),ka.green=ka(Mo("green500")),ka.yellow=ka(Mo("yellow500")),ka.orange=ka(Mo("orange500")),ka.darkGray=ka(Mo("darkGray500")),ka.lightGray=ka(Mo("lightGray500")),ka.text=ka(Mo("colorText")),ka.textInverted=ka(Mo("colorTextInverted"));var Sa={default:qo({color:Mo("colorText"),fontFamily:Mo("fontFamily"),fontWeight:400}),monospace:qo({fontFamily:Mo("fontFamilyMono")})},xa={bold:qo({fontWeight:600}),italic:qo({fontStyle:"italic"}),smallCaps:qo({fontSize:Ea(10),fontWeight:600,textTransform:"uppercase"}),caption:qo({fontSize:Ea(10),fontWeight:600,textTransform:"uppercase",opacity:.5})},Oa={body:qo({fontSize:Ea(13)}),caption:qo({fontSize:Ea(10)}),footnote:qo({fontSize:Ea(11)}),headline:jo(xa.bold,qo({fontSize:Ea(13)})),largeTitle:qo({fontSize:Ea(28)}),subheadline:qo({fontSize:Ea(12)}),title:qo({fontSize:Ea(20)})},Pa={color:ka,size:function(e){return qo({fontSize:Ea(e)})}},Aa={alignment:{left:qo({textAlign:"left"}),center:qo({textAlign:"center"}),right:qo({textAlign:"right"})}},Na=Ca(Ca(Ca(Ca(Ca({},Sa),Oa),xa),Pa),Aa);function Ra(){var e=tn(["\n\t\t"," & {\n\t\t\t","\n\t\t}\n\t"]);return Ra=function(){return e},e}function Ta(){var e=tn(["\n\t\t"," & {\n\t\t\t","\n\t\t}\n\t"]);return Ta=function(){return e},e}var Ma={};function ja(e){return qo({opacity:e})}Ma.colorBlind=sa,Ma.dark=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(Ra(),Ut,o)},Ma.highContrast=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=qo.apply(void 0,[e].concat(n));return qo(Ta(),Vt,o)},ja.subtle=ja(.7),ja.muted=ja(.5),ja.hidden=ja(0);var Ia={absolute:qo({position:"absolute"}),fixed:qo({position:"fixed"}),bottom:qo({bottom:0,position:"absolute"}),bottomLeft:qo({bottom:0,left:0,position:"absolute"}),bottomRight:qo({bottom:0,position:"absolute",right:0}),full:qo({bottom:0,left:0,position:"absolute",right:0,top:0}),left:qo({left:0,position:"absolute"}),relative:qo({position:"relative"}),right:qo({position:"absolute",right:0}),sticky:qo({position:"sticky",top:0}),top:qo({position:"absolute",top:0}),topLeft:qo({left:0,position:"absolute",top:0}),topRight:qo({position:"absolute",right:0,top:0})};function Fa(e){return zt.numeric(e)?e+"px":e}function Da(e){return"0 "+Fa(e)+" "+Fa(2*e)+" 0\n\trgba(0 ,0, 0, "+e/20+")"}function La(e){return qo({margin:Io(e)})}function Ga(e){return qo({padding:Io(e)})}function Ba(){var e=tn(["\n\t\t"," {\n\t\t\t",";\n\t\t}\n\t"]);return Ba=function(){return e},e}La.x=function(e){return qo({marginLeft:Io(e),marginRight:Io(e)})},La.y=function(e){return qo({marginBottom:Io(e),marginTop:Io(e)})},La.top=function(e){return qo({marginTop:Io(e)})},La.bottom=function(e){return qo({marginBottom:Io(e)})},La.left=function(e){return qo({marginLeft:Io(e)})},La.right=function(e){return qo({marginRight:Io(e)})},Ga.x=function(e){return qo({paddingLeft:Io(e),paddingRight:Io(e)})},Ga.y=function(e){return qo({paddingBottom:Io(e),paddingTop:Io(e)})},Ga.top=function(e){return qo({paddingTop:Io(e)})},Ga.bottom=function(e){return qo({paddingBottom:Io(e)})},Ga.left=function(e){return qo({paddingLeft:Io(e)})},Ga.right=function(e){return qo({paddingRight:Io(e)})};var qa=function(e){return this[Ho]=e,this};qa.prototype.getSelector=function(){return'[data-g2-component="'+this[Ho]+'"]'},qa.prototype.css=function(){var e=qo.apply(void 0,arguments);return qo(Ba(),this.getSelector(),e)};function za(e){return"number"==typeof e||"string"==typeof e}function Ha(e,t){if(void 0===t&&(t=0),za(e)){var n=za(t)?t:0;return qo({transform:"translate("+Fa(e)+", "+Fa(n)+")"})}if(zt.plainObject(e)){var r=e.x,o=void 0===r?0:r,a=e.y,i=void 0===a?0:a;return qo({transform:"translate("+Fa(o)+", "+Fa(i)+")"})}return""}Ha.x=function(e){return qo({transform:"translateX("+Fa(e)+")"})},Ha.y=function(e){return qo({transform:"translateY("+Fa(e)+")"})};var Ua={};function Va(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}Ua.clamp=function(e,t,n){return"max("+t+", min("+n+", "+e+"))"},Ua.color=ba,Ua.space=Io,Ua.px=Fa;var Wa={Tooltip:999999,Popover:9999,Dropdown:9998,Modal:999,ControlFocus:1};function Ya(e,t){return"number"==typeof e?e:"string"!=typeof e?t:(Wa[e]||"number"!=typeof t||(Wa[e]=t),Wa[e])}function Ka(e,t){return qo({zIndex:Ya(e,t)})}Ka.get=function(){return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Va(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Va(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},Wa)};var Qa={$:function(e){return new qa(e)},active:function(){return qo({"&:active":qo.apply(void 0,arguments)})},alignment:ea,animation:oa,background:da,border:pa,borderRadius:fa,browsers:va,color:ba,createToken:To,css:qo,flow:Mr,focus:function(){return qo({"&:focus":qo.apply(void 0,arguments)})},font:Na,frame:_a,get:Mo,getTokenValue:function(e){var t=Mo(e).replace("var(","").replace(/\)$/g,"");return window.getComputedStyle(document.documentElement).getPropertyValue(t)},hover:function(){return qo({"&:hover":qo.apply(void 0,arguments)})},margin:La,mode:Ma,offset:Ha,opacity:ja,padding:Ga,position:Ia,rotate:function(e){return qo({transform:"rotate("+e+"deg)"})},scale:function(e){return qo({transform:"scale("+e+")"})},scaleX:function(e){return qo({transform:"scaleX("+e+")"})},scaleY:function(e){return qo({transform:"scaleY("+e+")"})},shadow:function(e){if("number"==typeof e)return qo({boxShadow:Da(e)});if(!zt.plainObject(e))return"";var t=e.color,n=void 0===t?"black":t,r=e.radius,o=void 0===r?10:r,a=e.x,i=void 0===a?0:a,s=e.y,l=void 0===s?5:s,c=le()(n).setAlpha(.3).toRgbString()||"rgba(0, 0, 0, 0.3)";return qo({boxShadow:Fa(i)+" "+Fa(l)+" "+Fa(o)+" "+c})},space:Io,value:Ua,zIndex:Ka};function Za(){var e=He(["\n\tdisplay: block;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n"]);return Za=function(){return e},e}var Xa=qo(Za());function Ja(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ei(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ja(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ja(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ti,ni="auto",ri="head",oi="middle",ai="none",ii={ellipsis:"…",ellipsizeMode:ni,limit:0,numberOfLines:0};function si(e,t,n,r){if("string"!=typeof e)return"";var o=e.length,a=~~t,i=~~n,s=(0,ie.isNil)(r)?"…":r;return 0===a&&0===i||a>=o||i>=o||a+i>=o?e:0===i?e.slice(0,a)+s:e.slice(0,a)+s+e.slice(o-i)}function li(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ci(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?li(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):li(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ui(){var e=He(["\n\t\t\t-webkit-box-orient: vertical;\n\t\t\t-webkit-line-clamp: ",";\n\t\t\tdisplay: -webkit-box;\n\t\t\toverflow: hidden;\n\t\t"]);return ui=function(){return e},e}var di=Wn()((function(e){var t;if("string"!=typeof e)return"";if(function(e){return"string"==typeof e&&le()(e).isValid()}(e))return e;if(!e.includes("var("))return"";if("undefined"==typeof document)return"";var n=function(){if("undefined"!=typeof document){if(!ti){var e=document.createElement("div");e.setAttribute("data-g2-color-computation-node",""),document.body.appendChild(e),ti=e}return ti}}();if(!n)return"";n.style.background=e;var r=null===(t=window)||void 0===t?void 0:t.getComputedStyle(n).background;return n.style.background="",r||""}));function gi(){var e=He(["\n\ttext-transform: uppercase;\n"]);return gi=function(){return e},e}function pi(){var e=He(["\n\tmark {\n\t\tbackground: ",";\n\t\tborder-radius: 2px;\n\t\tbox-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.05 ) inset,\n\t\t\t0 -1px 0 rgba( 0, 0, 0, 0.1 ) inset;\n\t}\n"]);return pi=function(){return e},e}function fi(){var e=He(["\n\tcolor: ",";\n"]);return fi=function(){return e},e}function mi(){var e=He(["\n\tcolor: ",";\n"]);return mi=function(){return e},e}function hi(){var e=He(["\n\tcolor: ",";\n"]);return hi=function(){return e},e}function yi(){var e=He(["\n\tdisplay: block;\n"]);return yi=function(){return e},e}function vi(){var e=He(["\n\tcolor: ",";\n\tline-height: ",";\n"]);return vi=function(){return e},e}var bi=qo(vi(),Qa.color.text,Qa.get("fontLineHeightBase")),_i=qo(yi()),wi=qo(hi(),Qa.color.positive),Ei=qo(mi(),Qa.color.destructive),$i=qo(fi(),Qa.get("colorTextMuted")),Ci=qo(pi(),Qa.get("yellowRgba70")),ki=qo(gi());function Si(e){return Si="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Si(e)}var xi=__webpack_require__(6928);function Oi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Oi(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Oi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ai=Wn()((function(e){var t={};for(var n in e)t[n.toLowerCase()]=e[n];return t}));function Ni(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ri(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ni(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ni(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Ti=function(e){var t=e.as,n=e.name,r=void 0===n?"Component":n,o=e.useHook,a=void 0===o?ie.identity:o,i=e.memo,c=void 0===i||i;function u(e,n){var r=a(e);return(0,s.createElement)(Xo,l({as:t||"div"},r,{ref:n}))}return u.displayName=r,Yo(u,r,{memo:c})}({as:"span",useHook:function(t){var n=Uo(t,"Text"),r=n.adjustLineHeightForInnerControls,o=n.align,a=n.children,i=n.className,l=n.color,u=n.ellipsizeMode,d=n.isDestructive,g=void 0!==d&&d,p=n.display,f=n.highlightEscape,m=void 0!==f&&f,h=n.highlightCaseSensitive,y=void 0!==h&&h,v=n.highlightWords,b=n.highlightSanitize,_=n.isBlock,w=void 0!==_&&_,E=n.letterSpacing,$=n.lineHeight,C=n.optimizeReadabilityFor,k=n.size,S=n.truncate,x=void 0!==S&&S,O=n.upperCase,P=void 0!==O&&O,A=n.variant,N=n.weight,R=void 0===N?Qa.get("fontWeight"):N,T=c(n,["adjustLineHeightForInnerControls","align","children","className","color","ellipsizeMode","isDestructive","display","highlightEscape","highlightCaseSensitive","highlightWords","highlightSanitize","isBlock","letterSpacing","lineHeight","optimizeReadabilityFor","size","truncate","upperCase","variant","weight"]),M=a,j=Array.isArray(v),I="caption"===k;j&&(M=function(e){var t=e.activeClassName,n=void 0===t?"":t,r=e.activeIndex,o=void 0===r?-1:r,a=e.activeStyle,i=e.autoEscape,l=e.caseSensitive,c=void 0!==l&&l,u=e.children,d=e.findChunks,g=e.highlightClassName,p=void 0===g?"":g,f=e.highlightStyle,m=void 0===f?{}:f,h=e.highlightTag,y=void 0===h?"mark":h,v=e.sanitize,b=e.searchWords,_=void 0===b?[]:b,w=e.unhighlightClassName,E=void 0===w?"":w,$=e.unhighlightStyle;if(!u)return null;if("string"!=typeof u)return u;var C,k=u,S=(0,xi.findAll)({autoEscape:i,caseSensitive:c,findChunks:d,sanitize:v,searchWords:_,textToHighlight:k}),x=y,O=-1,P="",A=S.map((function(e,t){var r=k.substr(e.start,e.end-e.start);if(e.highlight){var i;O++,i="object"===Si(p)?c?p[r]:(p=Ai(p))[r.toLowerCase()]:p;var l=O===+o;P="".concat(i," ").concat(l?n:""),C=!0===l&&null!==a?Object.assign({},m,a):m;var u=Pi(Pi({},Qa.$("TextHighlight")),{},{children:r,className:P,key:t,style:C});return"string"!=typeof x&&(u.highlightIndex=O),(0,s.createElement)(x,u)}return(0,s.createElement)("span",Pi(Pi({},Qa.$("Text")),{},{children:r,className:E,key:t,style:$}))}));return A}({autoEscape:m,children:a,caseSensitive:y,searchWords:v,sanitize:b}));var F,D=(0,s.useMemo)((function(){var t,n={},a=function(e){var t=e.adjustLineHeightForInnerControls,n=e.lineHeight;if(!(0,ie.isNil)(n))return n;if(t){var r="calc(".concat(Qa.get("controlHeight")," + ").concat(Qa.space(2),")");switch(t){case"large":r="calc(".concat(Qa.get("controlHeightLarge")," + ").concat(Qa.space(2),")");break;case"small":r="calc(".concat(Qa.get("controlHeightSmall")," + ").concat(Qa.space(2),")");break;case"xSmall":r="calc(".concat(Qa.get("controlHeightXSmall")," + ").concat(Qa.space(2),")")}return r}}({lineHeight:$,adjustLineHeightForInnerControls:r});if(n.Base=qo({color:l,display:p,fontSize:Ea(k),fontWeight:R,lineHeight:a,letterSpacing:E,textAlign:o}),n.upperCase=qo({textTransform:"uppercase"}),n.optimalTextColor=null,C){var s="dark"==(t=function(e){var t=di(e);return le().isReadable(t,"#000000")?"#000000":"#ffffff"}(C),"#000000"===t?"dark":"light");n.optimalTextColor=qo(s?{color:Qa.get("black")}:{color:Qa.get("white")})}return jo(bi,n.Base,n.optimalTextColor,g&&Ei,!!j&&Ci,w&&_i,I&&$i,A&&e[A],P&&n.upperCase,i)}),[r,o,i,l,p,w,I,g,j,E,$,C,k,P,A,R]);!0===x&&(F="auto"),!1===x&&(F="none");var L=function(e){var t=Uo(e,"Truncate"),n=t.className,r=t.children,o=t.ellipsis,a=void 0===o?"…":o,i=t.ellipsizeMode,l=void 0===i?ni:i,u=t.limit,d=void 0===u?0:u,g=t.numberOfLines,p=void 0===g?0:g,f=c(t,["className","children","ellipsis","ellipsizeMode","limit","numberOfLines"]),m=function(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1?arguments[1]:void 0,o=ei(ei({},ii),r),a=o.ellipsis,i=o.ellipsizeMode,s=o.limit;if(i===ai)return n;switch(i){case ri:e=0,t=s;break;case oi:e=Math.floor(s/2),t=Math.floor(s/2);break;default:e=s,t=0}return i!==ni?si(n,e,t,a):n}("string"==typeof r?r:"",{ellipsis:a,ellipsizeMode:l,limit:d,numberOfLines:p}),h=l===ni,y=(0,s.useMemo)((function(){var e={};return e.numberOfLines=qo(ui(),p),jo(h&&!p&&Xa,h&&!!p&&e.numberOfLines,n)}),[n,p,h]);return ci(ci({},f),{},{className:y,children:m})}(Ri(Ri({},T),{},{className:D,children:a,ellipsizeMode:u||F}));return!x&&Array.isArray(a)&&(M=s.Children.map(a,(function(e){return(0,ie.isPlainObject)(e)&&"props"in e&&(n=["Link"],(t=e)&&("string"==typeof n?Ko(t).includes(n):Array.isArray(n)&&n.some((function(e){return Ko(t).includes(e)}))))?(0,s.cloneElement)(e,{size:e.props.size||"inherit"}):e;var t,n}))),Ri(Ri({},L),{},{children:x?L.children:M})},name:"Text"});function Mi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var ji=1===__webpack_require__(4155).env.COMPONENT_SYSTEM_PHASE?Ti:void 0,Ii=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return null},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){return null},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"Component",r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(e){return e};return 1===Qo.env.COMPONENT_SYSTEM_PHASE?Yo((function(o,a){var i=Uo(o,n),u=i.__unstableVersion,d=c(i,["__unstableVersion"]);if("next"===u){var g=r(d);return(0,s.createElement)(t,l({},g,{ref:a}))}return(0,s.createElement)(e,l({},o,{ref:a}))}),n):e}(J("p",{target:"e15wbhsk0",label:"Text"})("\n\tbox-sizing: border-box;\n\tmargin: 0;\n",yt,""),ji,"WPComponentsText",(function(e){var t=e.as,n=e.variant,r=c(e,["as","variant"]);return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Mi(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Mi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({as:t,css:yt({variant:n}).styles},r)})),Fi=__webpack_require__(4802),Di=()=>(0,s.createElement)(De,{className:"gla-get-started-benefits-card",isBorderless:!0},(0,s.createElement)(qe,null,(0,s.createElement)("div",{className:"gla-get-started-benefits-card__image"},(0,s.createElement)("img",{src:Fi,alt:(0,o.__)("Google Listings & Ads Benefits","google-listings-and-ads"),width:"100%",height:"100%"})),(0,s.createElement)(ze,null,(0,s.createElement)(Ii,{variant:"title.medium",className:"gla-get-started-benefits-card__title"},(0,s.createInterpolateElement)((0,o.__)("Increase clicks by <strong>50%</strong>","google-listings-and-ads"),{strong:(0,s.createElement)("strong",null)})),(0,s.createElement)(Ii,{variant:"body",className:"gla-get-started-benefits-card__description"},(0,o.__)("Using free listings and ads together increased clicks by 50% and doubled impressions. Small-to-medium merchants saw the largest share of the increases.","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-benefits-card__hint"},(0,o.__)("Source: Google Internal Data, July 2020","google-listings-and-ads"))))),Li=(0,s.forwardRef)((function(e,t){var n=e.className,r=c(e,["className"]),o=d()("components-flex__block",n);return(0,s.createElement)(re,l({},r,{className:o,ref:t}))}));function Gi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Bi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Gi(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Gi(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var qi={isBorderless:!1,isShady:!1,size:"medium"},zi=function(e){var t=e.className,n=e.isShady,r=c(e,["className","isShady"]),o=Bi(Bi(Bi({},qi),p()),e),a=o.isBorderless,i=o.size,u=d()("components-card__header",a&&"is-borderless",n&&"is-shady",i&&"is-size-".concat(i),t);return(0,s.createElement)(Ae,l({},r,{className:u}))},Hi=__webpack_require__(1704);const Ui=e=>{let{quote:t,name:n}=e;return(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Hi,alt:(0,o.__)("An image of a quote.","google-listings-and-ads"),width:"34",height:"34"}),(0,s.createElement)(Ii,{className:"gla-get-started-customer-quotes-card__content",variant:"body"},t),(0,s.createElement)(Ii,{className:"gla-get-started-customer-quotes-card__name"},n))};var Vi=()=>(0,s.createElement)(De,{className:"gla-get-started-customer-quotes-card",isBorderless:!0},(0,s.createElement)(zi,null,(0,s.createElement)(Ii,{className:"gla-get-started-customer-quotes-card__title",variant:"title.medium"},(0,o.__)("21,000+ WooCommerce store owners like you already list products on Google for free","google-listings-and-ads"))),(0,s.createElement)(ae,{gap:0},(0,s.createElement)(Ui,{quote:(0,o.__)("Thank you Google and WooCommerce for creating this app. It’s so simple to use and connect your products to Merchant Center.","google-listings-and-ads"),name:(0,o.__)("joshualukewhite","google-listings-and-ads")}),(0,s.createElement)(Ui,{quote:(0,o.__)("It does everything smoothly. Perfect and must need add-on from WooCommerce. Some things are just “essentials”.","google-listings-and-ads"),name:(0,o.__)("Anonymous","google-listings-and-ads")}))),Wi=function(e){var t=e.label,n=e.children;return(0,s.createElement)("div",{className:"components-panel__header"},t&&(0,s.createElement)("h2",null,t),n)},Yi=(0,s.forwardRef)((function(e,t){var n=e.header,r=e.className,o=e.children,a=d()(r,"components-panel");return(0,s.createElement)("div",{className:a,ref:t},n&&(0,s.createElement)(Wi,{label:n}),o)}));function Ki(e){var t=Et((0,s.useState)((function(){return!(!e||"undefined"==typeof window||!window.matchMedia(e).matches)})),2),n=t[0],r=t[1];return(0,s.useEffect)((function(){if(e){var t=function(){return r(window.matchMedia(e).matches)};t();var n=window.matchMedia(e);return n.addListener(t),function(){n.removeListener(t)}}}),[e]),e&&n}var Qi=__webpack_require__(4155),Zi="undefined"!=typeof window&&window.navigator.userAgent.indexOf("Trident")>=0,Xi=Qi.env.FORCE_REDUCED_MOTION||Zi?function(){return!0}:function(){return Ki("(prefers-reduced-motion: reduce)")};function Ji(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function es(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ji(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ji(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ts=function(e){return(0,s.createElement)("circle",e)},ns=function(e){return(0,s.createElement)("path",e)},rs=function(e){var t=e.className,n=e.isPressed,r=es(es({},c(e,["className","isPressed"])),{},{className:d()(t,{"is-pressed":n})||void 0,role:"img","aria-hidden":!0,focusable:!1});return(0,s.createElement)("svg",r)},os=(0,s.createElement)(rs,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,s.createElement)(ns,{d:"M6.5 12.4L12 8l5.5 4.4-.9 1.2L12 10l-4.5 3.6-1-1.2z"})),as=(0,s.createElement)(rs,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,s.createElement)(ns,{d:"M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"})),is=window.wp.deprecated,ss=__webpack_require__.n(is),ls=window.wp.dom,cs=window.wp.keycodes,us={huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},ds={">=":"min-width","<":"max-width"},gs={">=":function(e,t){return t>=e},"<":function(e,t){return t<e}},ps=(0,s.createContext)(null),fs=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:">=",n=(0,s.useContext)(ps),r=!n&&"(".concat(ds[t],": ").concat(us[e],"px)"),o=Ki(r);return n?gs[t](us[e],n):o};fs.__experimentalWidthProvider=ps.Provider;var ms=fs,hs=__webpack_require__(5464),ys=__webpack_require__.n(hs)(),vs=function(){return(0,s.useCallback)((function(e){e&&e.addEventListener("keydown",(function(t){if(t.keyCode===cs.TAB){var n=ls.focus.tabbable.find(e);if(n.length){var r=n[0],o=n[n.length-1];t.shiftKey&&t.target===r?(t.preventDefault(),o.focus()):(t.shiftKey||t.target!==o)&&n.includes(t.target)||(t.preventDefault(),r.focus())}}}))}),[])},bs=function(e){var t=(0,s.useRef)(),n=(0,s.useRef)(),r=(0,s.useRef)(e);return(0,s.useEffect)((function(){r.current=e}),[e]),(0,s.useCallback)((function(e){if(e){if(t.current=e,n.current)return;n.current=e.ownerDocument.activeElement}else if(n.current){var o=t.current.contains(t.current.ownerDocument.activeElement);if(t.current.isConnected&&!o)return;r.current?r.current():n.current.focus()}}),[])};function _s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"firstElement",t=(0,s.useRef)(e);return(0,s.useEffect)((function(){t.current=e}),[e]),(0,s.useCallback)((function(e){if(e&&!1!==t.current&&!e.contains(e.ownerDocument.activeElement)){var n=e;if("firstElement"===t.current){var r=ls.focus.tabbable.find(e)[0];r&&(n=r)}n.focus()}}),[])}var ws=["button","submit"];function Es(e){var t=(0,s.useRef)(e);(0,s.useEffect)((function(){t.current=e}),[e]);var n=(0,s.useRef)(!1),r=(0,s.useRef)(),o=(0,s.useCallback)((function(){clearTimeout(r.current)}),[]);(0,s.useEffect)((function(){return function(){return o()}}),[]),(0,s.useEffect)((function(){e||o()}),[e,o]);var a=(0,s.useCallback)((function(e){var t=e.type,r=e.target;(0,ie.includes)(["mouseup","touchend"],t)?n.current=!1:function(e){if(!(e instanceof window.HTMLElement))return!1;switch(e.nodeName){case"A":case"BUTTON":return!0;case"INPUT":return(0,ie.includes)(ws,e.type)}return!1}(r)&&(n.current=!0)}),[]),i=(0,s.useCallback)((function(e){e.persist(),n.current||(r.current=setTimeout((function(){document.hasFocus()?"function"==typeof t.current&&t.current(e):e.preventDefault()}),0))}),[]);return{onFocus:o,onMouseDown:a,onMouseUp:a,onTouchStart:a,onTouchEnd:a,onBlur:i}}var $s=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));function Cs(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ks(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Cs(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Cs(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ss(e,t,n,r,a,i,s,l){var c=t.width;"left"===n&&(0,o.isRTL)()?n="right":"right"===n&&(0,o.isRTL)()&&(n="left"),"left"===r&&(0,o.isRTL)()?r="right":"right"===r&&(0,o.isRTL)()&&(r="left");var u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-c/2>0?c/2:u)+(u+c/2>window.innerWidth?window.innerWidth-u:c/2)},g=e.left;"right"===r?g=e.right:"middle"!==i&&(g=u);var p=e.right;"left"===r?p=e.left:"middle"!==i&&(p=u);var f,m={popoverLeft:g,contentWidth:g-c>0?c:g},h={popoverLeft:p,contentWidth:p+c>window.innerWidth?window.innerWidth-p:c},y=n,v=null;if(!a&&!l)if("center"===n&&d.contentWidth===c)y="center";else if("left"===n&&m.contentWidth===c)y="left";else if("right"===n&&h.contentWidth===c)y="right";else{var b="left"==(y=m.contentWidth>h.contentWidth?"left":"right")?m.contentWidth:h.contentWidth;c>window.innerWidth&&(v=window.innerWidth),b!==c&&(y="center",d.popoverLeft=window.innerWidth/2)}if(f="center"===y?d.popoverLeft:"left"===y?m.popoverLeft:h.popoverLeft,s){var _=s.getBoundingClientRect();f=Math.min(f,_.right-c)}return{xAxis:y,popoverLeft:f,contentWidth:v}}function xs(e,t,n,r,o,a,i,s){var l=t.height;if(o){var c=o.getBoundingClientRect().top+l-i;if(e.top<=c)return{yAxis:n,popoverTop:Math.min(e.bottom,c)}}var u=e.top+e.height/2;"bottom"===r?u=e.bottom:"top"===r&&(u=e.top);var d={popoverTop:u,contentHeight:(u-l/2>0?l/2:u)+(u+l/2>window.innerHeight?window.innerHeight-u:l/2)},g={popoverTop:e.top,contentHeight:e.top-10-l>0?l:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+l>window.innerHeight?window.innerHeight-10-e.bottom:l},f=n,m=null;if(!o&&!s)if("middle"===n&&d.contentHeight===l)f="middle";else if("top"===n&&g.contentHeight===l)f="top";else if("bottom"===n&&p.contentHeight===l)f="bottom";else{var h="top"==(f=g.contentHeight>p.contentHeight?"top":"bottom")?g.contentHeight:p.contentHeight;m=h!==l?h:null}return{yAxis:f,popoverTop:"middle"===f?d.popoverTop:"top"===f?g.popoverTop:p.popoverTop,contentHeight:m}}function Os(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ps(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function As(e,t,n){return t&&Ps(e.prototype,t),n&&Ps(e,n),e}function Ns(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&_(e,t)}function Rs(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ts(e,t){if(t&&("object"===Si(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return Rs(e)}function Ms(e){return Ms=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Ms(e)}function js(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=Ms(e);if(t){var o=Ms(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Ts(this,n)}}var Is=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.htmlDocument,n=void 0===t?document:t,r=e.className,o=void 0===r?"lockscroll":r,a=0,i=0;function l(e){var t=n.scrollingElement||n.body;e&&(i=t.scrollTop);var r=e?"add":"remove";t.classList[r](o),n.documentElement.classList[r](o),e||(t.scrollTop=i)}function c(){0===a&&l(!0),++a}function u(){1===a&&l(!1),--a}return function(e){Ns(n,e);var t=js(n);function n(){return Os(this,n),t.apply(this,arguments)}return As(n,[{key:"componentDidMount",value:function(){c()}},{key:"componentWillUnmount",value:function(){u()}},{key:"render",value:function(){return null}}]),n}(s.Component)}();function Fs(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=Ms(e)););return e}function Ds(){return Ds="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(e,t,n){var r=Fs(e,t);if(r){var o=Object.getOwnPropertyDescriptor(r,t);return o.get?o.get.call(arguments.length<3?e:n):o.value}},Ds.apply(this,arguments)}function Ls(e){return function(e){if(Array.isArray(e))return bt(e)}(e)||Pn(e)||_t(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}window.wp.warning;var Gs=__webpack_require__(4155),Bs=(0,s.createContext)({slots:{},fills:{},registerSlot:function(){void 0!==Gs&&Gs.env},updateSlot:function(){},unregisterSlot:function(){},registerFill:function(){},unregisterFill:function(){}});var qs=(0,s.createContext)({registerSlot:function(){},unregisterSlot:function(){},registerFill:function(){},unregisterFill:function(){},getSlot:function(){},getFills:function(){},subscribe:function(){}}),zs=(qs.Provider,qs.Consumer);s.Component;var Hs=function(e){Ns(o,e);var t,n,r=(t=o,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=Ms(t);if(n){var o=Ms(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return Ts(this,e)});function o(){var e;return Os(this,o),(e=r.apply(this,arguments)).isUnmounted=!1,e.bindNode=e.bindNode.bind(Rs(e)),e}return As(o,[{key:"componentDidMount",value:function(){(0,this.props.registerSlot)(this.props.name,this)}},{key:"componentWillUnmount",value:function(){var e=this.props.unregisterSlot;this.isUnmounted=!0,e(this.props.name,this)}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.name,r=t.unregisterSlot,o=t.registerSlot;e.name!==n&&(r(e.name),o(n,this))}},{key:"bindNode",value:function(e){this.node=e}},{key:"forceUpdate",value:function(){this.isUnmounted||Ds(Ms(o.prototype),"forceUpdate",this).call(this)}},{key:"render",value:function(){var e=this.props,t=e.children,n=e.name,r=e.fillProps,o=void 0===r?{}:r,a=e.getFills,i=(0,ie.map)(a(n,this),(function(e){var t=e.occurrence,n=(0,ie.isFunction)(e.children)?e.children(o):e.children;return s.Children.map(n,(function(e,n){if(!e||(0,ie.isString)(e))return e;var r="".concat(t,"---").concat(e.key||n);return(0,s.cloneElement)(e,{key:r})}))})).filter((0,ie.negate)(s.isEmptyElement));return(0,s.createElement)(s.Fragment,null,(0,ie.isFunction)(t)?t(i):i)}}]),o}(s.Component),Us=function(e){return(0,s.createElement)(zs,null,(function(t){var n=t.registerSlot,r=t.unregisterSlot,o=t.getFills;return(0,s.createElement)(Hs,l({},e,{registerSlot:n,unregisterSlot:r,getFills:o}))}))},Vs=0;function Ws(e){var t=e.name,n=e.children,r=e.registerFill,o=e.unregisterFill,a=function(e){var t=(0,s.useContext)(qs),n=t.getSlot,r=t.subscribe,o=Et((0,s.useState)(n(e)),2),a=o[0],i=o[1];return(0,s.useEffect)((function(){return i(n(e)),r((function(){i(n(e))}))}),[e]),a}(t),i=(0,s.useRef)({name:t,children:n});return i.current.occurrence||(i.current.occurrence=++Vs),(0,s.useLayoutEffect)((function(){return r(t,i.current),function(){return o(t,i.current)}}),[]),(0,s.useLayoutEffect)((function(){i.current.children=n,a&&a.forceUpdate()}),[n]),(0,s.useLayoutEffect)((function(){t!==i.current.name&&(o(i.current.name,i.current),i.current.name=t,r(t,i.current))}),[t]),a&&a.node?((0,ie.isFunction)(n)&&(n=n(a.props.fillProps)),(0,s.createPortal)(n,a.node)):null}var Ys=function(e){return(0,s.createElement)(zs,null,(function(t){var n=t.registerFill,r=t.unregisterFill;return(0,s.createElement)(Ws,l({},e,{registerFill:n,unregisterFill:r}))}))};function Ks(e){var t=e.name,n=e.fillProps,r=void 0===n?{}:n,o=e.as,a=void 0===o?"div":o,i=c(e,["name","fillProps","as"]),u=(0,s.useContext)(Bs),d=(0,s.useRef)();return(0,s.useLayoutEffect)((function(){return u.registerSlot(t,d,r),function(){u.unregisterSlot(t,d)}}),[u.registerSlot,u.unregisterSlot,t]),(0,s.useLayoutEffect)((function(){u.updateSlot(t,r)})),(0,s.createElement)(a,l({ref:d},i))}function Qs(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Zs(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Qs(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Qs(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Xs(e){var t=(0,s.useContext)(Bs),n=t.slots[e]||{},r=t.fills[e],o=(0,s.useMemo)((function(){return r||[]}),[r]),a=(0,s.useCallback)((function(n){t.updateSlot(e,n)}),[e,t.updateSlot]),i=(0,s.useCallback)((function(n){t.unregisterSlot(e,n)}),[e,t.unregisterSlot]),l=(0,s.useCallback)((function(n){t.registerFill(e,n)}),[e,t.registerFill]),c=(0,s.useCallback)((function(n){t.unregisterFill(e,n)}),[e,t.unregisterFill]);return Zs(Zs({},n),{},{updateSlot:a,unregisterSlot:i,fills:o,registerFill:l,unregisterFill:c})}function Js(e){var t,n=e.name,r=e.children,o=Xs(n),a=(0,s.useRef)({rerender:(t=Et((0,s.useState)({}),2)[1],function(){return t({})})});return(0,s.useEffect)((function(){return o.registerFill(a),function(){o.unregisterFill(a)}}),[o.registerFill,o.unregisterFill]),o.ref&&o.ref.current?("function"==typeof r&&(r=r(o.fillProps)),(0,s.createPortal)(r,o.ref.current)):null}function el(e){var t=e.bubblesVirtually,n=c(e,["bubblesVirtually"]);return t?(0,s.createElement)(Ks,n):(0,s.createElement)(Us,n)}function tl(e){return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Ys,e),(0,s.createElement)(Js,e))}var nl="Popover";function rl(e,t){var n=t.defaultView,r=n.frameElement;if(!r)return e;var o=r.getBoundingClientRect();return new n.DOMRect(e.left+o.left,e.top+o.top,e.width,e.height)}function ol(e,t){var n,r=(n=t).ownerDocument.defaultView.getComputedStyle(n),o=r.paddingTop,a=r.paddingBottom,i=r.paddingLeft,s=r.paddingRight,l=o?parseInt(o,10):0,c=a?parseInt(a,10):0,u=i?parseInt(i,10):0,d=s?parseInt(s,10):0;return{x:e.left+u,y:e.top+l,width:e.width-u-d,height:e.height-l-c,left:e.left+u,right:e.right-d,top:e.top+l,bottom:e.bottom-c}}function al(e,t,n){n?e.getAttribute(t)!==n&&e.setAttribute(t,n):e.hasAttribute(t)&&e.removeAttribute(t)}function il(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";e.style[t]!==n&&(e.style[t]=n)}function sl(e,t,n){n?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}var ll=function(e){var t=e.headerTitle,n=e.onClose,r=e.onKeyDown,o=e.children,a=e.className,i=e.noArrow,u=void 0===i||i,g=e.isAlternate,p=e.position,m=void 0===p?"bottom right":p,h=(e.range,e.focusOnMount),y=void 0===h?"firstElement":h,v=e.anchorRef,b=e.shouldAnchorIncludePadding,_=e.anchorRect,w=e.getAnchorRect,E=e.expandOnMobile,$=e.animate,C=void 0===$||$,k=e.onClickOutside,S=e.onFocusOutside,x=e.__unstableStickyBoundaryElement,O=e.__unstableSlotName,P=void 0===O?nl:O,A=e.__unstableObserveElement,N=e.__unstableBoundaryParent,R=e.__unstableForcePosition,T=c(e,["headerTitle","onClose","onKeyDown","children","className","noArrow","isAlternate","position","range","focusOnMount","anchorRef","shouldAnchorIncludePadding","anchorRect","getAnchorRect","expandOnMobile","animate","onClickOutside","onFocusOutside","__unstableStickyBoundaryElement","__unstableSlotName","__unstableObserveElement","__unstableBoundaryParent","__unstableForcePosition"]),M=(0,s.useRef)(null),j=(0,s.useRef)(null),I=(0,s.useRef)(),F=ms("medium","<"),D=Et((0,s.useState)(),2),L=D[0],G=D[1],B=Xs(P),q=E&&F,z=Et(ys(),2),H=z[0],U=z[1];u=q||u,(0,s.useLayoutEffect)((function(){if(q)return sl(I.current,"is-without-arrow",u),sl(I.current,"is-alternate",g),al(I.current,"data-x-axis"),al(I.current,"data-y-axis"),il(I.current,"top"),il(I.current,"left"),il(j.current,"maxHeight"),void il(j.current,"maxWidth");var e=function(){if(I.current&&j.current){var e=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=arguments.length>4?arguments[4]:void 0;if(t)return t;if(n){if(!e.current)return;return n(e.current)}if(!1!==r){if(!(r&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==r?void 0:r.cloneRange))return rl((0,ls.getRectangleFromRange)(r),r.endContainer.ownerDocument);if("function"==typeof(null==r?void 0:r.getBoundingClientRect)){var a=rl(r.getBoundingClientRect(),r.ownerDocument);return o?a:ol(a,r)}var i=r.top,s=r.bottom,l=i.getBoundingClientRect(),c=s.getBoundingClientRect(),u=rl(new window.DOMRect(l.left,l.top,l.width,c.bottom-l.top),i.ownerDocument);return o?u:ol(u,r)}if(e.current){var d=e.current.parentNode,g=d.getBoundingClientRect();return o?g:ol(g,d)}}(M,_,w,v,b);if(e){var t,n,r=I.current,o=r.offsetParent,a=r.ownerDocument,i=0;if(o&&o!==a.body){var s=o.getBoundingClientRect();i=s.top,e=new window.DOMRect(e.left-s.left,e.top-s.top,e.width,e.height)}N&&(t=null===(n=I.current.closest(".popover-slot"))||void 0===n?void 0:n.parentNode);var l=function(e,t){var n=arguments.length>3?arguments[3]:void 0,r=arguments.length>5?arguments[5]:void 0,o=arguments.length>6?arguments[6]:void 0,a=arguments.length>7?arguments[7]:void 0,i=Et((arguments.length>2&&void 0!==arguments[2]?arguments[2]:"top").split(" "),3),s=i[0],l=i[1],c=void 0===l?"center":l,u=i[2],d=xs(e,t,s,u,n,0,r,a);return ks(ks({},Ss(e,t,c,u,n,d.yAxis,o,a)),d)}(e,U.height?U:j.current.getBoundingClientRect(),m,x,I.current,i,t,R),c=l.popoverTop,d=l.popoverLeft,p=l.xAxis,f=l.yAxis,h=l.contentHeight,y=l.contentWidth;"number"==typeof c&&"number"==typeof d&&(il(I.current,"top",c+"px"),il(I.current,"left",d+"px")),sl(I.current,"is-without-arrow",u||"center"===p&&"middle"===f),sl(I.current,"is-alternate",g),al(I.current,"data-x-axis",p),al(I.current,"data-y-axis",f),il(j.current,"maxHeight","number"==typeof h?h+"px":""),il(j.current,"maxWidth","number"==typeof y?y+"px":""),G(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[f]||"middle"))}}};e();var t,n=I.current.ownerDocument,r=n.defaultView,o=r.setInterval(e,500),a=function(){r.cancelAnimationFrame(t),t=r.requestAnimationFrame(e)};r.addEventListener("click",a),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);var i,s=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(v);return s&&s!==n&&(s.defaultView.addEventListener("resize",e),s.defaultView.addEventListener("scroll",e,!0)),A&&(i=new r.MutationObserver(e)).observe(A,{attributes:!0}),function(){r.clearInterval(o),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",a),r.cancelAnimationFrame(t),s&&s!==n&&(s.defaultView.removeEventListener("resize",e),s.defaultView.removeEventListener("scroll",e,!0)),i&&i.disconnect()}}),[q,_,w,v,b,m,U,x,A,N]);var V=vs(),W=bs(),Y=_s(y),K=Es((function(e){if(S)S(e);else if(k){var t;try{t=new window.MouseEvent("click")}catch(e){(t=document.createEvent("MouseEvent")).initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null)}Object.defineProperty(t,"target",{get:function(){return e.relatedTarget}}),ss()("Popover onClickOutside prop",{alternative:"onFocusOutside"}),k(t)}else n&&n()})),Q=[I,y?V:null,y?W:null,y?Y:null],Z=(0,s.useCallback)(nn(Q),Q),X=Boolean(C&&L)&&function(e){if("loading"===e.type)return d()("components-animate__loading");var t=e.type,n=e.origin,r=void 0===n?function(e){return"appear"===e?"top":"left"}(t):n;if("appear"===t){var o,a=Et(r.split(" "),2),i=a[0],s=a[1],l=void 0===s?"center":s;return d()("components-animate__appear",(f(o={},"is-from-"+l,"center"!==l),f(o,"is-from-"+i,"middle"!==i),o))}return"slide-in"===t?d()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:L}),J=(0,s.createElement)("div",l({className:d()("components-popover",a,X,{"is-expanded":q,"is-without-arrow":u,"is-alternate":g})},T,{onKeyDown:function(e){e.keyCode===cs.ESCAPE&&n&&(e.stopPropagation(),n()),r&&r(e)}},K,{ref:Z,tabIndex:"-1"}),q&&(0,s.createElement)(Is,null),q&&(0,s.createElement)("div",{className:"components-popover__header"},(0,s.createElement)("span",{className:"components-popover__header-title"},t),(0,s.createElement)(xl,{className:"components-popover__close",icon:$s,onClick:n})),(0,s.createElement)("div",{ref:j,className:"components-popover__content"},(0,s.createElement)("div",{style:{position:"relative"}},H,o)));return B.ref&&(J=(0,s.createElement)(tl,{name:P},J)),v||_?J:(0,s.createElement)("span",{ref:M},J)};ll.Slot=function(e){var t=e.name,n=void 0===t?nl:t;return(0,s.createElement)(el,{bubblesVirtually:!0,name:n,className:"popover-slot"})};var cl=ll,ul=function(e){var t,n,r=e.shortcut,o=e.className;return r?((0,ie.isString)(r)&&(t=r),(0,ie.isObject)(r)&&(t=r.display,n=r.ariaLabel),(0,s.createElement)("span",{className:o,"aria-label":n},t)):null};function dl(e,t){var n=(0,m.useState)((function(){return{inputs:t,result:e()}}))[0],r=(0,m.useRef)(!0),o=(0,m.useRef)(n),a=r.current||Boolean(t&&o.current.inputs&&function(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}(t,o.current.inputs))?o.current:{inputs:t,result:e()};return(0,m.useEffect)((function(){r.current=!1,o.current=a}),[a]),a.result}function gl(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?gl(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):gl(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var fl=(0,s.createElement)("div",{className:"event-catcher"}),ml=function(e){var t=e.eventHandlers,n=e.child,r=e.childrenWithPopover;return(0,s.cloneElement)((0,s.createElement)("span",{className:"disabled-element-wrapper"},(0,s.cloneElement)(fl,t),(0,s.cloneElement)(n,{children:r}),","),t)},hl=function(e){var t=e.child,n=e.eventHandlers,r=e.childrenWithPopover;return(0,s.cloneElement)(t,pl(pl({},n),{},{children:r}))},yl=function(e,t,n){if(1===s.Children.count(e)){var r=s.Children.only(e);"function"==typeof r.props[t]&&r.props[t](n)}},vl=function(e){var t=e.children,n=e.position,r=e.text,o=e.shortcut,a=Et((0,s.useState)(!1),2),i=a[0],l=a[1],c=Et((0,s.useState)(!1),2),u=c[0],d=c[1],g=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=dl((function(){return ie.debounce.apply(void 0,t)}),t);return(0,s.useEffect)((function(){return function(){return r.cancel()}}),[r]),r}(d,700),p=function(e){yl(t,"onMouseDown",e),document.addEventListener("mouseup",h),l(!0)},f=function(e){yl(t,"onMouseUp",e),document.removeEventListener("mouseup",h),l(!1)},m=function(e){return"mouseUp"===e?f:"mouseDown"===e?p:void 0},h=m("mouseUp"),y=function(e,n){return function(r){if(yl(t,e,r),!(r.currentTarget.disabled||"focus"===r.type&&i)){g.cancel();var o=(0,ie.includes)(["focus","mouseenter"],r.type);o!==u&&(n?g(o):d(o))}}},v=function(){g.cancel()};if((0,s.useEffect)((function(){return v}),[]),1!==s.Children.count(t))return t;var b={onMouseEnter:y("onMouseEnter",!0),onMouseLeave:y("onMouseLeave"),onClick:y("onClick"),onFocus:y("onFocus"),onBlur:y("onBlur"),onMouseDown:m("mouseDown")},_=s.Children.only(t),w=_.props,E=w.children,$=w.disabled?ml:hl,C=function(e){var t=e.grandchildren,n=e.isOver,r=e.position,o=e.text,a=e.shortcut;return(0,s.concatChildren)(t,n&&(0,s.createElement)(cl,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},o,(0,s.createElement)(ul,{className:"components-tooltip__shortcut",shortcut:a})))}(pl({grandchildren:E},{isOver:u,position:n,text:r,shortcut:o}));return $({child:_,eventHandlers:b,childrenWithPopover:C})},bl=function(e){var t=e.icon,n=e.className,r=c(e,["icon","className"]),o=["dashicon","dashicons","dashicons-"+t,n].filter(Boolean).join(" ");return(0,s.createElement)("span",l({className:o},r))};function _l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function wl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_l(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var El=function(e){var t=e.icon,n=void 0===t?null:t,r=e.size,o=c(e,["icon","size"]);if("string"==typeof n)return(0,s.createElement)(bl,l({icon:n},o));if(n&&bl===n.type)return(0,s.cloneElement)(n,wl({},o));var a=r||24;if("function"==typeof n)return n.prototype instanceof s.Component?(0,s.createElement)(n,wl({size:a},o)):n(wl({size:a},o));if(n&&("svg"===n.type||n.type===rs)){var i=wl(wl({width:a,height:a},n.props),o);return(0,s.createElement)(rs,i)}return(0,s.isValidElement)(n)?(0,s.cloneElement)(n,wl({size:a},o)):n};function $l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var Cl=function(e){var t=e.as,n=void 0===t?"div":t,r=e.className,o=c(e,["as","className"]);return function(e){var t=e.as,n=void 0===t?"div":t,r=c(e,["as"]);return"function"==typeof r.children?r.children(r):(0,s.createElement)(n,r)}(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?$l(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):$l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({as:n,className:d()("components-visually-hidden",r)},o))};function kl(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Sl=["onMouseDown","onClick"],xl=(0,s.forwardRef)((function(e,t){var n=e.href,r=e.target,o=e.isPrimary,a=e.isSmall,i=e.isTertiary,u=e.isPressed,g=e.isBusy,p=e.isDefault,f=e.isSecondary,m=e.isLink,h=e.isDestructive,y=e.className,v=e.disabled,b=e.icon,_=e.iconPosition,w=void 0===_?"left":_,E=e.iconSize,$=e.showTooltip,C=e.tooltipPosition,k=e.shortcut,S=e.label,x=e.children,O=e.text,P=e.__experimentalIsFocusable,A=e.describedBy,N=c(e,["href","target","isPrimary","isSmall","isTertiary","isPressed","isBusy","isDefault","isSecondary","isLink","isDestructive","className","disabled","icon","iconPosition","iconSize","showTooltip","tooltipPosition","shortcut","label","children","text","__experimentalIsFocusable","describedBy"]);p&&ss()("Button isDefault prop",{alternative:"isSecondary"});var R=d()("components-button",y,{"is-secondary":p||f,"is-primary":o,"is-small":a,"is-tertiary":i,"is-pressed":u,"is-busy":g,"is-link":m,"is-destructive":h,"has-text":!!b&&!!x,"has-icon":!!b}),T=v&&!P,M=void 0===n||T?"button":"a",j="a"===M?{href:n,target:r}:{type:"button",disabled:T,"aria-pressed":u};if(v&&P){j["aria-disabled"]=!0;var I,F=function(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return kl(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?kl(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,s=!1;return{s:function(){n=e[Symbol.iterator]()},n:function(){var e=n.next();return i=e.done,e},e:function(e){s=!0,a=e},f:function(){try{i||null==n.return||n.return()}finally{if(s)throw a}}}}(Sl);try{for(F.s();!(I=F.n()).done;)N[I.value]=function(e){e.stopPropagation(),e.preventDefault()}}catch(e){F.e(e)}finally{F.f()}}var D=!T&&($&&S||k||!!S&&(!x||(0,ie.isArray)(x)&&!x.length)&&!1!==$),L=A?(0,ie.uniqueId)():null,G=N["aria-describedby"]||L,B=(0,s.createElement)(M,l({},j,N,{className:R,"aria-label":N["aria-label"]||S,"aria-describedby":G,ref:t}),b&&"left"===w&&(0,s.createElement)(El,{icon:b,size:E}),O&&(0,s.createElement)(s.Fragment,null,O),b&&"right"===w&&(0,s.createElement)(El,{icon:b,size:E}),x);return D?(0,s.createElement)(s.Fragment,null,(0,s.createElement)(vl,{text:A||S,shortcut:k,position:C},B),A&&(0,s.createElement)(Cl,null,(0,s.createElement)("span",{id:L},A))):(0,s.createElement)(s.Fragment,null,B,A&&(0,s.createElement)(Cl,null,(0,s.createElement)("span",{id:L},A)))}));function Ol(e){return null!=e}function Pl(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0;return null!==(e=t.find(Ol))&&void 0!==e?e:n}function Al(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Nl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Al(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Al(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var Rl={initial:void 0,fallback:""},Tl=function(e,t){var n=(0,s.useRef)(!1);(0,s.useEffect)((function(){if(n.current)return e();n.current=!0}),t)},Ml=(0,s.forwardRef)((function(e,t){var n=e.isOpened,r=e.icon,o=e.title,a=c(e,["isOpened","icon","title"]);return o?(0,s.createElement)("h2",{className:"components-panel__body-title"},(0,s.createElement)(xl,l({className:"components-panel__body-toggle","aria-expanded":n,ref:t},a),(0,s.createElement)("span",{"aria-hidden":"true"},(0,s.createElement)(El,{className:"components-panel__arrow",icon:n?os:as})),o,r&&(0,s.createElement)(El,{icon:r,className:"components-panel__icon",size:20}))):null})),jl=(0,s.forwardRef)((function(e,t){var n=e.buttonProps,r=void 0===n?{}:n,o=e.children,a=e.className,i=e.icon,c=e.initialOpen,u=e.onToggle,g=void 0===u?ie.noop:u,p=e.opened,f=e.title,m=e.scrollAfterOpen,h=void 0===m||m,y=Et(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Rl,n=Nl(Nl({},Rl),t),r=n.initial,o=n.fallback,a=Et((0,s.useState)(e),2),i=a[0],l=a[1],c=Ol(e);return(0,s.useEffect)((function(){c&&i&&l(void 0)}),[c,i]),[Pl([e,i,r],o),function(e){c||l(e)}]}(p,{initial:void 0===c||c}),2),v=y[0],b=y[1],_=(0,s.useRef)(),w=Xi()?"auto":"smooth",E=(0,s.useRef)();E.current=h,Tl((function(){var e;v&&E.current&&null!==(e=_.current)&&void 0!==e&&e.scrollIntoView&&_.current.scrollIntoView({inline:"nearest",block:"nearest",behavior:w})}),[v,w]);var $=d()("components-panel__body",a,{"is-opened":v});return(0,s.createElement)("div",{className:$,ref:nn([_,t])},(0,s.createElement)(Ml,l({icon:i,isOpened:v,onClick:function(e){e.preventDefault();var t=!v;b(t),g(t)},title:f},r)),"function"==typeof o?o({opened:v}):v&&o)}));jl.displayName="PanelBody";var Il=jl,Fl=function(e){var t=e.className,n=e.children,r=d()("components-panel__row",t);return(0,s.createElement)("div",{className:r},n)},Dl=__webpack_require__(4940);const Ll=(e,t,n)=>r=>{(0,Dl.recordEvent)(e,{id:t,action:r?"expand":"collapse",context:n})};function Gl(e){let{trackName:t,faqItems:n,className:r,context:a}=e;return(0,s.createElement)(Yi,{className:d()("gla-faqs-panel",r),header:(0,o.__)("Frequently asked questions","google-listings-and-ads")},n.map((e=>{let{trackId:n,question:r,answer:o}=e;return(0,s.createElement)(Il,{key:n,title:r,initialOpen:!1,onToggle:Ll(t,n,a)},(0,s.createElement)(Fl,null,o))})))}var Bl=window.wc.components,ql=e=>{const{eventName:t,eventProps:n,onClick:r=(()=>{}),...o}=e;return(0,s.createElement)(Bl.Link,l({},o,{onClick:e=>{t&&(0,Dl.recordEvent)(t,n),r(e)}}))},zl=e=>{const{context:t,linkId:n,href:r,...o}=e;return(0,s.createElement)(ql,l({eventProps:{context:t,link_id:n,href:r},type:"external",target:"_blank",href:r},o,{eventName:"gla_documentation_link_click"}))};const Hl=[{trackId:"what-do-i-need-to-get-started",question:(0,o.__)("What do I need to get started?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("In order to sync your WooCommerce store with Google and begin showcasing your products online, you will need to provide the following during setup; Google account access, target audience, shipping information, tax rate information (required for US only), and ensure your store is running on a compatible PHP version. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"general-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/#general-requirements"})}))},{trackId:"what-if-i-already-have-free-listings",question:(0,o.__)("What if I already have Google listings or ads set up? Will syncing my store replace my current Google listings?","google-listings-and-ads"),answer:(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,o.__)("Once you link an existing account to connect your store, your Shopping ads and free listings will stop running. You’ll need to re-upload your feed and product data in order to run Shopping ads and show free listings.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Learn more about claiming URLs <link>here</link>.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"claiming-urls",href:"https://support.google.com/merchants/answer/7527436"})})),(0,s.createElement)("p",null,(0,o.__)("If you have an existing Content API feed, it will not be changed, overwritten or deleted by this WooCommerce integration. Instead, products will be added to your existing Content API feed.","google-listings-and-ads")))},{trackId:"is-my-store-ready-to-sync-with-google",question:(0,o.__)("Is my store ready to sync with Google?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("In order to meet the Google Merchant Center requirements make sure your website has the following; secure checkout process and payment information, refund and return policies, billing terms and conditions, business contact information. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"google-merchant-center-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/#google-merchant-center-requirements"})}))},{trackId:"what-is-a-performance-max-campaign",question:(0,o.__)("What is a Performance Max campaign?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Performance Max campaigns make it easy to connect your WooCommerce store to Google Shopping ads so you can showcase your products to shoppers across Google Search, Maps, Shopping, YouTube, Gmail, the Display Network and Discover feed to drive traffic and sales for your store. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"performance-max",href:"https://woocommerce.com/document/google-listings-and-ads/#google-performance-max-campaigns"})}))},{trackId:"what-are-free-listings",question:(0,o.__)("What are free listings?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Google Free Listings allows stores to showcase eligible products to shoppers looking for what you offer and drive traffic to your store with Google’s free listings on the Shopping tab. Your products can also appear on Google Search, Google Images, and Gmail if you’re selling in the United States. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"free-listings",href:"https://woocommerce.com/document/google-listings-and-ads/#free-listings-on-google"})}))},{trackId:"where-to-track-free-listings-and-performance-max-campaign-performance",question:(0,o.__)("Where can I track my free listings and Performance Max campaign performance?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Once your free listings and Performance Max campaigns are set up, you will be able to track your performance straight from your WooCommerce dashboard. You can view your reports yearly, quarterly, monthly, weekly, or daily. The following metrics will be visible within your report: conversions, clicks, impressions, total sales and total spend. <link>Learn more.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"campaign-analytics",href:"https://woocommerce.com/document/google-listings-and-ads/#getting-started-with-campaign-analytics"})}))},{trackId:"how-to-sync-products-to-google-free-listings",question:(0,o.__)("How do I sync my products to Google free listings?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,o.__)("The Google Listings and Ads plugin allows you to upload your store and product data to Google. Your products will sync automatically to make relevant information available for free listings, Google Ads, and other Google services. You can create a new Merchant Center account or link an existing account to connect your store and list products across Google.","google-listings-and-ads"))},{trackId:"can-i-run-both-shopping-ads-and-free-listings-campaigns",question:(0,o.__)("Can I run both Shopping ads and free listings campaigns at the same time?","google-listings-and-ads"),answer:(0,s.createElement)("p",null,(0,o.__)("Yes, you can run both at the same time, and we recommend it! In the US, advertisers running free listings and ads together have seen an average of over 50% increase in clicks and over 100% increase in impressions on both free listings and ads on the Shopping tab. Your store is automatically opted into free listings automatically and can choose to run a paid Performance Max campaign.","google-listings-and-ads"))},{trackId:"how-can-i-get-the-ad-credit-offer",question:(0,o.__)("How can I get the $500 ad credit offer?","google-listings-and-ads"),answer:(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,o.__)("Create a new Google Ads account through Google Listings & Ads and a promotional code will be automatically applied to your account. You’ll have 60 days to spend $500 to qualify for the $500 ads credit.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Ad credit amounts vary by country and region. Full terms and conditions can be found <link>here</link>.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"faqs",linkId:"terms-and-conditions-of-google-ads-coupons",href:"https://www.google.com/ads/coupons/terms/"})})))}];var Ul=()=>(0,s.createElement)(Gl,{className:"gla-get-started-faqs",trackName:"gla_faq",context:"get-started",faqItems:Hl}),Vl=__webpack_require__(2454),Wl=__webpack_require__(9648),Yl=__webpack_require__(434);const Kl=e=>{let{linkId:t,href:n}=e;return(0,s.createElement)(Ii,{className:"gla-get-started-features-card__learn-more",variant:"body"},(0,s.createInterpolateElement)((0,o.__)("<link>Learn More →</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"get-started",linkId:t,href:n})}))};var Ql=()=>(0,s.createElement)(De,{className:"gla-get-started-features-card",isBorderless:!0},(0,s.createElement)(zi,null,(0,s.createElement)(Ii,{className:"gla-get-started-features-card__title",variant:"title.medium"},(0,o.__)("49% of shoppers surveyed say they use Google to discover or find a new item or product","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__description",variant:"body"},(0,o.__)("With Google Listings & Ads, connect with the right shoppers at the right moment when they’re looking to buy products like yours.","google-listings-and-ads"))),(0,s.createElement)(ae,{gap:0},(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Vl,alt:(0,o.__)("Drawing of WooCommerce and Google","google-listings-and-ads"),width:"183",height:"100"}),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__label",variant:"label"},(0,o.__)("Show products automatically on Google for free","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__content",variant:"body"},(0,o.__)("When your products are added and approved, they’ll be eligible for free listings, reaching shoppers across Google’s network.","google-listings-and-ads")),(0,s.createElement)(Kl,{linkId:"get-started-features-free-listing-learn-more",href:"https://woocommerce.com/document/google-listings-and-ads/#free-listings-on-google"})),(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Wl,alt:(0,o.__)("Drawing of a mobile and product ads","google-listings-and-ads"),width:"183",height:"100"}),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__label",variant:"label"},(0,o.__)("Promote products and drive more sales with paid ads","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__content",variant:"body"},(0,o.__)("Connect your Google Ads account, choose a budget, and Google will optimize your ads so they appear at the right time and place. ","google-listings-and-ads")),(0,s.createElement)(Kl,{linkId:"get-started-features-google-ads-learn-more",href:"https://woocommerce.com/document/google-listings-and-ads/#google-performance-max-campaigns"})),(0,s.createElement)(Li,null,(0,s.createElement)("img",{src:Yl,alt:(0,o.__)("Drawing of a bar and line charts heading up","google-listings-and-ads"),width:"183",height:"100"}),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__label",variant:"label"},(0,o.__)("Track performance straight from your store dashboard","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-features-card__content",variant:"body"},(0,o.__)("Real-time reporting all within your WooCommerce dashboard means you know how your campaigns are performing at all times.","google-listings-and-ads")),(0,s.createElement)(Kl,{linkId:"get-started-features-dashboard-learn-more",href:"https://woocommerce.com/document/google-listings-and-ads/#getting-started-with-campaign-analytics"}))));const Zl=window.glaData,Xl="report-source",Jl="paid",ec="free",tc=Jl,nc="programs",rc="submission-success",oc="campaign-creation-success",ac="gla-can-onboarding-setup-ces-prompt-open",ic="GOOGLE_DISCONNECTED",sc="flat_rate",lc="product",cc="account",uc="request-review";var dc=__webpack_require__(4682),gc=e=>{const{className:t,disabled:n,loading:r,eventName:o,eventProps:a,text:i,onClick:c=(()=>{}),...u}=e,g=["app-button",t];let p;return r&&(p=(0,s.createElement)(Bl.Spinner,null)),i&&(p=(0,s.createElement)(s.Fragment,null,r&&(0,s.createElement)(Bl.Spinner,null),i),u.icon&&g.push("app-button--icon-with-text"),"right"===u.iconPosition&&g.push("app-button--icon-position-right")),(0,s.createElement)(xl,l({className:d()(...g),disabled:n||r,text:p,onClick:function(){o&&(0,Dl.recordEvent)(o,a),c(...arguments)}},u))},pc=window.wc.navigation;const fc="/google/dashboard",mc="/google/settings",hc="/free-listings/edit",yc="/campaigns/edit",vc="/campaigns/create",bc="/edit-phone-number",_c="/edit-store-address",wc="/reconnect-wpcom-account",Ec="/reconnect-google-account",$c=fc,Cc=mc,kc=()=>(0,pc.getNewPath)({subpath:vc},$c),Sc=()=>(0,pc.getNewPath)(null,"/google/setup-mc",null),xc=()=>(0,pc.getNewPath)(null,$c,null),Oc=()=>(0,pc.getNewPath)(null,Cc,null),Pc=e=>{let t;switch(e){case"JETPACK_DISCONNECTED":t=wc;break;case ic:t=Ec;break;default:return}return(0,pc.getNewPath)({subpath:t},Cc,null)};var Ac=()=>{const e=!Zl.mcSupportedLanguage;return(0,s.createElement)(De,{className:"gla-get-started-card",isBorderless:!0},(0,s.createElement)(ze,{className:"motivation-image"},(0,s.createElement)("img",{src:dc,alt:(0,o.__)("Google Shopping search results example","google-listings-and-ads"),width:"279",height:"185"})),(0,s.createElement)(qe,null,(0,s.createElement)(Ii,{variant:"title.medium",className:"gla-get-started-card__title"},(0,o.__)("Get your products in front of more shoppers with Google Listings & Ads","google-listings-and-ads")),(0,s.createElement)(gc,{isPrimary:!0,disabled:e,href:Sc(),eventName:"gla_setup_mc",eventProps:{target:"set_up_free_listings",trigger:"click",context:"get-started"}},(0,o.__)("Start listing products →","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-card__terms-notice"},(0,s.createInterpolateElement)((0,o.__)("By clicking ‘Start listing products‘, you agree to our <link>Terms of Service.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"get-started",linkId:"wp-terms-of-service",href:"https://wordpress.com/tos/"})}))))},Nc=function(e){return(0,s.createElement)("div",{className:"components-tip"},(0,s.createElement)(rs,{width:"24",height:"24",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})),(0,s.createElement)("p",null,e.children))};const Rc={allow:"fullscreen",allowtransparency:"true",scrolling:"no",width:"100%",height:"100%",className:"wistia_embed",name:"wistia_embed"};var Tc=e=>{const{id:t,src:n,title:r,iframeProps:a={}}=e,[i,c]=(0,s.useState)(!1);return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ie.noop;(0,s.useEffect)((()=>{const n=document.createElement("script");return n.src=e,n.async=!0,document.body.appendChild(n),n.onload=()=>{t()},()=>{document.body.removeChild(n)}}),[e,t])}("https://fast.wistia.com/assets/external/E-v1.js",(0,s.useCallback)((()=>{window._wq&&window._wq.push({id:t,onReady:e=>{e.bind("play",(()=>c(!0)))}})}),[t,c])),(0,s.createElement)("div",{className:d()("gla-wistia-video",i?"is-playing":"")},(0,s.createElement)("div",{className:"gla-wistia-video__container"},(0,s.createElement)("iframe",l({src:n,title:r?(0,o.sprintf)(// translators: %s: The title of the iframe.
2
+ (0,o.__)("%s Video","google-listings-and-ads"),r):(0,o.__)("Wistia Video","google-listings-and-ads")},Rc,a))))},Mc=__webpack_require__(5314),jc=()=>{const e=!Zl.mcSupportedLanguage;return(0,s.createElement)(De,{className:"gla-get-started-with-video-card",isBorderless:!0},(0,s.createElement)(zi,null,(0,s.createElement)("p",null,(0,o.__)("The official extension for WooCommerce, built in collaboration with","google-listings-and-ads")),(0,s.createElement)("img",{src:Mc,alt:(0,o.__)("Google Logo","google-listings-and-ads"),width:"71",height:"24"})),(0,s.createElement)(Li,{className:"motivation-video"},(0,s.createElement)(Tc,{id:"lpvgtsjwrg",src:"https://fast.wistia.net/embed/iframe/lpvgtsjwrg?seo=false&videoFoam=true",title:"WooCommerce-Google-Listings-Ads"})),(0,s.createElement)(qe,null,(0,s.createElement)(Ii,{variant:"title.medium",className:"gla-get-started-with-video-card__title"},(0,o.__)("Reach new customers across Google with free product listings and paid ads","google-listings-and-ads")),(0,s.createElement)(Ii,{variant:"body",className:"gla-get-started-with-video-card__description"},(0,o.__)("Sync your products directly to Google, manage your product feed, and create Google Ad campaigns–without leaving your WooCommerce dashboard. The official extension, built in collaboration with Google.","google-listings-and-ads")),(0,s.createElement)(gc,{className:"gla-get-started-with-video-card__button",isPrimary:!0,disabled:e,href:Sc(),eventName:"gla_setup_mc",eventProps:{target:"set_up_free_listings",trigger:"click",context:"get-started-with-video"}},(0,o.__)("Start listing products →","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-with-video-card__hint"},(0,o.__)("Estimated setup time: 15 min","google-listings-and-ads")),(0,s.createElement)(Ii,{className:"gla-get-started-with-video-card__terms-notice",variant:"body"},(0,s.createInterpolateElement)((0,o.__)("By clicking ‘Start listing products’, you agree to our <link>Terms of Service.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"get-started-with-video",linkId:"wp-terms-of-service",href:"https://wordpress.com/tos/"})}))),(0,s.createElement)(Nc,null,(0,o.__)("If you’re already using another extension to manage your product feed with Google, make sure to deactivate or uninstall it first to prevent duplicate product feeds.","google-listings-and-ads")))},Ic=window.wp.a11y,Fc=function(e){var t=e.className,n=e.status,r=void 0===n?"info":n,a=e.children,i=e.spokenMessage,l=void 0===i?a:i,c=e.onRemove,u=void 0===c?ie.noop:c,g=e.isDismissible,p=void 0===g||g,f=e.actions,m=void 0===f?[]:f,h=e.politeness,y=void 0===h?function(e){switch(e){case"success":case"warning":case"info":return"polite";default:return"assertive"}}(r):h,v=e.__unstableHTML;!function(e,t){var n="string"==typeof e?e:(0,s.renderToString)(e);(0,s.useEffect)((function(){n&&(0,Ic.speak)(n,t)}),[n,t])}(l,y);var b=d()(t,"components-notice","is-"+r,{"is-dismissible":p});return v&&(a=(0,s.createElement)(s.RawHTML,null,a)),(0,s.createElement)("div",{className:b},(0,s.createElement)("div",{className:"components-notice__content"},a,m.map((function(e,t){var n=e.className,r=e.label,o=e.isPrimary,a=e.noDefaultClasses,i=void 0!==a&&a,l=e.onClick,c=e.url;return(0,s.createElement)(xl,{key:t,href:c,isPrimary:o,isSecondary:!i&&!c,isLink:!i&&!!c,onClick:c?void 0:l,className:d()("components-notice__action",n)},r)}))),p&&(0,s.createElement)(xl,{className:"components-notice__dismiss",icon:$s,label:(0,o.__)("Dismiss this notice"),onClick:u,showTooltip:!1}))},Dc=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}));const Lc="wc/gla",Gc="core/notices";var Bc,qc,zc=window.wp.dataControls,Hc=window.wp.apiFetch,Uc=__webpack_require__.n(Hc),Vc="RECEIVE_SHIPPING_RATES",Wc="UPSERT_SHIPPING_RATES",Yc="DELETE_SHIPPING_RATES",Kc="RECEIVE_SHIPPING_TIMES",Qc="UPSERT_SHIPPING_TIMES",Zc="DELETE_SHIPPING_TIMES",Xc="RECEIVE_SETTINGS",Jc="SAVE_SETTINGS",eu="RECEIVE_ACCOUNTS_JETPACK",tu="RECEIVE_ACCOUNTS_GOOGLE",nu="RECEIVE_ACCOUNTS_GOOGLE_ACCESS",ru="RECEIVE_ACCOUNTS_GOOGLE_MC",ou="RECEIVE_ACCOUNTS_GOOGLE_MC_EXISTING",au="RECEIVE_ACCOUNTS_GOOGLE_ADS",iu="DISCONNECT_ACCOUNTS_GOOGLE",su="DISCONNECT_ACCOUNTS_GOOGLE_ADS",lu="DISCONNECT_ACCOUNTS_ALL",cu="RECEIVE_ACCOUNTS_GOOGLE_ADS_BILLING_STATUS",uu="RECEIVE_ACCOUNTS_GOOGLE_ADS_EXISTING",du="RECEIVE_MC_CONTACT_INFORMATION",gu="VERIFIED_MC_PHONE_NUMBER",pu="RECEIVE_MC_COUNTRIES_AND_CONTINENTS",fu="RECEIVE_TARGET_AUDIENCE",mu="SAVE_TARGET_AUDIENCE",hu="RECEIVE_ADS_CAMPAIGNS",yu="CREATE_ADS_CAMPAIGN",vu="UPDATE_ADS_CAMPAIGN",bu="DELETE_ADS_CAMPAIGN",_u="RECEIVE_MC_SETUP",wu="RECEIVE_REPORT",Eu="RECEIVE_MC_PRODUCT_STATISTICS",$u="RECEIVE_MC_REVIEW_REQUEST",Cu="RECEIVE_MC_ISSUES",ku="RECEIVE_MC_PRODUCT_FEED",Su="UPDATE_MC_PRODUCTS_VISIBILITY";function xu(e){const t=e.targeted_locations.length>0,n=t?e.targeted_locations:[e.country];return{...e,allowMultiple:t,displayCountries:n}}function Ou(e,t){const{createNotice:n}=(0,dn.dispatch)("core/notices");401!==e.statusCode&&n("error",t),console.log(e)}function*Pu(){try{const e=(yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/rates"})).map((e=>({...e,rate:Number(e.rate)})));return{type:Vc,shippingRates:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading shipping rates.","google-listings-and-ads"))}}function*Au(e){const t=(yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/rates/batch",method:"POST",data:{rates:e}})).success.map((e=>({...e.rate,rate:Number(e.rate.rate)})));return{type:Wc,shippingRates:t}}function*Nu(e){return yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/rates/batch",method:"DELETE",data:{ids:e}}),{type:Yc,ids:e}}function*Ru(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/times"}),t=Object.values(e).map((e=>({countryCode:e.country_code,time:Number(e.time)})));return{type:Kc,shippingTimes:t}}catch(e){yield Ou(e,(0,o.__)("There was an error loading shipping times.","google-listings-and-ads"))}}function*Tu(e){const{countryCodes:t,time:n}=e;try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/times/batch",method:"POST",data:{country_codes:t,time:n}}),{type:Qc,shippingTime:e}}catch(e){yield Ou(e,(0,o.__)("There was an error trying to add / update shipping times. Please try again later.","google-listings-and-ads"))}}function*Mu(e){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/shipping/times/batch",method:"DELETE",data:{country_codes:e}}),{type:Zc,countryCodes:e}}catch(e){yield Ou(e,(0,o.__)("There was an error trying to delete shipping times. Please try again later.","google-listings-and-ads"))}}function*ju(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/settings"});return{type:Xc,settings:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading merchant center settings.","google-listings-and-ads"))}}function*Iu(e){return yield(0,zc.apiFetch)({path:"/wc/gla/mc/settings",method:"POST",data:e}),{type:Jc,settings:e}}function*Fu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/jetpack/connected"});return{type:eu,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Jetpack account info.","google-listings-and-ads"))}}function*Du(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/google/connected"});return{type:tu,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google account info.","google-listings-and-ads"))}}function Lu(e){return{type:nu,data:e}}function*Gu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/connection"});return{type:ru,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google Merchant Center account info.","google-listings-and-ads"))}}function*Bu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/accounts"});return{type:ou,accounts:e}}catch(e){yield Ou(e,(0,o.__)("There was an error getting your Google Merchant Center accounts.","google-listings-and-ads"))}}function*qu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/ads/connection"});return{type:au,account:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google Ads account info.","google-listings-and-ads"))}}function*zu(){try{return yield(0,zc.apiFetch)({path:"/wc/gla/google/connect",method:"DELETE"}),{type:iu}}catch(e){throw yield Ou(e,(0,o.__)("Unable to disconnect your Google account. Please try again later.","google-listings-and-ads")),e}}function*Hu(){try{return yield(0,zc.apiFetch)({path:"/wc/gla/ads/connection",method:"DELETE"}),{type:su}}catch(e){throw yield Ou(e,(0,o.__)("Unable to disconnect your Google Ads account. Please try again later.","google-listings-and-ads")),e}}function*Uu(){try{return yield(0,zc.apiFetch)({path:"/wc/gla/connections",method:"DELETE"}),{type:lu}}catch(e){throw yield Ou(e,(0,o.__)("Unable to disconnect all your accounts. Please try again later.","google-listings-and-ads")),e}}function*Vu(){try{return td(yield(0,zc.apiFetch)({path:"/wc/gla/ads/billing-status"}))}catch(e){yield Ou(e,(0,o.__)("There was an error getting the billing status of your Google Ads account.","google-listings-and-ads"))}}function*Wu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/ads/accounts"});return{type:uu,accounts:e}}catch(e){yield Ou(e,(0,o.__)("There was an error getting your Google Ads accounts.","google-listings-and-ads"))}}function Yu(e){return{type:du,data:e}}function*Ku(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/contact-information",method:"POST"});yield Yu(e)}catch(e){throw yield Ou(e,(0,o.__)("Unable to update your Google Merchant Center contact information. Please try again later.","google-listings-and-ads")),e}}function*Qu(e,t,n){try{return{verificationId:(yield(0,zc.apiFetch)({path:"/wc/gla/mc/phone-verification/request",method:"POST",data:{phone_region_code:e,phone_number:t,verification_method:n}})).verification_id}}catch(e){if("rateLimitExceeded"===e.reason)throw{...e,display:(0,o.__)("Unable to initiate the verification code request. A maximum of five attempts to verify the same phone number every four hours. Please try again later.","google-listings-and-ads")};yield Ou(e,(0,o.__)("Unable to request the phone verification code. Please try again later.","google-listings-and-ads"))}}function*Zu(e,t,n){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/phone-verification/verify",method:"POST",data:{verification_id:e,verification_code:t,verification_method:n}}),{type:gu}}catch(e){const{reason:t,message:n=""}=e;if("badRequest"===t){const[,t]=n.match(/^\[(\w+)\]/)||[],r={verificationCode:(0,o.__)("Wrong verification code. Please try again.","google-listings-and-ads"),verificationId:(0,o.__)("The verification code has expired. Please initiate a new verification request by the resend button.","google-listings-and-ads")};if(t in r)throw{...e,display:r[t]}}yield Ou(e,(0,o.__)("Unable to verify your phone number. Please try again later.","google-listings-and-ads"))}}function*Xu(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/target_audience"});return{type:fu,target_audience:e}}catch(e){yield Ou(e,(0,o.__)("There was an error loading target audience.","google-listings-and-ads"))}}function Ju(e){return{type:ru,account:e}}function ed(e){return{type:au,account:e}}function td(e){return{type:cu,billingStatus:e}}function*nd(e){return yield(0,zc.apiFetch)({path:"/wc/gla/mc/target_audience",method:"POST",data:e}),{type:mu,target_audience:e}}function*rd(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/ads/campaigns"});return{type:hu,adsCampaigns:e.map(xu)}}catch(e){yield Ou(e,(0,o.__)("There was an error loading ads campaigns.","google-listings-and-ads"))}}function*od(e,t){try{const n=yield(0,zc.apiFetch)({path:"/wc/gla/ads/campaigns",method:"POST",data:{amount:e,targeted_locations:t}});return{type:yu,createdCampaign:xu(n)}}catch(e){throw yield Ou(e,(0,o.__)("Unable to create your paid ads campaign. Please try again later.","google-listings-and-ads")),e}}function*ad(e,t){try{return yield(0,zc.apiFetch)({path:`/wc/gla/ads/campaigns/${e}`,method:"PATCH",data:t}),{type:vu,id:e,data:t}}catch(e){throw yield Ou(e,(0,o.__)("Unable to update your paid ads campaign. Please try again later.","google-listings-and-ads")),e}}function*id(e){try{return yield(0,zc.apiFetch)({path:`/wc/gla/ads/campaigns/${e}`,method:"DELETE"}),{type:bu,id:e}}catch(e){throw yield Ou(e,(0,o.__)("Unable to delete your paid ads campaign. Please try again later.","google-listings-and-ads")),e}}function sd(e,t){return{type:wu,reportKey:e,data:t}}function*ld(){try{return cd(yield(0,zc.apiFetch)({path:"/wc/gla/mc/setup"}))}catch(e){yield Ou(e,(0,o.__)("There was an error loading your merchant center setup status.","google-listings-and-ads"))}}function*cd(e){return{type:_u,mcSetup:e}}function*ud(e){return{type:Eu,mcProductStatistics:e}}function*dd(e){return{type:$u,mcReviewRequest:e}}function*gd(e,t){return{type:Cu,query:e,data:t}}function*pd(e,t){return{type:ku,query:e,data:t}}function*fd(e,t){try{return yield(0,zc.apiFetch)({path:"/wc/gla/mc/product-visibility",method:"POST",data:{ids:e,visible:t}}),{type:Su}}catch(e){throw yield Ou(e,(0,o.__)("Unable to update the channel visibility of products. Please try again later.","google-listings-and-ads")),e}}function*md(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/review",method:"POST"});return yield dd(e)}catch(e){throw yield Ou(e,null==e?void 0:e.message),e}}function hd(e){return[e]}function yd(e){return!!e&&"object"==typeof e}function vd(){var e={clear:function(){e.head=null}};return e}function bd(e,t,n){var r;if(e.length!==t.length)return!1;for(r=n;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}function _d(e,t){var n,r;function o(){n=qc?new WeakMap:vd()}function a(){var n,o,a,i,s,l=arguments.length;for(i=new Array(l),a=0;a<l;a++)i[a]=arguments[a];for(s=t.apply(null,i),(n=r(s)).isUniqueByDependants||(n.lastDependants&&!bd(s,n.lastDependants,0)&&n.clear(),n.lastDependants=s),o=n.head;o;){if(bd(o.args,i,1))return o!==n.head&&(o.prev.next=o.next,o.next&&(o.next.prev=o.prev),o.next=n.head,o.prev=null,n.head.prev=o,n.head=o),o.val;o=o.next}return o={val:e.apply(null,i)},i[0]=null,o.args=i,n.head&&(n.head.prev=o,o.next=n.head),n.head=o,o.val}return t||(t=hd),r=qc?function(e){var t,r,o,a,i=n,s=!0;for(t=0;t<e.length;t++){if(!yd(r=e[t])){s=!1;break}i.has(r)?i=i.get(r):(o=new WeakMap,i.set(r,o),i=o)}return i.has(Bc)||((a=vd()).isUniqueByDependants=s,i.set(Bc,a)),i.get(Bc)}:function(){return n},a.getDependants=t,a.clear=o,o(),a}Bc={},qc="undefined"!=typeof WeakMap;var wd=window.wp.date,Ed=__webpack_require__(9171);const $d=["clicks","impressions"],Cd=["sales","conversions","spend",...$d],kd=Object.freeze({NONE:0,FOR_METRIC:1,FOR_REQUEST:2});function Sd(e,t,n){const r=(0,Ed.getCurrentDates)(t);return{after:(0,wd.format)("Y-m-d",r[n].after),before:(0,wd.format)("Y-m-d",r[n].before),fields:"free"===e?$d:Cd}}function xd(e,t,n){return`${e}:${t}:${JSON.stringify(n,Object.keys(n).sort())}`}function Od(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;return(n||Object.keys(e)).reduce(((n,r)=>({...n,[r]:Pd(e[r],t[r],e[r]&&t[r]?kd.NONE:kd.FOR_REQUEST)})),{})}const Pd=(e,t,n)=>({value:e,delta:Ad(e,t),prevValue:t,missingFreeListingsData:n});function Ad(e,t){let n=null;if("number"==typeof e&&"number"==typeof t&&(n=0,e!==t)){const r=(e-t)/t*100;n=Number.isFinite(r)?function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;const n=Math.pow(10,t);return Math.round(e*n)/n}(r):null}return n}const Nd=e=>e.mc.shipping.rates,Rd=e=>e.mc.shipping.times,Td=e=>e.mc.settings,Md=e=>e.mc.accounts.jetpack,jd=e=>e.mc.accounts.google,Id=e=>e.mc.accounts.google_access,Fd=e=>e.mc.accounts.mc,Dd=e=>e.mc.accounts.existing_mc,Ld=e=>e.mc.accounts.ads,Gd=e=>e.mc.accounts.ads_billing_status,Bd=e=>e.mc.accounts.existing_ads,qd=e=>e.mc.contact,zd=(0,dn.createRegistrySelector)((e=>t=>{const n=e(Lc);return{loaded:!!qd(t)||n.hasFinishedResolution("getGoogleMCContactInformation"),data:n.getGoogleMCContactInformation()}})),Hd=_d((e=>{const{countries:t,continents:n}=e.mc;return{countries:t,continents:n}}),(e=>[e.mc.countries,e.mc.continents])),Ud=e=>e.mc.target_audience,Vd=e=>e.ads_campaigns,Wd=e=>e.mc_setup,Yd=e=>e.mc_product_statistics,Kd=e=>e.mc_review_request,Qd=_d(((e,t)=>{const n=e.mc_issues[t.issue_type];if(!n)return n;const r=(t.page-1)*t.per_page,o=r+t.per_page;return{issues:n.issues.slice(r,o),total:n.total}}),(e=>[e.mc_issues])),Zd=(e,t)=>e.mc_product_feed?{products:e.mc_product_feed.pages[t.page],total:e.mc_product_feed.total}:e.mc_product_feed,Xd=(e,t,n,r)=>{const o=xd(t,n,r);return e.report[o]||null},Jd=(0,dn.createRegistrySelector)((e=>(t,n,r,o,a)=>{const i=e(Lc),s=function(e,t,n,r){const o=Sd(t,n,r),{order:a="desc"}=n;let{orderby:i}=n;i&&o.fields.includes(i)||(i=o.fields[0]);const s={...o,interval:"day",orderby:i,order:a};return"programs"===e&&n.programs?s.ids=n.programs:"products"===e&&n.products&&(s.ids=n.products.replace(/\d+/g,"gla_$&")),s}(n,r,o,a),l=[n,r,s];return{reportQuery:s,loaded:i.hasFinishedResolution("getReportByApiQuery",l),data:i.getReportByApiQuery(...l)}})),eg=(0,dn.createRegistrySelector)((e=>(t,n,r,o)=>{const a=e(Lc),i=["programs",n,Sd(n,r,o)],s=a.getReportByApiQuery(...i);return{data:s?s.totals:null,loaded:a.hasFinishedResolution("getReportByApiQuery",i)}}));var tg=window.wp.url;function*ng(){yield Pu()}function*rg(){yield Ru()}function*og(){yield ju()}function*ag(){yield Fu()}function*ig(){yield Du()}function*sg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/google/reconnected"});yield Lu(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google account access info.","google-listings-and-ads"))}}function*lg(){yield Gu()}function*cg(){yield Bu()}function*ug(){yield qu()}function*dg(){yield Vu()}function*gg(){yield Wu()}function*pg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/contact-information"});yield Yu(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading Google Merchant Center contact information.","google-listings-and-ads"))}}function*fg(){try{const e={continents:!0},t=(0,tg.addQueryArgs)("/wc/gla/mc/countries",e),n=yield(0,zc.apiFetch)({path:t});return{type:pu,data:n}}catch(e){yield Ou(e,(0,o.__)("There was an error loading supported country details.","google-listings-and-ads"))}}function*mg(){yield Xu()}function*hg(){yield rd()}function*yg(){yield ld()}function*vg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/product-statistics"});yield ud(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading your merchant center product statistics.","google-listings-and-ads"))}}function*bg(){try{const e=yield(0,zc.apiFetch)({path:"/wc/gla/mc/review"});yield dd(e)}catch(e){yield Ou(e,(0,o.__)("There was an error loading your merchant center product review request status.","google-listings-and-ads"))}}function*_g(e){try{const{issue_type:t,...n}=e,r=yield(0,zc.apiFetch)({path:(0,tg.addQueryArgs)(`/wc/gla/mc/issues/${t||cc}`,n)});yield gd(e,r)}catch(e){yield Ou(e,(0,o.__)("There was an error loading issues to resolve.","google-listings-and-ads"))}}function*wg(e){try{const t=yield(0,zc.apiFetch)({path:(0,tg.addQueryArgs)("/wc/gla/mc/product-feed",e)});yield pd(e,t)}catch(e){yield Ou(e,(0,o.__)("There was an error loading product feed.","google-listings-and-ads"))}}ig.shouldInvalidate=e=>e.type===iu,sg.shouldInvalidate=e=>e.type===iu,pg.shouldInvalidate=e=>e.type===gu,_g.shouldInvalidate=e=>e.type===Su,wg.shouldInvalidate=(e,t)=>e.type===Su||e.type===ku&&(e.query.per_page!==t.per_page||e.query.orderby!==t.orderby||e.query.order!==t.order);const Eg=new Map([[ec,"mc"],[Jl,"ads"]]);function*$g(e,t,n){const r=`/wc/gla/${Eg.get(t)}/reports/${e}`,a=(0,tg.addQueryArgs)(r,n);try{const r=yield(0,zc.apiFetch)({path:a}),o=xd(e,t,n);yield sd(o,r)}catch(e){yield Ou(e,(0,o.__)("There was an error loading report.","google-listings-and-ads"))}}const Cg={mc:{target_audience:null,countries:null,continents:null,shipping:{rates:[],times:[]},settings:null,accounts:{jetpack:null,google:null,mc:null,ads:null,existing_mc:null,existing_ads:null,ads_billing_status:null,google_access:null},contact:null},ads_campaigns:null,mc_setup:null,mc_product_statistics:null,mc_issues:{account:null,product:null},mc_review_request:{status:null,cooldown:null,issues:null,reviewEligibleRegions:[]},mc_product_feed:null,report:{}};function kg(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const n=Object.assign(e.constructor(),e),r=e=>null==e?{}:(0,ie.clone)(e),o=e=>t?Array.isArray(t)||Array.isArray(e)?[].concat(t,e):`${t}.${e}`:e;return{setIn(e,t){const a=o(e);return(0,ie.setWith)(n,a,t,r),this},end:()=>n}}function Sg(e,t,n){return kg(e).setIn(t,n).end()}function xg(e,t){return t?e.json?e.json():Promise.reject(e):e}(0,dn.registerStore)(Lc,{actions:t,selectors:n,resolvers:r,controls:zc.controls,reducer:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Cg,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case Vc:return Sg(e,"mc.shipping.rates",t.shippingRates);case Wc:{const{shippingRates:n}=t,r=[...e.mc.shipping.rates];return n.forEach((e=>{const t=r.findIndex((t=>t.id===e.id));t>=0?r[t]=e:r.push(e)})),Sg(e,"mc.shipping.rates",r)}case Yc:{const{ids:n}=t,r=e.mc.shipping.rates.filter((e=>!n.includes(e.id)));return Sg(e,"mc.shipping.rates",r)}case Kc:return Sg(e,"mc.shipping.times",t.shippingTimes);case Qc:{const{countryCodes:n,time:r}=t.shippingTime,o=[...e.mc.shipping.times];return n.forEach((e=>{const t={countryCode:e,time:r},n=o.findIndex((t=>t.countryCode===e));n>=0?o[n]=t:o.push(t)})),Sg(e,"mc.shipping.times",o)}case Zc:{const n=new Set(t.countryCodes),r=e.mc.shipping.times.filter((e=>!n.has(e.countryCode)));return Sg(e,"mc.shipping.times",r)}case Xc:return Sg(e,"mc.settings",t.settings);case Jc:return Sg(e,"mc.settings",{...e.mc.settings,...t.settings});case eu:return Sg(e,"mc.accounts.jetpack",t.account);case tu:return Sg(e,"mc.accounts.google",t.account);case nu:return Sg(e,"mc.accounts.google_access",t.data);case ru:return Sg(e,"mc.accounts.mc",t.account);case ou:return Sg(e,"mc.accounts.existing_mc",t.accounts);case au:return Sg(e,"mc.accounts.ads",t.account);case su:return Sg(e,"mc.accounts.ads",Cg.mc.accounts.ads);case cu:return Sg(e,"mc.accounts.ads_billing_status",t.billingStatus);case uu:return Sg(e,"mc.accounts.existing_ads",t.accounts);case du:return Sg(e,"mc.contact",t.data);case pu:{const{data:n}=t;return kg(e,"mc").setIn("countries",n.countries).setIn("continents",n.continents).end()}case fu:case mu:return Sg(e,"mc.target_audience",t.target_audience);case hu:return Sg(e,"ads_campaigns",t.adsCampaigns);case yu:return Sg(e,"ads_campaigns",[...e.ads_campaigns||[],t.createdCampaign]);case vu:{const{id:n,data:r}=t,o=e.ads_campaigns.findIndex((e=>e.id===n)),a={...e.ads_campaigns[o],...r},i=[...e.ads_campaigns];return i[o]=a,Sg(e,"ads_campaigns",i)}case bu:{const{id:n}=t,r=e.ads_campaigns.filter((e=>e.id!==n));return Sg(e,"ads_campaigns",r)}case _u:return Sg(e,"mc_setup",t.mcSetup);case Eu:return Sg(e,"mc_product_statistics",t.mcProductStatistics);case $u:return Sg(e,"mc_review_request",t.mcReviewRequest);case Cu:{var n;const{query:r,data:o}=t,a=(null===(n=e.mc_issues[r.issue_type])||void 0===n?void 0:n.issues.slice())||[];return a.splice((r.page-1)*r.per_page,r.per_page,...o.issues),kg(e,`mc_issues.${r.issue_type}`).setIn("issues",a).setIn("total",o.total).end()}case ku:{const{query:n,data:r}=t,o=e.mc_product_feed||{},a=kg(e,"mc_product_feed");return o.per_page===n.per_page&&o.order===n.order&&o.orderby===n.orderby||a.setIn("pages",{}),a.setIn(["pages",n.page],r.products).setIn("per_page",n.per_page).setIn("order",n.order).setIn("orderby",n.orderby).setIn("total",r.total).end()}case wu:{const{reportKey:n,data:r}=t;return Sg(e,["report",n],r)}default:return e}}}),Uc().use(function(e){const t=new RegExp("^/wc/gla/");return function(n,r){if(!t.test(n.path))return r(n);const{parse:o=!0}=n;return r({...n,parse:!1}).catch(e).catch((async e=>Promise.reject(await xg(e,o)))).then((e=>o&&204===e.status?null:xg(e,o)))}}((e=>{if(Zl.mcSetupComplete&&401===e.status)return(e.json||e.text).call(e).then((e=>"string"==typeof e?{message:e}:e)).then((e=>{const t=Pc(e.code);return t&&(0,pc.getHistory)().replace(t),e})).then((t=>Promise.reject({...t,statusCode:e.status})));throw e})));const Og=()=>(0,dn.useDispatch)(Lc);var Pg=e=>{const t=(0,s.useRef)(e);return(0,ie.isEqual)(t.current,e)||(t.current=e),t.current},Ag=function(e){const{invalidateResolution:t}=Og();for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];const a=Pg(r),i=(0,s.useCallback)((()=>{t(e,a)}),[t,e,a]);return(0,dn.useSelect)((t=>{const{isResolving:n,hasFinishedResolution:r}=t(Lc),o=t(Lc)[e](...a);return{isResolving:n(e,a),hasFinishedResolution:r(e,a),data:o,invalidateResolution:i}}),[i,e,a])},Ng=()=>Ag("getTargetAudience"),Rg=window.wc.data;function Tg(){return(0,dn.useSelect)((e=>{const{getSetting:t}=e(Rg.SETTINGS_STORE_NAME),n=(0,i.getSetting)("countries"),r=t("general","general"),[o]=r.woocommerce_default_country.split(":");return{code:o,name:n[o]}}),[])}const Mg=()=>(0,s.createElement)(El,{className:"gla-get-started-notice__icon",icon:Dc,size:18}),jg=()=>{const{data:e}=Ng();return e?(0,s.createElement)(Fc,{className:"gla-get-started-notice",status:"error",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("Your site language is <language />. This language is currently not supported by Google Listings & Ads. <settingsLink>You can change your site language here</settingsLink>. <supportedLanguagesLink>Read more about supported languages</supportedLanguagesLink>","google-listings-and-ads"),{language:(0,s.createElement)("strong",null,e.language),settingsLink:(0,s.createElement)(Bl.Link,{className:"gla-get-started-notice__link",type:"wp-admin",href:"/wp-admin/options-general.php"}),supportedLanguagesLink:(0,s.createElement)(zl,{className:"gla-get-started-notice__link",href:"https://support.google.com/merchants/answer/160637",context:"get-started",linkId:"supported-languages"})}),(0,s.createElement)(Mg,null)):null},Ig=()=>{const{name:e}=Tg();return e?(0,s.createElement)(Fc,{className:"gla-get-started-notice",status:"warning",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("Your store’s country is <country />. This country is currently not supported by Google Listings & Ads. However, you can still choose to list your products in another supported country, if you are able to sell your products to customers there. <settingsLink>Change your store’s country here</settingsLink>. <supportedCountriesLink>Read more about supported countries</supportedCountriesLink>","google-listings-and-ads"),{country:(0,s.createElement)("strong",null,e),settingsLink:(0,s.createElement)(Bl.Link,{className:"gla-get-started-notice__link",type:"wp-admin",href:"/wp-admin/admin.php?page=wc-settings"}),supportedCountriesLink:(0,s.createElement)(zl,{className:"gla-get-started-notice__link",href:"https://support.google.com/merchants/answer/160637",context:"get-started",linkId:"supported-countries"})}),(0,s.createElement)(Mg,null)):null};function Fg(){const{mcSupportedLanguage:e,mcSupportedCountry:t}=Zl;return(0,s.createElement)(s.Fragment,null,!e&&(0,s.createElement)(jg,null),!t&&(0,s.createElement)(Ig,null))}var Dg=()=>(0,s.createElement)("div",{className:"woocommerce-marketing-google-get-started-page"},(0,s.createElement)(Fg,null),(0,s.createElement)(jc,null),(0,s.createElement)(Di,null),(0,s.createElement)(Ql,null),(0,s.createElement)(Vi,null),(0,s.createElement)(Ac,null),(0,s.createElement)(Ul,null));const Lg={"full-page":["woocommerce-admin-full-screen","is-wp-toolbar-disabled","gla-full-page"],"full-content":["gla-full-content"]};function Gg(e){(0,s.useEffect)((()=>{if(!Lg.hasOwnProperty(e))return;const t=document.body.classList,n=Lg[e].filter((e=>!t.contains(e)));return t.add(...n),()=>{t.remove(...n)}}),[e])}var Bg=__webpack_require__(8222),qg=e=>{let{title:t,backHref:n,helpButton:r,onBackButtonClick:o}=e;return(0,s.createElement)("div",{className:"gla-stepper-top-bar"},(0,s.createElement)(Bl.Link,{className:"back-button",href:n,type:"wc-admin",onClick:o},(0,s.createElement)(Bg.Z,null)),(0,s.createElement)("span",{className:"title"},t),(0,s.createElement)("div",{className:"actions"},r))},zg=__webpack_require__(7719),Hg=e=>{const{icon:t,text:n,className:r="",...o}=e;return(0,s.createElement)(gc,l({className:`app-icon-button ${r}`},o),(0,s.createElement)("div",null,t),n)},Ug=e=>{const{eventContext:t,...n}=e;return(0,s.createElement)(Hg,l({icon:(0,s.createElement)(zg.Z,null),text:(0,o.__)("Help","google-listings-and-ads"),href:"https://docs.woocommerce.com/document/google-listings-and-ads/",target:"_blank",eventName:"gla_help_click",eventProps:{context:t}},n))},Vg=()=>(0,s.createElement)(qg,{title:(0,o.__)("Get started with Google Listings & Ads","google-listings-and-ads"),helpButton:(0,s.createElement)(Ug,{eventContext:"setup-mc"}),backHref:(0,pc.getNewPath)({},"/google/start"),onBackButtonClick:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"back",trigger:"click"})}}),Wg=()=>(0,s.createElement)("div",{className:"app-spinner"},(0,s.createElement)(Bl.Spinner,null)),Yg=()=>(0,dn.useSelect)((e=>({jetpack:e(Lc).getJetpackAccount(),isResolving:e(Lc).isResolving("getJetpackAccount"),hasFinishedResolution:e(Lc).hasFinishedResolution("getJetpackAccount")})),[]);const Kg="https://www.googleapis.com/auth/content",Qg="https://www.googleapis.com/auth/siteverification.verify_only",Zg="https://www.googleapis.com/auth/adwords";function Xg(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];const n={adsRequired:t.includes(Zg)};return n.gmcRequired=t.includes(Kg)&&t.includes(Qg),n.glaRequired=e?n.gmcRequired&&n.adsRequired:n.gmcRequired,n}var Jg=()=>{const{jetpack:e,isResolving:t,hasFinishedResolution:n}=Yg();return(0,dn.useSelect)((r=>{if(!e||"no"===e.active)return{google:void 0,scope:Xg(Zl.adsSetupComplete),isResolving:t,hasFinishedResolution:n};const{getGoogleAccount:o,isResolving:a,hasFinishedResolution:i}=r(Lc),s=o();return{google:s,scope:Xg(Zl.adsSetupComplete,null==s?void 0:s.scope),isResolving:a("getGoogleAccount"),hasFinishedResolution:i("getGoogleAccount")}}),[e,t,n])},ep=()=>{const{google:e,scope:t,isResolving:n,hasFinishedResolution:r}=Jg();return(0,dn.useSelect)((o=>{if(!e||"no"===e.active||!t.gmcRequired)return{googleMCAccount:void 0,isResolving:n,hasFinishedResolution:r};const{getGoogleMCAccount:a,isResolving:i,hasFinishedResolution:s}=o(Lc);return{googleMCAccount:a(),isResolving:i("getGoogleMCAccount"),hasFinishedResolution:s("getGoogleMCAccount")}}),[e,t.gmcRequired,n,r])},tp=e=>{const{className:t="",children:n,...r}=e;return(0,s.createElement)("div",l({className:`gla-step-content ${t}`},r),(0,s.createElement)("div",{className:"gla-step-content__container"},n))},np=e=>{const{className:t="",title:n,description:r}=e;return(0,s.createElement)("header",{className:`gla-step-content-header ${t}`},(0,s.createElement)("h1",null,n),(0,s.createElement)("div",{className:"description"},r))},rp=e=>{const{className:t="",...n}=e;return(0,s.createElement)("div",l({className:`gla-step-content-footer ${t}`},n))};function op(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ap(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?op(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):op(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ip={isBorderless:!1,isShady:!1,size:"medium"},sp=function(e){var t=e.className,n=e.isShady,r=c(e,["className","isShady"]),o=ap(ap(ap({},ip),p()),e),a=o.isBorderless,i=o.size,u=d()("components-card__footer",a&&"is-borderless",n&&"is-shady",i&&"is-size-".concat(i),t);return(0,s.createElement)(Re,l({},r,{className:u}))};const lp=e=>{const{className:t="",...n}=e;return(0,s.createElement)("div",l({className:`wcdl-subsection ${t}`},n))};lp.Title=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",l({className:d()("wcdl-subsection-title",t)},n))},lp.Body=e=>{const{children:t}=e;return(0,s.createElement)("div",{className:"wcdl-subsection-body"},t)},lp.HelperText=e=>{const{className:t,children:n}=e;return(0,s.createElement)("div",{className:d()("wcdl-subsection-helper-text",t)},n)};var cp=lp;const up=e=>{let{size:t="",...n}=e;return(0,s.createElement)(De,l({},n,{size:t}))};up.Body=e=>{const{className:t,...n}=e;return(0,s.createElement)(qe,l({className:d()("wcdl-section-card-body",t)},n))},up.Footer=e=>{const{children:t,...n}=e;return(0,s.createElement)(sp,l({className:"wcdl-section-card-footer"},n),t)},up.Title=e=>{const{className:t,...n}=e;return(0,s.createElement)(cp.Title,l({className:d()("wcdl-section-card-title",t)},n))};const dp=e=>{let{className:t,title:n,description:r,children:o,disabled:a}=e;const i=d()("wcdl-section",!!a&&"wcdl-section--is-disabled",t);return(0,s.createElement)("section",{className:i},(0,s.createElement)("header",null,n&&(0,s.createElement)("h1",null,n),r),(0,s.createElement)("div",{className:"wcdl-section__body"},o))};dp.Card=up;var gp=dp;const pp={normal:!1,large:"gla-vertical-gap-layout__large",overlap:"gla-vertical-gap-layout__overlap"};var fp=e=>{const{className:t,size:n="normal",...r}=e;return(0,s.createElement)("div",l({className:d()("gla-vertical-gap-layout",pp[n],t)},r))};function mp(e){return"yes"!==e.active?"":"yes"===e.owner?e.email:(0,o.__)("Successfully connected through Jetpack","google-listings-and-ads")}var hp=__webpack_require__(4886);function yp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var vp=function(e){var t=e.icon,n=e.size,r=void 0===n?24:n,o=c(e,["icon","size"]);return(0,s.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yp(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yp(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:r,height:r},o))},bp=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{fillRule:"evenodd",d:"M19.75 11H21V8.667L19.875 4H4.125L3 8.667V11h1.25v8.75h15.5V11zm-1.5 0H5.75v7.25H10V13h4v5.25h4.25V11zm-5.5-5.5h2.067l.486 3.24.028.76H12.75v-4zm-3.567 0h2.067v4H8.669l.028-.76.486-3.24zm7.615 3.1l-.464-3.1h2.36l.806 3.345V9.5h-2.668l-.034-.9zM7.666 5.5h-2.36L4.5 8.845V9.5h2.668l.034-.9.464-3.1z",clipRule:"evenodd"})),_p=__webpack_require__(8026),wp=__webpack_require__(4515);const Ep={EMPTY:"empty",WPCOM:"wpcom",GOOGLE:"google",GOOGLE_MERCHANT_CENTER:"google_merchant_center",GOOGLE_ADS:"google_ads",PHONE:"phone",ADDRESS:"address"},$p=(0,s.createElement)("img",{src:_p,alt:(0,o.__)("Google Logo","google-listings-and-ads"),width:"40",height:"40"}),Cp=(0,s.createElement)("img",{src:wp,alt:(0,o.__)("WordPress.com Logo","google-listings-and-ads"),width:"40",height:"40"}),kp={[Ep.EMPTY]:{},[Ep.WPCOM]:{icon:Cp,title:"WordPress.com"},[Ep.GOOGLE]:{icon:$p,title:(0,o.__)("Google","google-listings-and-ads")},[Ep.GOOGLE_MERCHANT_CENTER]:{icon:$p,title:(0,o.__)("Google Merchant Center","google-listings-and-ads"),description:(0,o.__)("Required to sync products and list on Google Shopping","google-listings-and-ads")},[Ep.GOOGLE_ADS]:{icon:$p,title:(0,o.__)("Google Ads","google-listings-and-ads"),description:(0,o.__)("Required to create paid campaigns with your product listings","google-listings-and-ads")},[Ep.PHONE]:{icon:(0,s.createElement)(hp.Z,{size:32}),title:(0,o.__)("Phone number","google-listings-and-ads")},[Ep.ADDRESS]:{icon:(0,s.createElement)(vp,{icon:bp,size:32}),title:(0,o.__)("Store address","google-listings-and-ads")}},Sp={center:!1,top:"gla-account-card__styled--align-top"};function xp(e){let{className:t,disabled:n=!1,appearance:r=Ep.EMPTY,icon:o=kp[r].icon,title:a=kp[r].title,description:i=kp[r].description,helper:c,alignIcon:u="center",indicator:g,alignIndicator:p="center",children:f,...m}=e;const h=d()("gla-account-card",!!n&&"gla-account-card--is-disabled",t),y=d()("gla-account-card__icon",Sp[u]),v=d()("gla-account-card__indicator",Sp[p]);return(0,s.createElement)(gp.Card,l({className:h},m),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(ae,{gap:4},o&&(0,s.createElement)(ze,{className:y},o),(0,s.createElement)(Li,null,a&&(0,s.createElement)(cp.Title,{className:"gla-account-card__title"},a),i&&(0,s.createElement)("div",{className:"gla-account-card__description"},i),c&&(0,s.createElement)("div",{className:"gla-account-card__helper"},c)),g&&(0,s.createElement)(ze,{className:v},g))),f)}var Op=__webpack_require__(3836),Pp=e=>{const{className:t}=e;return(0,s.createElement)(ae,{className:d()("gla-connected-icon-label",t),align:"center",gap:1},(0,s.createElement)(ze,null,(0,s.createElement)(Op.Z,null)),(0,s.createElement)(ze,null,(0,o.__)("Connected","google-listings-and-ads")))},Ap=e=>{let{jetpack:t}=e;return(0,s.createElement)(xp,{appearance:Ep.WPCOM,description:mp(t),indicator:(0,s.createElement)(Pp,null)})},Np=()=>(0,dn.useDispatch)("core/notices");const Rp="START",Tp="FINISH",Mp="ERROR",jp="RESET",Ip={loading:!1,error:void 0,data:void 0,response:void 0,options:void 0},Fp=(e,t)=>{switch(t.type){case Rp:return{...e,loading:!0,options:t.options};case Tp:return{...e,loading:!1,data:t.data,response:t.response,options:t.options};case Mp:return{...e,loading:!1,error:t.error,response:t.response,options:t.options};case jp:return t.state}},Dp=e=>{const{parse:t=!0}=e;return t};var Lp=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ip;const n=Pg(e),r={...Ip,...t},[o,a]=(0,s.useReducer)(Fp,r),i=(0,s.useCallback)((async e=>{const t={...n,...e};a({type:Rp,options:t});try{const e=await Uc()({...t,parse:!1}),n=e.clone(),r=n.json&&await n.json();return a({type:Tp,data:r,response:e,options:t}),Dp(t)?r:e}catch(e){if("fetch_error"===e.code)throw a({type:Mp,error:e,response:void 0,options:t}),e;const n=e,r=n.clone(),o=r.json?await r.json():new Error("No content body in fetch response.");throw a({type:Mp,error:o,response:n,options:t}),Dp(t)?o:n}}),[n]),l=e=>{a({type:jp,state:{...r,...e}})},c={...o,reset:l};return[i,c]},Gp=()=>{const{createNotice:e}=Np(),t=Zl.mcSetupComplete?"reconnect":"setup-mc",n={next_page_name:t},r=(0,tg.addQueryArgs)("/wc/gla/jetpack/connect",n),[a,{loading:i,data:l}]=Lp({path:r});return(0,s.createElement)(xp,{appearance:Ep.WPCOM,description:(0,o.__)("Required to connect with Google","google-listings-and-ads"),indicator:(0,s.createElement)(gc,{isSecondary:!0,loading:i||l,eventName:"gla_wordpress_account_connect_button_click",eventProps:{context:t},onClick:async()=>{try{const e=await a();window.location.href=e.url}catch(t){e("error",(0,o.__)("Unable to connect your WordPress.com account. Please try again later.","google-listings-and-ads"))}}},(0,o.__)("Connect","google-listings-and-ads"))})},Bp=e=>{let{jetpack:t}=e;return"yes"===t.active?(0,s.createElement)(Ap,{jetpack:t}):(0,s.createElement)(Gp,null)},qp=(0,s.createElement)(zl,{context:"setup-mc-accounts",linkId:"required-google-permissions",href:"https://docs.woocommerce.com/document/google-listings-and-ads/#required-google-permissions"});function zp(e,t){const n=(0,s.useMemo)((()=>{const n={next_page_name:e,login_hint:t};return{path:(0,tg.addQueryArgs)("/wc/gla/google/connect",n)}}),[e,t]);return Lp(n)}var Hp=(e,t)=>{const{createNotice:n}=Np(),[r,a]=zp(e,t);return[async()=>{try{const{url:e}=await r();window.location.href=e}catch(e){n("error",(0,o.__)("Unable to connect your Google account. Please try again later.","google-listings-and-ads"))}},a]},Up=e=>{let{additionalScopeEmail:t}=e;const n=Zl.mcSetupComplete?"reconnect":"setup-mc",[r,{loading:a,data:i}]=Hp(n,t);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE,alignIcon:"top",description:(0,s.createElement)(s.Fragment,null,t,(0,s.createElement)("p",null,(0,s.createElement)("em",null,(0,s.createInterpolateElement)((0,o.__)("<alert>Uh-oh!</alert> You did not allow WooCommerce sufficient access to your Google account. You must allow all required permissions in the Google authorization page to proceed. <link>Read more</link>","google-listings-and-ads"),{alert:(0,s.createElement)("span",{className:"gla-authorize-google-account-card__error-text"}),link:qp})))),alignIndicator:"top",indicator:(0,s.createElement)(gc,{isSecondary:!0,isDestructive:!0,loading:a||i,eventName:"gla_google_account_connect_button_click",eventProps:{context:n,action:"scope"},text:(0,o.__)("Allow full access","google-listings-and-ads"),onClick:r})})},Vp=e=>{let{googleAccount:t,helper:n,hideAccountSwitch:r=!1}=e;const[a,{loading:i}]=(()=>{const{createNotice:e,removeNotice:t}=Np(),[n,{loading:r}]=Lp({path:"/wc/gla/mc/connection",method:"DELETE"}),[a,{loading:i}]=Lp({path:"/wc/gla/google/connect",method:"DELETE"}),[s,{loading:l,data:c}]=zp("setup-mc");return[async()=>{const{notice:r}=await e("info",(0,o.__)("Connecting to a different Google account, please wait…","google-listings-and-ads"));try{await n(),await a();const{url:e}=await s();window.location.href=e}catch(n){t(r.id),e("error",(0,o.__)("Unable to connect to a different Google account. Please try again later.","google-listings-and-ads"))}},{loading:r||i||l||c}]})();return(0,s.createElement)(xp,{appearance:Ep.GOOGLE,description:t.email,helper:n,indicator:(0,s.createElement)(Pp,null)},!r&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:i,text:(0,o.__)("Or, connect to a different Google account","google-listings-and-ads"),eventName:"gla_google_account_connect_different_account_button_click",onClick:a})))},Wp=e=>{let{disabled:t}=e;const n=Zl.mcSetupComplete?"reconnect":"setup-mc",[r,{loading:a,data:i}]=Hp(n);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE,disabled:t,alignIcon:"top",description:(0,s.createElement)(s.Fragment,null,(0,o.__)("Required to sync with Google Merchant Center and Google Ads.","google-listings-and-ads"),(0,s.createElement)("p",null,(0,s.createElement)("em",null,(0,s.createInterpolateElement)((0,o.__)("You will be prompted to give WooCommerce access to your Google account. Please check all the checkboxes to give WooCommerce all required permissions. <link>Read more</link>","google-listings-and-ads"),{link:qp})))),alignIndicator:"top",indicator:(0,s.createElement)(gc,{isSecondary:!0,disabled:t,loading:a||i,eventName:"gla_google_account_connect_button_click",eventProps:{context:n,action:"authorization"},text:(0,o.__)("Connect","google-listings-and-ads"),onClick:r})})};function Yp(e){let{disabled:t=!1}=e;const{google:n,scope:r,hasFinishedResolution:o}=Jg();if(!o)return(0,s.createElement)(xp,{description:(0,s.createElement)(Wg,null)});const a="yes"===(null==n?void 0:n.active);return a&&r.glaRequired?(0,s.createElement)(Vp,{googleAccount:n}):a&&!r.glaRequired?(0,s.createElement)(Up,{additionalScopeEmail:n.email}):(0,s.createElement)(Wp,{disabled:t})}var Kp=e=>{const{children:t,...n}=e;return(0,s.createElement)(vl,n,(0,s.createElement)("div",{className:"app-tooltip__children-container"},t))},Qp=()=>(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(Wg,null))),Zp=e=>{let{googleMCAccount:t,hideAccountSwitch:n=!1}=e;const{createNotice:r,removeNotice:a}=Np(),{invalidateResolution:l}=Og(),[c,{loading:u}]=Lp({path:"/wc/gla/mc/connection",method:"DELETE"}),d=new URL((0,i.getSetting)("homeUrl")).host;return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_MERCHANT_CENTER,description:(0,o.sprintf)(// translators: 1: account domain, 2: account ID.
3
  (0,o.__)("%1$s (%2$s)","google-listings-and-ads"),d,t.id),indicator:(0,s.createElement)(Pp,null)},!n&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:u,text:(0,o.__)("Or, connect to a different Google Merchant Center account","google-listings-and-ads"),eventName:"gla_mc_account_connect_different_account_button_click",onClick:async()=>{const{notice:e}=await r("info",(0,o.__)("Disconnecting your Google Merchant Center account, please wait…","google-listings-and-ads"));try{await c(),l("getExistingGoogleMCAccounts",[]),l("getGoogleMCAccount",[])}catch(e){r("error",(0,o.__)("Unable to disconnect your Google Merchant Center account. Please try again later.","google-listings-and-ads"))}a(e.id)}})))},Xp=()=>(0,s.createElement)(xp,{disabled:!0,appearance:Ep.GOOGLE_MERCHANT_CENTER,indicator:(0,s.createElement)(xl,{isSecondary:!0,disabled:!0},(0,o.__)("Create Account","google-listings-and-ads"))}),Jp=()=>Ag("getExistingGoogleMCAccounts"),ef=function(e){var t=e.className,n=c(e,["className"]),r=d()("components-card__divider",t);return(0,s.createElement)(Te,l({},n,{children:null,className:r,role:"separator"}))},tf=new WeakMap;function nf(e){var t=tf.get(e)||0;return tf.set(e,t+1),t}function rf(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return(0,s.useMemo)((function(){if(n)return n;var r=nf(e);return t?"".concat(t,"-").concat(r):r}),[e])}var of={"default.fontFamily":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif","default.fontSize":"13px","helpText.fontSize":"12px",mobileTextMinFontSize:"16px"};function af(e){return(0,ie.get)(of,e,"")}var sf=J("div",{target:"e1puf3u0",label:"Wrapper"})("font-family:",af("default.fontFamily"),";font-size:",af("default.fontSize"),";"),lf=J("div",{target:"e1puf3u1",label:"StyledField"})("margin-bottom:",Ce(1),";.components-panel__row &{margin-bottom:inherit;}"),cf=J("label",{target:"e1puf3u2",label:"StyledLabel"})("display:inline-block;margin-bottom:",Ce(1),";"),uf=J("p",{target:"e1puf3u3",label:"StyledHelp"})("margin-top:-",Ce(1),";font-size:",af("helpText.fontSize"),";font-style:normal;color:",$e("mediumGray.text"),";");function df(e){var t=e.id,n=e.label,r=e.hideLabelFromVision,o=e.help,a=e.className,i=e.children;return(0,s.createElement)(sf,{className:d()("components-base-control",a)},(0,s.createElement)(lf,{className:"components-base-control__field"},n&&t&&(r?(0,s.createElement)(Cl,{as:"label",htmlFor:t},n):(0,s.createElement)(cf,{className:"components-base-control__label",htmlFor:t},n)),n&&!t&&(r?(0,s.createElement)(Cl,{as:"label"},n):(0,s.createElement)(df.VisualLabel,null,n)),i),!!o&&(0,s.createElement)(uf,{id:t+"__help",className:"components-base-control__help"},o))}df.VisualLabel=function(e){var t=e.className,n=e.children;return t=d()("components-base-control__label",t),(0,s.createElement)("span",{className:t},n)};var gf=df,pf=new RegExp(/-left/g),ff=new RegExp(/-right/g),mf=new RegExp(/Left/g),hf=new RegExp(/Right/g);function yf(e){return"left"===e?"right":"right"===e?"left":pf.test(e)?e.replace(pf,"-right"):ff.test(e)?e.replace(ff,"-left"):mf.test(e)?e.replace(mf,"Right"):hf.test(e)?e.replace(hf,"Left"):e}var vf=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,ie.mapKeys)(e,(function(e,t){return yf(t)}))};function bf(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return function(){return t?(0,o.isRTL)()?U(t,""):U(e,""):(0,o.isRTL)()?U(vf(e),""):U(e,"")}}var _f={name:"1dacand",styles:"padding-top:0;"},wf=function(){return _f},Ef={name:"r6z5ec",styles:"z-index:1;"},$f=function(e){return e.isFocused?Ef:""},Cf={name:"uz6002",styles:"align-items:flex-start;flex-direction:column;"},kf={name:"53hdd7",styles:"align-items:flex-start;flex-direction:column-reverse;"},Sf={name:"x4dmss",styles:"justify-content:space-between;"},xf=function(e){switch(e.labelPosition){case"top":return Cf;case"bottom":return kf;case"edge":return Sf;default:return""}},Of=J(ae,{target:"e1cr7zh10",label:"Root"})("position:relative;border-radius:2px;",wf," ",$f," ",xf,""),Pf={name:"8atqhb",styles:"width:100%;"},Af=J("div",{target:"e1cr7zh11",label:"Container"})("align-items:center;box-sizing:border-box;border-radius:inherit;display:flex;flex:1;position:relative;",(function(e){var t=$e(e.disabled?"ui.backgroundDisabled":"ui.background");return U({backgroundColor:t},"")})," ",(function(e){var t=e.__unstableInputWidth,n=e.labelPosition;return t?"side"===n?"":U("edge"===n?{flex:"0 0 ".concat(t)}:{width:t},""):Pf}),""),Nf={name:"103r1kr",styles:"&::-webkit-input-placeholder{line-height:normal;}"},Rf=J("input",{target:"e1cr7zh12",label:"Input"})("&&&{background-color:transparent;box-sizing:border-box;border:none;box-shadow:none !important;color:",$e("black"),";display:block;margin:0;outline:none;padding-left:8px;padding-right:8px;width:100%;",(function(e){var t=e.isDragging,n=e.dragCursor,r="",o="";return t&&(r=U("cursor:",n,";user-select:none;&::-webkit-outer-spin-button,&::-webkit-inner-spin-button{-webkit-appearance:none !important;margin:0 !important;}")),t&&n&&(o=U("&:active{cursor:",n,";}")),U(r," ",o,"")})," ",(function(e){return e.disabled?U({color:$e("ui.textDisabled")},""):""})," ",(function(e){var t={default:"13px",small:"11px"}[e.size];return t?U("font-size:","16px",";@media ( min-width:600px ){font-size:",t,";}"):""})," ",(function(e){var t=e.size,n={default:{height:30,lineHeight:1,minHeight:30},small:{height:24,lineHeight:1,minHeight:24}};return U(n[t]||n.default,"")})," ",(function(){return Nf}),"}"),Tf={name:"8uhtka",styles:"overflow:hidden;text-overflow:ellipsis;white-space:nowrap;"},Mf=function(){return Tf},jf=function(e){var t=e.labelPosition,n=4;return"edge"!==t&&"side"!==t||(n=0),U({paddingTop:0,paddingBottom:n},"")},If=J(Ii,{target:"e1cr7zh13",label:"BaseLabel"})("&&&{box-sizing:border-box;color:currentColor;display:block;margin:0;max-width:100%;z-index:1;",jf," ",Mf,"}"),Ff=function(e){return(0,s.createElement)(If,l({},e,{as:"label"}))},Df=J(ze,{target:"e1cr7zh14",label:"LabelWrapper"})({name:"120o8im",styles:"max-width:calc( 100% - 10px );"}),Lf=J("div",{target:"e1cr7zh15",label:"BackdropUI"})("&&&{box-sizing:border-box;border-radius:inherit;bottom:0;left:0;margin:0;padding:0;pointer-events:none;position:absolute;right:0;top:0;",(function(e){var t=e.disabled,n=e.isFocused,r=$e(n?"ui.borderFocus":"ui.border"),o=null;return n&&(o="0 0 0 1px ".concat($e("ui.borderFocus")," inset")),t&&(r=$e("ui.borderDisabled")),U({boxShadow:o,borderColor:r,borderStyle:"solid",borderWidth:1},"")})," ",bf({paddingLeft:2}),"}"),Gf=J("span",{target:"e1cr7zh16",label:"Prefix"})({name:"1pxuk39",styles:"box-sizing:border-box;display:block;"}),Bf=J("span",{target:"e1cr7zh17",label:"Suffix"})({name:"1pxuk39",styles:"box-sizing:border-box;display:block;"}),qf=(0,s.memo)((function(e){var t=e.disabled,n=void 0!==t&&t,r=e.isFocused,o=void 0!==r&&r;return(0,s.createElement)(Lf,{"aria-hidden":"true",className:"components-input-control__backdrop",disabled:n,isFocused:o})})),zf=qf;function Hf(e){var t=e.children,n=e.hideLabelFromVision,r=e.htmlFor,o=c(e,["children","hideLabelFromVision","htmlFor"]);return t?n?(0,s.createElement)(Cl,{as:"label",htmlFor:r},t):(0,s.createElement)(Ff,l({htmlFor:r},o),t):null}var Uf=(0,s.forwardRef)((function e(t,n){var r=t.__unstableInputWidth,o=t.children,a=t.className,i=t.disabled,u=void 0!==i&&i,d=t.hideLabelFromVision,g=void 0!==d&&d,p=t.labelPosition,f=t.id,m=t.isFocused,h=void 0!==m&&m,y=t.label,v=t.prefix,b=t.size,_=void 0===b?"default":b,w=t.suffix,E=c(t,["__unstableInputWidth","children","className","disabled","hideLabelFromVision","labelPosition","id","isFocused","label","prefix","size","suffix"]),$=function(t){var n=rf(e),r="input-base-control-".concat(n);return t||r}(f);return(0,s.createElement)(Of,l({},E,{className:a,isFocused:h,labelPosition:p,ref:n}),(0,s.createElement)(Df,null,(0,s.createElement)(Hf,{className:"components-input-control__label",hideLabelFromVision:g,labelPosition:p,htmlFor:$,size:_},y)),(0,s.createElement)(Af,{__unstableInputWidth:r,className:"components-input-control__container",disabled:u,isFocused:h,labelPosition:p},v&&(0,s.createElement)(Gf,{className:"components-input-control__prefix"},v),o,w&&(0,s.createElement)(Bf,{className:"components-input-control__suffix"},w),(0,s.createElement)(zf,{"aria-hidden":"true",disabled:u,isFocused:h,label:y,size:_})))})),Vf=J("select",{target:"e12x0a390",label:"Select"})("&&&{appearance:none;background:transparent;box-sizing:border-box;border:none;box-shadow:none !important;color:",$e("black"),";display:block;margin:0;width:100%;",(function(e){return e.disabled?U({color:$e("ui.textDisabled")},""):""}),";",(function(e){var t={default:"13px",small:"11px"}[e.size];return t?U("font-size:","16px",";@media ( min-width:600px ){font-size:",t,";}"):""}),";",(function(e){var t=e.size,n={default:{height:30,lineHeight:1,minHeight:30},small:{height:24,lineHeight:1,minHeight:24}};return U(n[t]||n.default,"")}),";",bf({paddingLeft:8,paddingRight:24})(),"}"),Wf=J("div",{target:"e12x0a391",label:"DownArrowWrapper"})("align-items:center;bottom:0;box-sizing:border-box;display:flex;padding:0 4px;pointer-events:none;position:absolute;top:0;",bf({right:0})()," svg{display:block;}");var Yf=(0,s.forwardRef)((function e(t,n){var r=t.className,o=t.disabled,a=void 0!==o&&o,i=t.help,u=t.hideLabelFromVision,g=t.id,p=t.label,f=t.multiple,m=void 0!==f&&f,h=t.onBlur,y=void 0===h?ie.noop:h,v=t.onChange,b=void 0===v?ie.noop:v,_=t.onFocus,w=void 0===_?ie.noop:_,E=t.options,$=void 0===E?[]:E,C=t.size,k=void 0===C?"default":C,S=t.value,x=t.labelPosition,O=void 0===x?"top":x,P=c(t,["className","disabled","help","hideLabelFromVision","id","label","multiple","onBlur","onChange","onFocus","options","size","value","labelPosition"]),A=Et((0,s.useState)(!1),2),N=A[0],R=A[1],T=function(t){var n=rf(e),r="inspector-select-control-".concat(n);return t||r}(g),M=i?"".concat(T,"__help"):void 0;if((0,ie.isEmpty)($))return null;var j=d()("components-select-control",r);return(0,s.createElement)(gf,{help:i},(0,s.createElement)(Uf,{className:j,disabled:a,hideLabelFromVision:u,id:T,isFocused:N,label:p,size:k,suffix:(0,s.createElement)(Wf,null,(0,s.createElement)(vp,{icon:as,size:18})),labelPosition:O},(0,s.createElement)(Vf,l({},P,{"aria-describedby":M,className:"components-select-control__input",disabled:a,id:T,multiple:m,onBlur:function(e){y(e),R(!1)},onChange:function(e){if(m){var t=Ls(e.target.options).filter((function(e){return e.selected})),n=t.map((function(e){return e.value}));b(n)}else b(e.target.value,{event:e})},onFocus:function(e){w(e),R(!0)},ref:n,size:k,value:S}),$.map((function(e,t){var n=e.id||"".concat(e.label,"-").concat(e.value,"-").concat(t);return(0,s.createElement)("option",{key:n,value:e.value,disabled:e.disabled},e.label)})))))})),Kf=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",{className:d()("app-select-control",t)},(0,s.createElement)(Yf,n))},Qf=e=>{const{data:t=[]}=Jp(),n=t.map((e=>({value:e.id,label:(0,o.sprintf)(// translators: 1: account name, 2: account domain, 3: account ID.
4
  (0,o.__)("%1$s ・ %2$s (%3$s)","google-listings-and-ads"),e.name,e.domain,e.id)})));return n.sort(((e,t)=>e.label.localeCompare(t.label))),n.unshift({value:"",label:(0,o.__)("Select one","google-listings-and-ads")}),(0,s.createElement)(Kf,l({options:n},e))},Zf=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",l({className:d()("gla-content-button-layout",t)},n))},Xf=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,s.createElement)(ns,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"}));function Jf(e,t){return e.map((function(e,n){return e+t[n]}))}function em(e,t){return e.map((function(e,n){return e-t[n]}))}function tm(e){return Math.hypot.apply(Math,e)}function nm(e){return Math.sign?Math.sign(e):Number(e>0)-Number(e<0)||+e}function rm(e,t,n){return 0===t||Math.abs(t)===1/0?function(e,t){return Math.pow(e,5*t)}(e,n):e*t*n/(t+n*e)}function om(e,t,n,r){return void 0===r&&(r=.15),0===r?function(e,t,n){return Math.max(t,Math.min(e,n))}(e,t,n):e<t?-rm(t-e,n-t,r)+t:e>n?+rm(e-n,n-t,r)+n:e}function am(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function im(){return im=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},im.apply(this,arguments)}function sm(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function lm(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function cm(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function um(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return cm(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?cm(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}function dm(){}function gm(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?dm:1===t.length?t[0]:function(){for(var e,n,r=um(t);!(n=r()).done;){var o=n.value;e=o.apply(this,arguments)||e}return e}}function pm(e,t){if(void 0===e){if(void 0===t)throw new Error("Must define fallback value if undefined is expected");e=t}return Array.isArray(e)?e:[e,e]}function fm(e){if("function"==typeof e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return e.apply(void 0,n)}return e}function mm(e,t){void 0===e&&(e={});for(var n={},r=0,o=Object.entries(t);r<o.length;r++){var a=o[r],i=a[0],s=a[1];switch(typeof s){case"function":n[i]=s.call(n,e[i],i,e);break;case"object":n[i]=mm(e[i],s);break;case"boolean":s&&(n[i]=e[i])}}return n}function hm(){return"undefined"!=typeof window&&"ontouchstart"in window}function ym(e){return"pointerId"in e?null:"touchend"===e.type?e.changedTouches:e.targetTouches}function vm(e){return Array.from(ym(e)).map((function(e){return e.identifier}))}function bm(e){return{buttons:"buttons"in e?e.buttons:0,shiftKey:e.shiftKey,altKey:e.altKey,metaKey:e.metaKey,ctrlKey:e.ctrlKey}}var _m=function(e){return e};function wm(e,t){void 0===t&&(t=_m);var n=ym(e),r=n?n[0]:e;return t([r.clientX,r.clientY])}var Em={threshold:function(e){return void 0===e&&(e=0),pm(e)},rubberband:function(e){switch(void 0===e&&(e=0),e){case!0:return pm(.15);case!1:return pm(0);default:return pm(e)}},enabled:function(e){return void 0===e&&(e=!0),e},triggerAllEvents:function(e){return void 0===e&&(e=!1),e},initial:function(e){return void 0===e&&(e=0),"function"==typeof e?e:pm(e)},transform:!0},$m=im({},Em,{axis:!0,lockDirection:function(e){return void 0===e&&(e=!1),e},bounds:function(e){if(void 0===e&&(e={}),"function"==typeof e)return function(t){return $m.bounds(e(t))};var t=e,n=t.left,r=void 0===n?-1/0:n,o=t.right,a=void 0===o?1/0:o,i=t.top,s=void 0===i?-1/0:i,l=t.bottom;return[[r,a],[s,void 0===l?1/0:l]]}}),Cm="undefined"!=typeof window&&window.document&&window.document.createElement,km={enabled:function(e){return void 0===e&&(e=!0),e},domTarget:!0,window:function(e){function t(_x){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(e){return void 0===e&&(e=Cm?window:void 0),e})),eventOptions:function(e){var t=void 0===e?{}:e,n=t.passive,r=void 0===n||n,o=t.capture;return{passive:r,capture:void 0!==o&&o}},transform:!0},Sm=im({},$m,{useTouch:function(e){void 0===e&&(e=!1);var t=hm(),n="undefined"!=typeof window&&"onpointerdown"in window;return!(!e||!t)||!(!t||n)},experimental_preventWindowScrollY:function(e){return void 0===e&&(e=!1),e},threshold:function(e,t,n){var r=n.filterTaps,o=void 0!==r&&r,a=n.lockDirection,i=void 0!==a&&a,s=n.axis,l=pm(e,o?3:i||(void 0===s?void 0:s)?1:0);return this.filterTaps=o,l},swipeVelocity:function(e){return void 0===e&&(e=.5),pm(e)},swipeDistance:function(e){return void 0===e&&(e=50),pm(e)},swipeDuration:function(e){return void 0===e&&(e=250),e},delay:function(e){switch(void 0===e&&(e=0),e){case!0:return 180;case!1:return 0;default:return e}}});function xm(e){var t=e.domTarget,n=e.eventOptions,r=e.window,o=e.enabled,a=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,["domTarget","eventOptions","window","enabled"]),i=function(e){return void 0===e&&(e={}),mm(e,km)}({domTarget:t,eventOptions:n,window:r,enabled:o});return i.drag=function(e){return void 0===e&&(e={}),mm(e,Sm)}(a),i}function Om(e){return im({_active:!1,_blocked:!1,_intentional:[!1,!1],_movement:[0,0],_initial:[0,0],_bounds:[[-1/0,1/0],[-1/0,1/0]],_threshold:[0,0],_lastEventType:void 0,_dragStarted:!1,_dragPreventScroll:!1,_dragIsTap:!0,_dragDelayed:!1,event:void 0,intentional:!1,values:[0,0],velocities:[0,0],delta:[0,0],movement:[0,0],offset:[0,0],lastOffset:[0,0],direction:[0,0],initial:[0,0],previous:[0,0],first:!1,last:!1,active:!1,timeStamp:0,startTime:0,elapsedTime:0,cancel:dm,canceled:!1,memo:void 0,args:void 0},e)}function Pm(){return{shared:{hovering:!1,scrolling:!1,wheeling:!1,dragging:!1,moving:!1,pinching:!1,touches:0,buttons:0,down:!1,shiftKey:!1,altKey:!1,metaKey:!1,ctrlKey:!1,locked:!1},drag:Om({_pointerId:void 0,axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0,tap:!1,swipe:[0,0]}),pinch:Om({_pointerIds:[],da:[0,0],vdva:[0,0],origin:void 0,turns:0}),wheel:Om({axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0}),move:Om({axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0}),scroll:Om({axis:void 0,xy:[0,0],vxvy:[0,0],velocity:0,distance:0})}}var Am=new Map,Nm=function(e){return e},Rm=function(){function e(e,t){var n=this;void 0===t&&(t=[]),this.controller=e,this.args=t,this.debounced=!0,this.setTimeout=function(e,t){var r;void 0===t&&(t=140),clearTimeout(n.controller.timeouts[n.stateKey]);for(var o=arguments.length,a=new Array(o>2?o-2:0),i=2;i<o;i++)a[i-2]=arguments[i];n.controller.timeouts[n.stateKey]=(r=window).setTimeout.apply(r,[e,t].concat(a))},this.clearTimeout=function(){clearTimeout(n.controller.timeouts[n.stateKey])},this.fireGestureHandler=function(e){if(void 0===e&&(e=!1),n.state._blocked)return n.debounced||(n.state._active=!1,n.clean()),null;if(!e&&!n.state.intentional&&!n.config.triggerAllEvents)return null;if(n.state.intentional){var t=n.state.active,r=n.state._active;n.state.active=r,n.state.first=r&&!t,n.state.last=t&&!r,n.controller.state.shared[n.ingKey]=r}var o=n.controller.pointerIds.size||n.controller.touchIds.size,a=n.controller.state.shared.buttons>0||o>0,i=im({},n.controller.state.shared,n.state,n.mapStateValues(n.state),{locked:!!document.pointerLockElement,touches:o,down:a}),s=n.handler(i);return n.state.memo=void 0!==s?s:n.state.memo,i},this.controller=e,this.args=t}var t,n,r=e.prototype;return r.updateSharedState=function(e){Object.assign(this.controller.state.shared,e)},r.updateGestureState=function(e){Object.assign(this.state,e)},r.checkIntentionality=function(e,t){return{_intentional:e,_blocked:!1}},r.getMovement=function(e){var t=this.config.rubberband,n=this.state,r=n._bounds,o=n._initial,a=n._active,i=n._intentional,s=n.lastOffset,l=n.movement,c=n._threshold,u=this.getInternalMovement(e,this.state),d=!1===i[0]?Tm(u[0],c[0]):i[0],g=!1===i[1]?Tm(u[1],c[1]):i[1],p=this.checkIntentionality([d,g],u);if(p._blocked)return im({},p,{_movement:u,delta:[0,0]});var f=p._intentional,m=u,h=[!1!==f[0]?u[0]-f[0]:0,!1!==f[1]?u[1]-f[1]:0],y=Jf(h,s),v=a?t:[0,0];return h=Mm(r,Jf(h,o),v),im({},p,{intentional:!1!==f[0]||!1!==f[1],_initial:o,_movement:m,movement:h,values:e,offset:Mm(r,y,v),delta:em(h,l)})},r.clean=function(){this.clearTimeout()},t=e,(n=[{key:"config",get:function(){return this.controller.config[this.stateKey]}},{key:"enabled",get:function(){return this.controller.config.enabled&&this.config.enabled}},{key:"state",get:function(){return this.controller.state[this.stateKey]}},{key:"handler",get:function(){return this.controller.handlers[this.stateKey]}},{key:"transform",get:function(){return this.config.transform||this.controller.config.transform||Nm}}])&&am(t.prototype,n),e}();function Tm(e,t){return Math.abs(e)>=t&&nm(e)*t}function Mm(e,t,n){var r=t[0],o=t[1],a=n[0],i=n[1],s=e[0],l=s[0],c=s[1],u=e[1],d=u[0],g=u[1];return[om(r,l,c,a),om(o,d,g,i)]}function jm(e,t,n){var r=e.state,o=t.timeStamp,a=t.type,i=r.values;return{_lastEventType:a,event:t,timeStamp:o,elapsedTime:n?0:o-r.startTime,previous:i}}function Im(e,t,n,r){var o=e.state,a=e.config,i=e.stateKey,s=e.args,l=e.transform,c=o.offset,u=n.timeStamp,d=a.initial,g=a.bounds,p=em(l(a.threshold),l([0,0])).map(Math.abs),f=im({},Pm()[i],{_active:!0,args:s,values:t,initial:null!=r?r:t,_threshold:p,offset:c,lastOffset:c,startTime:u});return im({},f,{_initial:fm(d,f),_bounds:fm(g,f)})}var Fm=function(e){var t=this;this.classes=e,this.pointerIds=new Set,this.touchIds=new Set,this.supportsTouchEvents=hm(),this.supportsGestureEvents=function(){try{return"constructor"in GestureEvent}catch(e){return!1}}(),this.bind=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];for(var o,a={},i=um(t.classes);!(o=i()).done;){var s=o.value;new s(t,n).addBindings(a)}var l=function(e){Vm(a,e,(function(r){return t.nativeRefs[e](im({},t.state.shared,{event:r,args:n}))}))};for(var c in t.nativeRefs)l(c);return t.config.domTarget?qm(t,a):zm(t,a)},this.effect=function(){return t.config.domTarget&&t.bind(),t.clean},this.clean=function(){var e=Um(t.config),n=t.config.eventOptions;e&&Ym(e,Hm(t.domListeners),n),Object.values(t.timeouts).forEach(clearTimeout),function(e){var t=e.config,n=t.window,r=t.eventOptions,o=e.windowListeners;if(n){for(var a in o)Ym(n,o[a],r);e.windowListeners={}}}(t)},this.classes=e,this.state=Pm(),this.timeouts={},this.domListeners=[],this.windowListeners={}};function Dm(e,t){"pointerId"in t?e.pointerIds.add(t.pointerId):e.touchIds=new Set(vm(t))}function Lm(e,t){"pointerId"in t?e.pointerIds.delete(t.pointerId):vm(t).forEach((function(t){return e.touchIds.delete(t)}))}function Gm(e,t,n){var r=e.config,o=e.windowListeners;void 0===n&&(n=r.eventOptions),r.window&&(Ym(r.window,o[t],n),delete o[t])}function Bm(e,t,n,r){var o=e.config,a=e.windowListeners;void 0===n&&(n=[]),void 0===r&&(r=o.eventOptions),o.window&&(Ym(o.window,a[t],r),Wm(o.window,a[t]=n,r))}function qm(e,t){var n=e.config,r=e.domListeners,o=Um(n);if(!o)throw new Error("domTarget must be defined");var a=n.eventOptions;Ym(o,Hm(r),a);for(var i=0,s=Object.entries(t);i<s.length;i++){var l=s[i],c=l[0],u=l[1],d=c.slice(2).toLowerCase();r.push([d,gm.apply(void 0,u)])}Wm(o,r,a)}function zm(e,t){for(var n={},r=e.config.eventOptions.capture?"Capture":"",o=0,a=Object.entries(t);o<a.length;o++){var i=a[o],s=i[0],l=i[1],c=Array.isArray(l)?l:[l];n[s+r]=gm.apply(void 0,c)}return n}function Hm(e){return void 0===e&&(e=[]),e.splice(0,e.length)}function Um(e){var t=e.domTarget;return t&&"current"in t?t.current:t}function Vm(e,t,n){e[t]||(e[t]=[]),e[t].push(n)}function Wm(e,t,n){void 0===t&&(t=[]),void 0===n&&(n={});for(var r,o=um(t);!(r=o()).done;){var a=r.value,i=a[0],s=a[1];e.addEventListener(i,s,n)}}function Ym(e,t,n){void 0===t&&(t=[]),void 0===n&&(n={});for(var r,o=um(t);!(r=o()).done;){var a=r.value,i=a[0],s=a[1];e.removeEventListener(i,s,n)}}function Km(){}var Qm=function(e){function t(){return e.apply(this,arguments)||this}sm(t,e);var n=t.prototype;return n.getInternalMovement=function(e,t){return em(e,t.initial)},n.checkIntentionality=function(e,t){if(!1===e[0]&&!1===e[1])return{_intentional:e,axis:this.state.axis};var n=t.map(Math.abs),r=n[0],o=n[1],a=this.state.axis||(r>o?"x":r<o?"y":void 0);return this.config.axis||this.config.lockDirection?a?this.config.axis&&a!==this.config.axis?{_intentional:e,_blocked:!0,axis:a}:(e["x"===a?1:0]=!1,{_intentional:e,_blocked:!1,axis:a}):{_intentional:[!1,!1],_blocked:!1,axis:a}:{_intentional:e,_blocked:!1,axis:a}},n.getKinematics=function(e,t){var n=this.getMovement(e);if(!n._blocked){var r=t.timeStamp-this.state.timeStamp;Object.assign(n,function(e,t,n){var r=tm(t),o=0===r?0:1/r,a=0===n?0:1/n,i=a*r,s=t.map((function(e){return a*e})),l=t.map((function(e){return o*e}));return{velocities:s,velocity:i,distance:tm(e),direction:l}}(n.movement,n.delta,r))}return n},n.mapStateValues=function(e){return{xy:e.values,vxvy:e.velocities}},t}(Rm);function Zm(e){"persist"in e&&"function"==typeof e.persist&&e.persist()}var Xm=function(e){function t(){var t;return(t=e.apply(this,arguments)||this).ingKey="dragging",t.stateKey="drag",t.setPointerCapture=function(e){if(!t.config.useTouch&&!document.pointerLockElement){var n=e.target,r=e.pointerId;n&&"setPointerCapture"in n&&n.setPointerCapture(r),t.updateGestureState({_dragTarget:n,_dragPointerId:r})}},t.releasePointerCapture=function(){if(!t.config.useTouch&&!document.pointerLockElement){var e=t.state,n=e._dragTarget,r=e._dragPointerId;if(r&&n&&"releasePointerCapture"in n&&(!("hasPointerCapture"in n)||n.hasPointerCapture(r)))try{n.releasePointerCapture(r)}catch(e){}}},t.preventScroll=function(e){t.state._dragPreventScroll&&e.cancelable&&e.preventDefault()},t.getEventId=function(e){return t.config.useTouch?e.changedTouches[0].identifier:e.pointerId},t.isValidEvent=function(e){return t.state._pointerId===t.getEventId(e)},t.shouldPreventWindowScrollY=t.config.experimental_preventWindowScrollY&&t.controller.supportsTouchEvents,t.setUpWindowScrollDetection=function(e){Zm(e),Bm(t.controller,t.stateKey,[["touchmove",t.preventScroll],["touchend",t.clean.bind(lm(t))],["touchcancel",t.clean.bind(lm(t))]],{passive:!1}),t.setTimeout(t.startDrag.bind(lm(t)),250,e)},t.setUpDelayedDragTrigger=function(e){t.state._dragDelayed=!0,Zm(e),t.setTimeout(t.startDrag.bind(lm(t)),t.config.delay,e)},t.setStartState=function(e){var n=wm(e,t.transform);t.updateSharedState(bm(e)),t.updateGestureState(im({},Im(lm(t),n,e),jm(lm(t),e,!0),{_pointerId:t.getEventId(e)})),t.updateGestureState(t.getMovement(n))},t.onDragStart=function(e){Dm(t.controller,e),t.enabled&&!t.state._active&&(t.setStartState(e),t.setPointerCapture(e),t.shouldPreventWindowScrollY?t.setUpWindowScrollDetection(e):t.config.delay>0?t.setUpDelayedDragTrigger(e):t.startDrag(e,!0))},t.onDragChange=function(e){if(!t.state.canceled&&t.state._active&&t.isValidEvent(e)&&(t.state._lastEventType!==e.type||e.timeStamp!==t.state.timeStamp)){var n;if(document.pointerLockElement){var r=e.movementX,o=e.movementY;n=Jf(t.transform([r,o]),t.state.values)}else n=wm(e,t.transform);var a=t.getKinematics(n,e);if(!t.state._dragStarted){if(t.state._dragDelayed)return void t.startDrag(e);if(!t.shouldPreventWindowScrollY)return;if(t.state._dragPreventScroll||!a.axis)return;if("x"!==a.axis)return void(t.state._active=!1);t.startDrag(e)}var i=bm(e);t.updateSharedState(i);var s=jm(lm(t),e),l=tm(a._movement),c=t.state._dragIsTap;c&&l>=3&&(c=!1),t.updateGestureState(im({},s,a,{_dragIsTap:c})),t.fireGestureHandler()}},t.onDragEnd=function(e){if(Lm(t.controller,e),t.isValidEvent(e)&&(t.clean(),t.state._active)){t.state._active=!1;var n=t.state._dragIsTap,r=t.state.velocities,o=r[0],a=r[1],i=t.state.movement,s=i[0],l=i[1],c=t.state._intentional,u=c[0],d=c[1],g=t.config.swipeVelocity,p=g[0],f=g[1],m=t.config.swipeDistance,h=m[0],y=m[1],v=t.config.swipeDuration,b=im({},jm(lm(t),e),t.getMovement(t.state.values)),_=[0,0];b.elapsedTime<v&&(!1!==u&&Math.abs(o)>p&&Math.abs(s)>h&&(_[0]=nm(o)),!1!==d&&Math.abs(a)>f&&Math.abs(l)>y&&(_[1]=nm(a))),t.updateSharedState({buttons:0}),t.updateGestureState(im({},b,{tap:n,swipe:_})),t.fireGestureHandler(t.config.filterTaps&&!0===n)}},t.clean=function(){e.prototype.clean.call(lm(t)),t.state._dragStarted=!1,t.releasePointerCapture(),Gm(t.controller,t.stateKey)},t.onCancel=function(){t.state.canceled||(t.updateGestureState({canceled:!0,_active:!1}),t.updateSharedState({buttons:0}),setTimeout((function(){return t.fireGestureHandler()}),0))},t.onClick=function(e){t.state._dragIsTap||e.stopPropagation()},t}sm(t,e);var n=t.prototype;return n.startDrag=function(e,t){void 0===t&&(t=!1),this.state._active&&!this.state._dragStarted&&(t||this.setStartState(e),this.updateGestureState({_dragStarted:!0,_dragPreventScroll:!0,cancel:this.onCancel}),this.clearTimeout(),this.fireGestureHandler())},n.addBindings=function(e){this.config.useTouch?(Vm(e,"onTouchStart",this.onDragStart),Vm(e,"onTouchMove",this.onDragChange),Vm(e,"onTouchEnd",this.onDragEnd),Vm(e,"onTouchCancel",this.onDragEnd)):(Vm(e,"onPointerDown",this.onDragStart),Vm(e,"onPointerMove",this.onDragChange),Vm(e,"onPointerUp",this.onDragEnd),Vm(e,"onPointerCancel",this.onDragEnd)),this.config.filterTaps&&Vm(e,this.controller.config.eventOptions.capture?"onClick":"onClickCapture",this.onClick)},t}(Qm);function Jm(e,t){if(e===t)return!0;if(e&&t&&"object"==typeof e&&"object"==typeof t){if(e.constructor!==t.constructor)return!1;var n,r,o,a;if(Array.isArray(e)){if((n=e.length)!==t.length)return!1;for(r=n;0!=r--;)if(!Jm(e[r],t[r]))return!1;return!0}if("function"==typeof Map&&e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(a=e.entries();!(r=a.next()).done;)if(!t.has(r.value[0]))return!1;for(a=e.entries();!(r=a.next()).done;)if(!Jm(r.value[1],t.get(r.value[0])))return!1;return!0}if("function"==typeof Set&&e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(a=e.entries();!(r=a.next()).done;)if(!t.has(r.value[0]))return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===t.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===t.toString();if((n=(o=Object.keys(e)).length)!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!Object.prototype.hasOwnProperty.call(t,o[r]))return!1;if("undefined"!=typeof Element&&e instanceof Element)return!1;for(r=n;0!=r--;)if(!("_owner"===o[r]&&e.$$typeof||Jm(e[o[r]],t[o[r]])))return!1;return!0}return e!=e&&t!=t}function eh(e,t){try{return Jm(e,t)}catch(e){if((e.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw e}}function th(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function nh(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?th(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):th(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var rh=function(e){return e},oh={_event:{},error:null,initialValue:"",isDirty:!1,isDragEnabled:!1,isDragging:!1,isPressEnterToChange:!1,value:""},ah="CHANGE",ih="COMMIT",sh="DRAG_END",lh="DRAG_START",ch="DRAG",uh="INVALIDATE",dh="PRESS_DOWN",gh="PRESS_ENTER",ph="PRESS_UP",fh="RESET",mh="UPDATE";function hh(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:oh,t=e.value;return nh(nh(nh({},oh),e),{},{initialValue:t})}function yh(e){return function(t,n){var r=nh({},t),o=n.type,a=n.payload;switch(o){case ph:case dh:r.isDirty=!1;break;case lh:r.isDragging=!0;break;case sh:r.isDragging=!1;break;case ah:r.error=null,r.value=a.value,t.isPressEnterToChange&&(r.isDirty=!0);break;case ih:r.value=a.value,r.isDirty=!1;break;case fh:r.error=null,r.isDirty=!1,r.value=a.value||t.initialValue;break;case mh:r.value=a.value,r.isDirty=!1;break;case uh:r.error=a.error}return a.event&&(r._event=a.event),e(r,n)}}var vh=(0,s.forwardRef)((function(e,t){var n=e.disabled,r=void 0!==n&&n,o=e.dragDirection,a=void 0===o?"n":o,i=e.dragThreshold,u=void 0===i?10:i,d=e.id,g=e.isDragEnabled,p=void 0!==g&&g,f=e.isFocused,y=e.isPressEnterToChange,v=void 0!==y&&y,b=e.onBlur,_=void 0===b?ie.noop:b,w=e.onChange,E=void 0===w?ie.noop:w,$=e.onDrag,C=void 0===$?ie.noop:$,k=e.onDragEnd,S=void 0===k?ie.noop:k,x=e.onDragStart,O=void 0===x?ie.noop:x,P=e.onFocus,A=void 0===P?ie.noop:P,N=e.onKeyDown,R=void 0===N?ie.noop:N,T=e.onValidate,M=void 0===T?ie.noop:T,j=e.size,I=void 0===j?"default":j,F=e.setIsFocused,D=e.stateReducer,L=void 0===D?function(e){return e}:D,G=e.value,B=e.type,q=c(e,["disabled","dragDirection","dragThreshold","id","isDragEnabled","isFocused","isPressEnterToChange","onBlur","onChange","onDrag","onDragEnd","onDragStart","onFocus","onKeyDown","onValidate","size","setIsFocused","stateReducer","value","type"]),z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:rh,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:oh,n=Et((0,s.useReducer)(yh(e),hh(t)),2),r=n[0],o=n[1],a=function(e){return function(t,n){n&&n.persist&&n.persist(),o({type:e,payload:{value:t,event:n}})}},i=function(e){return function(t){t&&t.persist&&t.persist(),o({type:e,payload:{event:t}})}},l=function(e){return function(t){o({type:e,payload:t})}},c=a(ah),u=a(uh),d=a(fh),g=a(ih),p=a(mh),f=l(lh),m=l(ch),h=l(sh),y=i(ph),v=i(dh),b=i(gh);return{change:c,commit:g,dispatch:o,drag:m,dragEnd:h,dragStart:f,invalidate:u,pressDown:v,pressEnter:b,pressUp:y,reset:d,state:r,update:p}}(L,{isDragEnabled:p,value:G,isPressEnterToChange:v}),H=z.state,U=z.change,V=z.commit,W=z.drag,Y=z.dragEnd,K=z.dragStart,Q=z.invalidate,Z=z.pressDown,X=z.pressEnter,J=z.pressUp,ee=z.reset,te=z.update,ne=H._event,re=H.value,oe=H.isDragging,ae=H.isDirty,se=(0,s.useRef)(!1),le=function(e,t){var n=function(e){var t="ns-resize";switch(e){case"n":case"s":t="ns-resize";break;case"e":case"w":t="ew-resize"}return t}(t);return(0,s.useEffect)((function(){document.documentElement.style.cursor=e?n:null}),[e]),n}(oe,a);Tl((function(){G!==re&&(f||se.current?ae||(E(re,{event:ne}),se.current=!1):te(G))}),[re,ae,f,G]);var ce=function(e){var t=e.target.value;try{M(t,e),V(t,e)}catch(t){Q(t,e)}},ue=function(e,t){void 0===t&&(t={}),Am.set("drag",Xm);var n=(0,m.useRef)();return n.current||(n.current=function(e,t){var n,r,o=[],a=!1;return function(){for(var i=arguments.length,s=new Array(i),l=0;l<i;l++)s[l]=arguments[l];return a&&n===this&&t(s,o)||(r=e.apply(this,s),a=!0,n=this,o=s),r}}(xm,eh)),function(e,t,n){void 0===n&&(n={});var r=function(e){var t=new Set;return e.drag&&t.add(Am.get("drag")),e.wheel&&t.add(Am.get("wheel")),e.scroll&&t.add(Am.get("scroll")),e.move&&t.add(Am.get("move")),e.pinch&&t.add(Am.get("pinch")),e.hover&&t.add(Am.get("hover")),t}(e),o=h().useMemo((function(){return new Fm(r)}),[]);return o.config=t,o.handlers=e,o.nativeRefs=n,h().useEffect(o.effect,[]),o.config.domTarget?Km:o.bind}({drag:function(e){var t=e.distance,n=e.dragging,r=e.event;if(t){if(r.stopPropagation(),!n)return S(e),void Y(e);C(e),W(e),oe||(O(e),K(e))}}},n.current(t))}(0,{threshold:u,enabled:p}),de=p?ue():{};return(0,s.createElement)(Rf,l({},q,de,{className:"components-input-control__input",disabled:r,dragCursor:le,isDragging:oe,id:d,onBlur:function(e){_(e),F(!1),v&&ae&&(se.current=!0,function(e){var t=""===e;return!Ol(e)||t}(re)?ee(G):ce(e))},onChange:function(e){var t=e.target.value;U(t,e)},onFocus:function(e){A(e),F(!0)},onKeyDown:function(e){var t=e.keyCode;switch(R(e),t){case cs.UP:J(e);break;case cs.DOWN:Z(e);break;case cs.ENTER:X(e),v&&(e.preventDefault(),ce(e))}},ref:t,size:I,value:re,type:B}))})),bh=vh;var _h=(0,s.forwardRef)((function e(t,n){var r=t.__unstableStateReducer,o=void 0===r?function(e){return e}:r,a=t.__unstableInputWidth,i=t.className,u=t.disabled,g=void 0!==u&&u,p=t.hideLabelFromVision,f=void 0!==p&&p,m=t.id,h=t.isPressEnterToChange,y=void 0!==h&&h,v=t.label,b=t.labelPosition,_=void 0===b?"top":b,w=t.onChange,E=void 0===w?ie.noop:w,$=t.onValidate,C=void 0===$?ie.noop:$,k=t.onKeyDown,S=void 0===k?ie.noop:k,x=t.prefix,O=t.size,P=void 0===O?"default":O,A=t.suffix,N=t.value,R=c(t,["__unstableStateReducer","__unstableInputWidth","className","disabled","hideLabelFromVision","id","isPressEnterToChange","label","labelPosition","onChange","onValidate","onKeyDown","prefix","size","suffix","value"]),T=Et((0,s.useState)(!1),2),M=T[0],j=T[1],I=function(t){var n=rf(e),r="inspector-input-control-".concat(n);return t||r}(m),F=d()("components-input-control",i);return(0,s.createElement)(Uf,{__unstableInputWidth:a,className:F,disabled:g,gap:3,hideLabelFromVision:f,id:I,isFocused:M,justify:"left",label:v,labelPosition:_,prefix:x,size:P,suffix:A},(0,s.createElement)(bh,l({},R,{className:"components-input-control__input",disabled:g,id:I,isFocused:M,isPressEnterToChange:y,onChange:E,onKeyDown:S,onValidate:C,ref:n,setIsFocused:j,size:P,stateReducer:o,value:N})))}));const wh="app-input-control";var Eh=(0,s.forwardRef)(((e,t)=>{const{className:n,noPointerEvents:r,...o}=e,a=d()(wh,r&&`${wh}--no-pointer-events`,n);return(0,s.createElement)("div",{className:a},(0,s.createElement)(_h,l({ref:t},o)))})),$h=e=>{const{className:t,...n}=e;return(0,s.createElement)(Eh,l({className:d()("app-input-link-control",t),prefix:(0,s.createElement)(vp,{icon:Xf,size:24})},n))},Ch=e=>{let{id:t,websiteUrl:n,onSwitchAccount:r=ie.noop}=e;const{invalidateResolution:a}=Og(),[l,{loading:c,error:u,reset:d}]=Lp({path:"/wc/gla/mc/accounts/claim-overwrite",method:"POST",data:{id:t}}),g=(0,i.getSetting)("homeUrl");return(0,s.createElement)(xp,{className:"gla-reclaim-url-card",appearance:Ep.GOOGLE_MERCHANT_CENTER,description:(0,o.sprintf)(// translators: 1: website URL, 2: account ID.
5
  (0,o.__)("%1$s (%2$s)","google-listings-and-ads"),n,t),indicator:(0,s.createElement)(gc,{isSecondary:!0,disabled:c,eventName:"gla_mc_account_switch_account_button_click",eventProps:{context:"reclaim-url"},onClick:r},(0,o.__)("Switch account","google-listings-and-ads"))},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Reclaim your URL","google-listings-and-ads")),(0,s.createElement)(cp.Body,null,(0,o.__)("Your URL is currently claimed by another Merchant Center account.","google-listings-and-ads")),(0,s.createElement)(Zf,null,(0,s.createElement)($h,{disabled:!0,value:g}),(0,s.createElement)(gc,{isSecondary:!0,loading:c,eventName:"gla_mc_account_reclaim_url_button_click",onClick:async()=>{d(),await l({parse:!1}),a("getGoogleMCAccount",[])}},(0,o.__)("Reclaim my URL","google-listings-and-ads"))),(0,s.createElement)(cp.HelperText,null,(0,s.createInterpolateElement)((0,o.__)("If you reclaim this URL, it will cause any existing product listings or ads to stop running, and the other verified account will be notified that they have lost their claim. <link>Learn more</link>.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc",linkId:"claim-url",href:"https://support.google.com/merchants/answer/176793"})})),u&&(0,s.createElement)(Fc,{status:"error",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("<strong>We were unable to reclaim this URL.</strong> You may not have permission to reclaim this URL, or an error might have occurred. Try again later or contact your Google account administrator.","google-listings-and-ads"),{strong:(0,s.createElement)("strong",null)}))))},kh=e=>{let{id:t,claimedUrl:n,newUrl:r,onSelectAnotherAccount:a=(()=>{})}=e;const{createNotice:l}=Np(),{invalidateResolution:c}=Og(),[u,{loading:d,error:g,response:p}]=Lp({path:"/wc/gla/mc/accounts/switch-url",method:"POST",data:{id:t}}),f=(0,i.getSetting)("homeUrl"),m=()=>{a()};return p&&403===p.status?(0,s.createElement)(Ch,{id:g.id,websiteUrl:g.website_url,onSwitchAccount:m}):(0,s.createElement)(xp,{className:"gla-switch-url-card",appearance:Ep.GOOGLE_MERCHANT_CENTER,description:(0,o.sprintf)(// translators: 1: the new URL, 2: account ID.
14
  (0,o.__)("Minimum order for <strong>%1$s</strong> + %2$d more","google-listings-and-ads"),textWithoutMore:// translators: 1: list of country names separated by comma.
15
  (0,o.__)("Minimum order for <strong>%1$s</strong>","google-listings-and-ads")}))},dv=e=>{const{countryOptions:t,value:n,onChange:r,onDelete:a}=e,{countries:i,threshold:l,currency:c}=n;return(0,s.createElement)(jy,{className:"gla-minimum-order-input-control",label:(0,s.createElement)("div",{className:"gla-minimum-order-input-control__label"},(0,s.createElement)(uv,{countries:i}),(0,s.createElement)(xy,{button:(0,s.createElement)(gc,{isTertiary:!0},(0,o.__)("Edit","google-listings-and-ads")),modal:(0,s.createElement)(cv,{countryOptions:t,initialValues:n,onSubmit:r,onDelete:a})})),suffix:c,value:l,onBlur:(e,t)=>{t!==n.threshold&&r({countries:i,threshold:t>0?t:void 0,currency:c})}})};const gv=(e,t,n)=>e.map((e=>{const r={...e,options:{...e.options}};return null!=n&&n.countries.includes(r.country)?r.options.free_shipping_threshold=n.threshold:null!=t&&t.countries.includes(r.country)&&(r.options.free_shipping_threshold=void 0),r}));var pv=e=>{const{value:t=[],onChange:n}=e;return(0,s.createElement)(gp.Card,{className:"gla-minimum-order-card"},(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(gp.Card.Title,null,(0,o.__)("Minimum order to qualify for free shipping","google-listings-and-ads")),(0,s.createElement)(fp,{size:"large"},(()=>{const e=t.filter(uy),r=(e=>{const t=new Map;return e.forEach((e=>{const{method:n,options:{free_shipping_threshold:r},currency:o}=e,a=`${n} ${r} ${o}`,i=t.get(a)||{countries:[],method:n,threshold:r,currency:o};i.countries.push(e.country),t.set(a,i)})),Array.from(t.values())})(e),a=e.map((e=>e.country)),i=e=>r=>{n(gv(t,e,r))},l=e=>()=>{n(gv(t,e))};if(1===r.length)return(0,s.createElement)(dv,{countryOptions:a,value:r[0],onChange:i(r[0]),onDelete:l(r[0])});const c=r.filter((e=>void 0!==e.threshold)),u=r.find((e=>void 0===e.threshold));return(0,s.createElement)(s.Fragment,null,c.map((e=>(0,s.createElement)(dv,{key:e.countries.join("-"),countryOptions:a,value:e,onChange:i(e),onDelete:l(e)}))),u&&(0,s.createElement)("div",null,(0,s.createElement)(xy,{button:(0,s.createElement)(gc,{isSecondary:!0,icon:(0,s.createElement)(Sy.Z,null)},(0,o.__)("Add another minimum order","google-listings-and-ads")),modal:(0,s.createElement)(lv,{countryOptions:u.countries,initialValues:u,onSubmit:e=>{n(gv(t,null,e))}})})))})())))},fv=e=>{const{audienceCountries:t,formProps:n}=e,{getInputProps:r,values:o,setValue:a}=n,i=o.shipping_country_rates.some(uy);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(ov,l({audienceCountries:t},r("shipping_country_rates"),{onChange:(c=r("shipping_country_rates").onChange,e=>{e.some(uy)||a("offer_free_shipping",void 0),c(e)})})),i&&(0,s.createElement)(s.Fragment,null,(0,s.createElement)(av,l({},r("offer_free_shipping"),{onChange:(e=>t=>{if(!t){const e=o.shipping_country_rates.map((e=>({...e,options:{...e.options,free_shipping_threshold:void 0}})));a("shipping_country_rates",e)}e(t)})(r("offer_free_shipping").onChange)})),o.offer_free_shipping&&(0,s.createElement)(pv,r("shipping_country_rates"))));var c},mv=e=>{let{formProps:t,audienceCountries:n}=e;const{getInputProps:r,values:a,setValue:i}=t,c=r("shipping_rate"),u=e=>t=>{switch(t){case"automatic":case"flat":i("shipping_time","flat");break;case"manual":i("shipping_time","manual")}e(t)};return(0,s.createElement)(gp,{title:(0,o.__)("Shipping rates","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Your shipping rates will be shown to potential customers on Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-read-more",href:"https://support.google.com/merchants/answer/7050921"},(0,o.__)("Read more","google-listings-and-ads"))))},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(yy,l({},c,{label:(0,s.createInterpolateElement)((0,o.__)("<strong>Recommended:</strong> Automatically sync my store’s shipping settings to Google.","google-listings-and-ads"),{strong:(0,s.createElement)("strong",null)}),value:"automatic",collapsible:!0,onChange:u(c.onChange)}),(0,s.createElement)(my,null,(0,o.__)("My current settings and any future changes to my store’s shipping rates and classes will be automatically synced to Google Merchant Center.","google-listings-and-ads"))),(0,s.createElement)(yy,l({},c,{label:(0,o.__)("My shipping settings are simple. I can manually estimate flat shipping rates.","google-listings-and-ads"),value:"flat",collapsible:!0,onChange:u(c.onChange)})),(0,s.createElement)(yy,l({},c,{label:(0,o.__)("My shipping settings are complex. I will enter my shipping rates and times manually in Google Merchant Center.","google-listings-and-ads"),value:"manual",collapsible:!0,onChange:u(c.onChange)}),(0,s.createElement)(my,null,(0,s.createInterpolateElement)((0,o.__)("I understand that if I don’t set this up manually in <link>Google Merchant Center</link>, my products will be disapproved by Google.","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-manual",href:"https://www.google.com/retail/solutions/merchant-center/"})})))))),"flat"===a.shipping_rate&&(0,s.createElement)(fv,{audienceCountries:n,formProps:t})))},hv=()=>Ag("getShippingTimes"),yv=e=>{let{additionalCountryCodes:t,...n}=e,{data:r}=Cy();return r?(t&&(r=Array.from(new Set(r.concat(t)))),(0,s.createElement)(Wy,l({},n,{countryCodes:r}))):(0,s.createElement)(Wg,null)},vv=e=>{const t={};return 0===e.countries.length&&(t.countries=(0,o.__)("Please specify at least one country.","google-listings-and-ads")),Number.isInteger(e.time)||(t.time=(0,o.__)("Please enter the estimated shipping time.","google-listings-and-ads")),e.time<0&&(t.time=(0,o.__)("The estimated shipping time cannot be less than 0.","google-listings-and-ads")),t},bv=e=>{const{onRequestClose:t}=e,{upsertShippingTimes:n}=Og(),r=(()=>{const{data:e}=Cy(),t=(0,dn.useSelect)((e=>e(Lc).getShippingTimes().map((e=>e.countryCode))),[]);if(!e)return[];const n=new Set(t);return e.filter((e=>!n.has(e)))})(),[a,i]=(0,s.useState)(!1);return(0,s.createElement)(Bl.Form,{initialValues:{countries:r,time:0},validate:vv,onSubmit:e=>{n({countryCodes:e.countries,time:e.time}),t()}},(e=>{const{getInputProps:n,isValidForm:r,handleSubmit:c}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!a,shouldCloseOnClickOutside:!a,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!r,onClick:c},(0,o.__)("Save","google-listings-and-ads"))],onRequestClose:t},(0,s.createElement)(fp,null,(0,s.createElement)(yv,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),onDropdownVisibilityChange:i},n("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},n("time")))))}))},_v=()=>{const[e,t]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{isSecondary:!0,icon:(0,s.createElement)(Sy.Z,null),onClick:()=>{t(!0)}},(0,o.__)("Add another time","google-listings-and-ads")),e&&(0,s.createElement)(bv,{onRequestClose:()=>{t(!1)}}))},wv=e=>{const{countries:t}=e;return(0,s.createElement)("div",null,(0,s.createElement)(ev,{countries:t,textWithMore:// translators: 1: list of country names separated by comma, up to 5 countries; 2: the remaining count of countries.
16
  (0,o.__)("Shipping time for <strong>%1$s</strong> + %2$d more","google-listings-and-ads"),textWithoutMore:// translators: 1: list of country names separated by comma.
17
+ (0,o.__)("Shipping time for <strong>%1$s</strong>","google-listings-and-ads")}))},Ev=e=>{const{time:t,onRequestClose:n}=e,{upsertShippingTimes:r,deleteShippingTimes:a}=Og(),[i,c]=(0,s.useState)(!1),u=()=>{a(t.countries),n()};return(0,s.createElement)(Bl.Form,{initialValues:{countries:t.countries,time:t.time},validate:vv,onSubmit:e=>{r({countryCodes:e.countries,time:e.time});const o=new Set(e.countries),i=t.countries.filter((e=>!o.has(e)));i.length&&a(i),n()}},(e=>{const{getInputProps:t,isValidForm:r,handleSubmit:a}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!i,shouldCloseOnClickOutside:!i,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"delete",isTertiary:!0,isDestructive:!0,onClick:u},(0,o.__)("Delete","google-listings-and-ads")),(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!r,onClick:a},(0,o.__)("Save","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)(fp,null,(0,s.createElement)(yv,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),onDropdownVisibilityChange:c},t("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},t("time")))))}))},$v=e=>{const{time:t}=e,[n,r]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{className:"gla-edit-time-button",isTertiary:!0,onClick:()=>{r(!0)}},(0,o.__)("Edit","google-listings-and-ads")),n&&(0,s.createElement)(Ev,{time:t,onRequestClose:()=>{r(!1)}}))},Cv=e=>{const{value:t,onBlur:n}=e,{countries:r,time:a}=t,{data:i}=Cy();return i?(0,s.createElement)("div",{className:"gla-countries-time-input"},(0,s.createElement)(My,{label:(0,s.createElement)("div",{className:"label"},(0,s.createElement)(wv,{countries:r}),(0,s.createElement)($v,{time:t})),suffix:(0,o.__)("days","google-listings-and-ads"),value:a,onBlur:n})):(0,s.createElement)(Wg,null)},kv=e=>{const t=Pg(e.savedValue),[n,r]=(0,s.useState)(t),{upsertShippingTimes:o}=Og();return(0,s.useEffect)((()=>{r(t)}),[t]),(0,s.createElement)(Cv,{value:n,onBlur:(e,t)=>{const{countries:a,time:i}=n;i!==t&&(r({countries:a,time:t}),o({countryCodes:a,time:t}))}})},Sv=()=>{const{data:e}=hv(),{data:t}=Cy();if(!t)return(0,s.createElement)(Wg,null);const n=t.length,r=e.length,o=n-r,a=(e=>{const t=new Map;return e.forEach((e=>{const{countryCode:n,time:r}=e,o=t.get(r)||{countries:[],time:r};o.countries.push(n),t.set(r,o)})),Array.from(t.values())})(e);return 0===a.length&&a.push({countries:t,time:null}),(0,s.createElement)("div",{className:"gla-shipping-time-setup"},(0,s.createElement)(fp,null,(0,s.createElement)("div",{className:"countries-time"},(0,s.createElement)(fp,null,a.map((e=>(0,s.createElement)("div",{key:e.countries.join("-"),className:"countries-time-input-form"},(0,s.createElement)(kv,{savedValue:e})))),r>=1&&o>=1&&(0,s.createElement)("div",{className:"add-time-button"},(0,s.createElement)(_v,null))))))},xv=e=>{let{formProps:t}=e;return(0,s.createElement)(gp,{title:(0,o.__)("Shipping times","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Your shipping times will be shown to potential customers on Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-read-more",href:"https://support.google.com/merchants/answer/7050921"},(0,o.__)("Read more","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(gp.Card.Title,null,(0,o.__)("Estimated shipping times","google-listings-and-ads")),(0,s.createElement)(Sv,{formProps:t}))))};const Ov=(e,t)=>{const n=["country","method","currency","rate","options.free_shipping_threshold"];return(0,ie.isEqual)((0,ie.at)(e,n),(0,ie.at)(t,n))};var Pv=(e,t)=>(0,ie.differenceWith)(e,t,Ov),Av=(e,t)=>void 0!==e.id&&e.id===t.id||e.country===t.country&&e.method===t.method,Nv=()=>Ag("getShippingRates"),Rv=()=>{const{data:e}=Nv(),{deleteShippingRates:t,upsertShippingRates:n}=Og();return{saveShippingRates:(0,s.useCallback)((async r=>{const o=((e,t)=>((e,t)=>(0,ie.differenceWith)(t,e,Av))(e,t).map((e=>e.id)))(r,e);o.length&&await t(o);const a=Pv(r,e);a.length&&await n(a)}),[t,e,n])}},Tv=e=>{const{formProps:t,submitButton:n}=e,{values:r}=t,{shipping_country_rates:a,...i}=r,{data:l}=Cy(),c=Ey(l),u="flat"===r.shipping_time;return(e=>{const{saveSettings:t}=Og(),{createNotice:n}=Np();wy(e,(async e=>{try{await t(e)}catch(e){n("error",(0,o.__)("There was an error trying to save settings. Please try again later.","google-listings-and-ads"))}}))})(i),(e=>{const{saveShippingRates:t}=Rv(),n=Pg(e);wy(n,(async e=>{try{await t(e)}catch(e){}}))})(a),(0,s.createElement)(tp,null,(0,s.createElement)(mv,{formProps:t,audienceCountries:l}),u&&(0,s.createElement)(xv,{formProps:t}),(0,s.createElement)(ky,{show:c},(0,s.createElement)(vy,{formProps:t})),(0,s.createElement)(rp,null,n))};function Mv(){const e=(0,s.useRef)(!1);return(0,s.useEffect)((()=>(e.current=!0,()=>{e.current=!1})),[]),(0,s.useCallback)((()=>e.current),[])}var jv=e=>{if(e.some(uy))return e.some((e=>e.options.free_shipping_threshold>0))},Iv=e=>{const t=Pg(e),[n,r]=Lp(t,{loading:!0});return(0,s.useEffect)((()=>{t&&n()}),[n,t]),r},Fv=()=>{const{hasFinishedResolution:e,data:t}=Nv(),{loading:n,data:r}=(()=>{const{loading:e,data:t}=Cy(),{loading:n,data:r}=Iv(t&&{path:(0,tg.addQueryArgs)("/wc/gla/mc/shipping/rates/suggestions",{country_codes:t})});return{loading:e||n,data:null==r?void 0:r.filter((e=>e.method===sc))}})(),a=(0,s.useRef)(void 0);e&&void 0===a.current&&(a.current=0===t.length);const i=a.current&&r,[l,c]=(0,s.useState)(!1),u=(()=>{const{createNotice:e}=Np(),{saveShippingRates:t}=Rv();return(0,s.useCallback)((async n=>{try{await t(n)}catch(t){e("error",(0,o.__)("Unable to use your WooCommerce shipping settings as shipping rates in Google. You may have to enter shipping rates manually.","google-listings-and-ads"))}}),[e,t])})();return function(e,t){const n=(0,s.useRef)(!1);for(var r=arguments.length,o=new Array(r>2?r-2:0),a=2;a<r;a++)o[a-2]=arguments[a];const i=Pg(o);(0,s.useEffect)((()=>{!0!==n.current&&e&&(n.current=!0,t(...i))}),[i,t,e])}(i,(0,s.useCallback)((async e=>{await u(e),c(!0)}),[u]),r),{loading:n||!e||i&&!l,data:t}},Dv=e=>{const{onContinue:t=(()=>{})}=e,{settings:n}=cy(),{loading:r,data:a}=Fv(),{data:i}=hv(),{data:l}=Cy(),{saveSettings:c}=Og(),{saveShippingRates:u}=Rv(),[d,g]=(0,s.useState)(!1),{createNotice:p}=Np(),f=Mv();return n&&!r&&i&&l?(0,s.createElement)("div",{className:"gla-setup-free-listings"},(0,s.createElement)(ly,null),(0,s.createElement)(Bl.Form,{initialValues:{shipping_rate:n.shipping_rate||"automatic",shipping_time:n.shipping_time||"flat",tax_rate:n.tax_rate,shipping_country_rates:a,offer_free_shipping:jv(a)},validate:()=>({}),onSubmit:async e=>{const{shipping_country_rates:n,...r}=e;g(!0);try{await Promise.all([c(r),u(n)]),t()}catch(e){f()&&g(!1),p("error",(0,o.__)("There is a problem in saving your settings and shipping rates. Please try again later.","google-listings-and-ads"))}}},(e=>{const{values:t,handleSubmit:n}=e,r=fy(t,i,l),a=Object.keys(r).length>=1;return(0,s.createElement)(Tv,{formProps:e,submitButton:(0,s.createElement)(gc,{isPrimary:!0,disabled:a,loading:d,onClick:n},(0,o.__)("Continue","google-listings-and-ads"))})}))):(0,s.createElement)(Wg,null)},Lv=e=>{const{formProps:t}=e,{values:n,isValidForm:r,getInputProps:a,handleSubmit:i}=t,{locale:c,language:u}=n,[d,g]=(0,s.useState)(!0);return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ie.noop;const{saveTargetAudience:n}=Og(),{createNotice:r}=Np(),a=async e=>{try{await n(e),t(!0)}catch(e){r("error",(0,o.__)("There was an error saving target audience data.","google-listings-and-ads")),t(!1)}};wy(e,a,{callOnFirstRender:!0})}(n,g),((e,t)=>{const{data:n}=hv(),{saveShippingRates:r}=Rv(),{deleteShippingTimes:a}=Og(),{createNotice:i}=Np(),l=by((async()=>{try{if(r([]),n.length){const e=n.map((e=>e.countryCode));a(e)}}catch(e){i("error",(0,o.__)("Something went wrong while trying to clear your shipping data. Please try again later.","google-listings-and-ads"))}}),500),c=(0,s.useRef)(null),u=(0,s.useRef)(null);(0,s.useEffect)((()=>{if(null===c.current&&null===u.current)return c.current=e,void(u.current=t);"all"===c.current&&"all"===e||"selected"===c.current&&"selected"===e&&u.current.length===t.length||(c.current=e,u.current=t,l.callback())}),[l,e,t])})(n.location,n.countries),(0,s.createElement)(s.Fragment,null,(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Where do you want to sell your products?","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Language","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,s.createInterpolateElement)((0,o.__)("Listings can only be displayed in your site language. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-audience",linkId:"site-language",href:"https://support.google.com/merchants/answer/160637"})})),(0,s.createElement)(hy,{selected:c,options:[{label:u,value:c}]})),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Location","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,o.__)("Your store should already have the appropriate shipping and tax rates (if required) for potential customers in your selected location(s).","google-listings-and-ads")),(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(yy,l({},a("location"),{collapsible:!0,label:(0,o.__)("Selected countries only","google-listings-and-ads"),value:"selected"}),(0,s.createElement)("div",{className:"input"},(0,s.createElement)(Wy,l({multiple:!0},a("countries")))),(0,s.createElement)("div",{className:"cannot-find-country"},(0,o.__)("Can’t find a country? Only supported countries can be selected.","google-listings-and-ads"))),(0,s.createElement)(yy,l({},a("location"),{label:(0,o.__)("All countries","google-listings-and-ads"),value:"all"}),(0,s.createElement)(my,null,(0,o.__)("Your listings will be shown in all supported countries.","google-listings-and-ads")))))))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:!r||!d,onClick:i},(0,o.__)("Continue","google-listings-and-ads"))))},Gv=e=>{const{onContinue:t=(()=>{})}=e,{loading:n,data:r}=(()=>{const{hasFinishedResolution:e}=$y(),{hasFinishedResolution:t,data:n}=Ng(),{loading:r,data:o}=Iv({path:"/wc/gla/mc/target_audience/suggestions"});return{loading:!e||!t||r,data:t&&null===(null==n?void 0:n.location)&&null===(null==n?void 0:n.countries)?o:n}})();return n?(0,s.createElement)(Wg,null):(0,s.createElement)("div",{className:"gla-choose-audience"},(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Choose your audience","google-listings-and-ads"),description:(0,o.__)("Configure who sees your product listings on Google.","google-listings-and-ads")}),(0,s.createElement)(Bl.Form,{initialValues:{locale:r.locale,language:r.language,location:r.location,countries:r.countries||[]},validate:e=>{const t={};return e.location||(t.location=(0,o.__)("Please select a location option.","google-listings-and-ads")),"selected"===e.location&&0===e.countries.length&&(t.countries=(0,o.__)("Please select at least one country.","google-listings-and-ads")),t},onSubmit:()=>{t()}},(e=>(0,s.createElement)(Lv,{formProps:e})))))},Bv=()=>(0,i.getSetting)("adminUrl");const qv={address:"",address2:"",city:"",state:"",country:"",postcode:"",isMCAddressDifferent:null,isAddressFilled:null};function zv(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"wc";const{data:t,hasFinishedResolution:n,invalidateResolution:r}=Ag("getGoogleMCContactInformation"),o=Xy();let a=qv;if(n&&t){const{is_mc_address_different:n}=t,r="wc"===e?t.wc_address:t.mc_address,i=(null==r?void 0:r.street_address)||"",s=(null==r?void 0:r.locality)||"",l=(null==r?void 0:r.region)||"",c=(null==r?void 0:r.postal_code)||"",[u,d=""]=i.split("\n");a={address:u,address2:d,city:s,state:l,country:o[null==r?void 0:r.country],postcode:c,isAddressFilled:!t.wc_address_errors.length,isMCAddressDifferent:n}}return{refetch:r,loaded:n,data:a}}var Hv={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{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[25689]"]]]],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)|3(?:06|43|6[578])|4(?:03|1[68]|3[178]|50|74)|5(?:06|1[49]|48|79|8[17])|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[12]|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","(?:0\\d\\d|222|800)\\d{6}",[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-3]"],"($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",["11|[67]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]]],0,0,"0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[47]\\d{6}|76\\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-278])))|(?: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|81|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|81|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]|1[0-2]|2[0-68]|3[1289]|4[0-24-9]|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","(?:862\\d|9008)\\d{3}|(?:[2-46]\\d|77)\\d{5}",[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}(?:\\d(?:\\d(?:\\d{4})?)?)?|(?:[235-79]\\d|46)\\d{6}",[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|81|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","90\\d{5}|(?:[2378]|6\\d\\d)\\d{6}",[7,9],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[237-9]"]],["(\\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[89][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(?:0\\d|1[0-5]|6[1267]|7[0-57]))\\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"],"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","(?:[19]\\d|[23]1|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","[2-57-9]\\d{5}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1.$2.$3",["[2-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}|[89]\\d{6,9}|1\\d{4,5}",[5,6,7,8,9,10],[["(\\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-57-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]","8000\\d{3}|(?:[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)"],"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-4]|[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]|33)|4(?:00|4[24]|65|82)|5(?:00|29|83)|6(?:00|66|82)|777|8(?:00|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[39]|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[0179]|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[01579]|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[12]|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","(?:63|80)0\\d{6}|(?:21|[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\\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{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["510"]],["(\\d{4})(\\d{4})(\\d{4})","$1 $2 $3",["5"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["(?:210|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}"]]]}};function Uv(e,t){var n=Array.prototype.slice.call(t);return n.push(Hv),e.apply(this,n)}function Vv(e){return Vv="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Vv(e)}function Wv(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Yv(e){var t,n,r,o,a,i=(o=Array.prototype.slice.call(e),a=4,function(e){if(Array.isArray(e))return e}(o)||function(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(_n=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{_n||null==i.return||i.return()}finally{if(r)throw o}}return n}(o,a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()),s=i[0],l=i[1],c=i[2],u=i[3];if("string"!=typeof s)throw new TypeError("A text for parsing must be a string.");if(t=s,l&&"string"!=typeof l){if(!Kv(l))throw new Error("Invalid second argument: ".concat(l));c?(n=l,r=c):r=l}else u?(n=c,r=u):(n=void 0,r=c),l&&(n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Wv(e,t,n[t])}))}return e}({defaultCountry:l},n));return{text:t,options:n,metadata:r}}var Kv=function(e){return"object"===Vv(e)},Qv="".concat("-‐-―−ー-").concat("//").concat("..").concat("  ­​⁠ ").concat("()()[]\\[\\]").concat("~⁓∼~"),Zv=function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.name=this.constructor.name,this.message=t,this.stack=new Error(t).stack};function Xv(e,t){e=e.split("-"),t=t.split("-");for(var n=e[0].split("."),r=t[0].split("."),o=0;o<3;o++){var a=Number(n[o]),i=Number(r[o]);if(a>i)return 1;if(i>a)return-1;if(!isNaN(a)&&isNaN(i))return 1;if(isNaN(a)&&!isNaN(i))return-1}return e[1]&&t[1]?e[1]>t[1]?1:e[1]<t[1]?-1:0:!e[1]&&t[1]?1:e[1]&&!t[1]?-1:0}function Jv(e){return Jv="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Jv(e)}function eb(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function tb(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function nb(e,t,n){return t&&tb(e.prototype,t),n&&tb(e,n),e}(Zv.prototype=Object.create(Error.prototype)).constructor=Zv;var rb=" ext. ",ob=/^\d+$/,ab=function(){function e(t){eb(this,e),function(e){if(!e)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!db(e)||!db(e.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(db(e)?"an object of shape: { "+Object.keys(e).join(", ")+" }":"a "+gb(e)+": "+e,"."))}(t),this.metadata=t,fb.call(this,t)}return nb(e,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter((function(e){return"001"!==e}))}},{key:"getCountryMetadata",value:function(e){return this.metadata.countries[e]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(e){return void 0!==this.getCountryMetadata(e)}},{key:"hasCallingCode",value:function(e){if(this.getCountryCodesForCallingCode(e))return!0;if(this.nonGeographic()){if(this.nonGeographic()[e])return!0}else{var t=this.countryCallingCodes()[e];if(t&&1===t.length&&"001"===t[0])return!0}}},{key:"isNonGeographicCallingCode",value:function(e){return this.nonGeographic()?!!this.nonGeographic()[e]:!this.getCountryCodesForCallingCode(e)}},{key:"country",value:function(e){return this.selectNumberingPlan(e)}},{key:"selectNumberingPlan",value:function(e,t){if(e&&ob.test(e)&&(t=e,e=null),e&&"001"!==e){if(!this.hasCountry(e))throw new Error("Unknown country: ".concat(e));this.numberingPlan=new ib(this.getCountryMetadata(e),this)}else if(t){if(!this.hasCallingCode(t))throw new Error("Unknown calling code: ".concat(t));this.numberingPlan=new ib(this.getNumberingPlanMetadata(t),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(e){var t=this.countryCallingCodes()[e];if(t){if(1===t.length&&3===t[0].length)return;return t}}},{key:"getCountryCodeForCallingCode",value:function(e){var t=this.getCountryCodesForCallingCode(e);if(t)return t[0]}},{key:"getNumberingPlanMetadata",value:function(e){var t=this.getCountryCodeForCallingCode(e);if(t)return this.getCountryMetadata(t);if(this.nonGeographic()){var n=this.nonGeographic()[e];if(n)return n}else{var r=this.countryCallingCodes()[e];if(r&&1===r.length&&"001"===r[0])return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(e){return this.numberingPlan.type(e)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(e){return this.selectNumberingPlan(e)}},{key:"hasSelectedNumberingPlan",value:function(){return void 0!==this.numberingPlan}}]),e}(),ib=function(){function e(t,n){eb(this,e),this.globalMetadataObject=n,this.metadata=t,fb.call(this,n.metadata)}return nb(e,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(e){return e[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var e=this;return(this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[]).map((function(t){return new sb(t,e)}))}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(e){return e[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return!(this.types()&&0===this.types().length||!this.types())}},{key:"type",value:function(e){if(this.hasTypes()&&ub(this.types(),e))return new cb(ub(this.types(),e),this)}},{key:"ext",value:function(){return this.v1||this.v2?rb:this.metadata[13]||rb}}]),e}(),sb=function(){function e(t,n){eb(this,e),this._format=t,this.metadata=n}return nb(e,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!(!this.nationalPrefixFormattingRule()||lb.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),e}(),lb=/^\(?\$1\)?$/,cb=function(){function e(t,n){eb(this,e),this.type=t,this.metadata=n}return nb(e,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),e}();function ub(e,t){switch(t){case"FIXED_LINE":return e[0];case"MOBILE":return e[1];case"TOLL_FREE":return e[2];case"PREMIUM_RATE":return e[3];case"PERSONAL_NUMBER":return e[4];case"VOICEMAIL":return e[5];case"UAN":return e[6];case"PAGER":return e[7];case"VOIP":return e[8];case"SHARED_COST":return e[9]}}var db=function(e){return"object"===Jv(e)},gb=function(e){return Jv(e)};function pb(e,t){if((t=new ab(t)).hasCountry(e))return t.country(e).countryCallingCode();throw new Error("Unknown country: ".concat(e))}function fb(e){var t=e.version;"number"==typeof t?(this.v1=1===t,this.v2=2===t,this.v3=3===t,this.v4=4===t):t?-1===Xv(t,"1.2.0")?this.v2=!0:-1===Xv(t,"1.7.35")?this.v3=!0:this.v4=!0:this.v1=!0}var mb=function(e){return"([".concat("0-90-9٠-٩۰-۹","]{1,").concat(e,"})")};function hb(e){var t="#?";return";ext="+mb("20")+"|[  \\t,]*(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)[:\\..]?[  \\t,-]*"+mb("20")+"#?|[  \\t,]*(?:[xx##~~]|int|int)[:\\..]?[  \\t,-]*"+mb("9")+"#?|[- ]+"+mb("6")+"#|[  \\t]*(?:,{2}|;)[:\\..]?[  \\t,-]*"+mb("15")+"#?|[  \\t]*(?:,)+[:\\..]?[  \\t,-]*"+mb("9")+t}var yb="[++]{0,1}(?:["+Qv+"]*[0-90-9٠-٩۰-۹]){3,}["+Qv+"0-90-9٠-٩۰-۹]*",vb=new RegExp("^[++]{0,1}(?:["+Qv+"]*[0-90-9٠-٩۰-۹]){1,2}$","i"),bb=yb+"(?:"+hb()+")?",_b=new RegExp("^[0-90-9٠-٩۰-۹]{2}$|^"+bb+"$","i");function wb(e){return e.length>=2&&_b.test(e)}var Eb=new RegExp("(?:"+hb()+")$","i"),$b={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function Cb(e){var t="",n=e.split(""),r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}t+=kb(a,t)||""}return t}function kb(e,t){if("+"===e){if(t)return;return"+"}return function(e){return $b[e]}(e)}function Sb(e,t){return xb(e,void 0,t)}function xb(e,t,n){var r=n.type(t),o=r&&r.possibleLengths()||n.possibleLengths();if(!o)return"IS_POSSIBLE";if("FIXED_LINE_OR_MOBILE"===t){if(!n.type("FIXED_LINE"))return xb(e,"MOBILE",n);var a=n.type("MOBILE");a&&(o=function(e,t){var n=e.slice(),r=t,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;e.indexOf(s)<0&&n.push(s)}return n.sort((function(e,t){return e-t}))}(o,a.possibleLengths()))}else if(t&&!r)return"INVALID_LENGTH";var i=e.length,s=o[0];return s===i?"IS_POSSIBLE":s>i?"TOO_SHORT":o[o.length-1]<i?"TOO_LONG":o.indexOf(i,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function Ob(e,t){return"IS_POSSIBLE"===Sb(e,t)}function Pb(e,t){return e=e||"",new RegExp("^(?:"+t+")$").test(e)}var Ab=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function Nb(e,t,n){if(t=t||{},e.country){(n=new ab(n)).selectNumberingPlan(e.country,e.countryCallingCode);var r=t.v2?e.nationalNumber:e.phone;if(Pb(r,n.nationalNumberPattern())){if(Rb(r,"FIXED_LINE",n))return n.type("MOBILE")&&""===n.type("MOBILE").pattern()?"FIXED_LINE_OR_MOBILE":n.type("MOBILE")?Rb(r,"MOBILE",n)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE":"FIXED_LINE_OR_MOBILE";for(var o=0,a=Ab;o<a.length;o++){var i=a[o];if(Rb(r,i,n))return i}}}}function Rb(e,t,n){return!(!(t=n.type(t))||!t.pattern())&&!(t.possibleLengths()&&t.possibleLengths().indexOf(e.length)<0)&&Pb(e,t.pattern())}var Tb=/(\$\d)/;var Mb=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function jb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ib={formatExtension:function(e,t,n){return"".concat(e).concat(n.ext()).concat(t)}};function Fb(e,t,n,r,o){var a=function(e,t){var n=e,r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}var i=a;if(i.leadingDigitsPatterns().length>0){var s=i.leadingDigitsPatterns()[i.leadingDigitsPatterns().length-1];if(0!==t.search(s))continue}if(Pb(t,i.pattern()))return i}}(r.formats(),e);return a?function(e,t,n){var r=n.useInternationalFormat,o=n.withNationalPrefix,a=(n.carrierCode,n.metadata,e.replace(new RegExp(t.pattern()),r?t.internationalFormat():o&&t.nationalPrefixFormattingRule()?t.format().replace(Tb,t.nationalPrefixFormattingRule()):t.format()));return r?function(e){return e.replace(new RegExp("[".concat(Qv,"]+"),"g")," ").trim()}(a):a}(e,a,{useInternationalFormat:"INTERNATIONAL"===n,withNationalPrefix:!a.nationalPrefixIsOptionalWhenFormattingInNationalFormat()||!o||!1!==o.nationalPrefix,carrierCode:t,metadata:r}):e}function Db(e,t,n,r){return t?r(e,t,n):e}function Lb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Gb(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}var Bb=function(){function e(t,n,r){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),!t)throw new TypeError("`country` or `countryCallingCode` not passed");if(!n)throw new TypeError("`nationalNumber` not passed");if(!r)throw new TypeError("`metadata` not passed");var o=new ab(r);qb(t)&&(this.country=t,o.country(t),t=o.countryCallingCode()),this.countryCallingCode=t,this.nationalNumber=n,this.number="+"+this.countryCallingCode+this.nationalNumber,this.metadata=r}var t,n;return t=e,n=[{key:"setExt",value:function(e){this.ext=e}},{key:"isPossible",value:function(){return function(e,t,n){if(void 0===t&&(t={}),n=new ab(n),t.v2){if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}else{if(!e.phone)return!1;if(e.country){if(!n.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));n.country(e.country)}else{if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}}if(n.possibleLengths())return Ob(e.phone||e.nationalNumber,n);if(e.countryCallingCode&&n.isNonGeographicCallingCode(e.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}(this,{v2:!0},this.metadata)}},{key:"isValid",value:function(){return function(e,t,n){return t=t||{},n=new ab(n),!!e.country&&(n.selectNumberingPlan(e.country,e.countryCallingCode),n.hasTypes()?void 0!==Nb(e,t,n.metadata):Pb(t.v2?e.nationalNumber:e.phone,n.nationalNumberPattern()))}(this,{v2:!0},this.metadata)}},{key:"isNonGeographic",value:function(){return new ab(this.metadata).isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(e){return this.number===e.number&&this.ext===e.ext}},{key:"getType",value:function(){return Nb(this,{v2:!0},this.metadata)}},{key:"format",value:function(e,t){return function(e,t,n,r){if(n=n?function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){jb(e,t,n[t])}))}return e}({},Ib,n):Ib,r=new ab(r),e.country&&"001"!==e.country){if(!r.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));r.country(e.country)}else{if(!e.countryCallingCode)return e.phone||"";r.selectNumberingPlan(e.countryCallingCode)}var o,a=r.countryCallingCode(),i=n.v2?e.nationalNumber:e.phone;switch(t){case"NATIONAL":return i?Db(o=Fb(i,e.carrierCode,"NATIONAL",r,n),e.ext,r,n.formatExtension):"";case"INTERNATIONAL":return i?(o=Fb(i,null,"INTERNATIONAL",r,n),Db(o="+".concat(a," ").concat(o),e.ext,r,n.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(i);case"RFC3966":return function(e){var t=e.number,n=e.ext;if(!t)return"";if("+"!==t[0])throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(t).concat(n?";ext="+n:"")}({number:"+".concat(a).concat(i),ext:e.ext});case"IDD":if(!n.fromCountry)return;var s=function(e,t,n,r,o){if(pb(r,o.metadata)===n){var a=Fb(e,t,"NATIONAL",o);return"1"===n?n+" "+a:a}var i=function(e,t,n){var r=new ab(n);return r.selectNumberingPlan(e,void 0),r.defaultIDDPrefix()?r.defaultIDDPrefix():Mb.test(r.IDDPrefix())?r.IDDPrefix():void 0}(r,0,o.metadata);if(i)return"".concat(i," ").concat(n," ").concat(Fb(e,null,"INTERNATIONAL",o))}(i,e.carrierCode,a,n.fromCountry,r);return Db(s,e.ext,r,n.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(t,'"'))}}(this,e,t?function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Lb(e,t,n[t])}))}return e}({},t,{v2:!0}):{v2:!0},this.metadata)}},{key:"formatNational",value:function(e){return this.format("NATIONAL",e)}},{key:"formatInternational",value:function(e){return this.format("INTERNATIONAL",e)}},{key:"getURI",value:function(e){return this.format("RFC3966",e)}}],n&&Gb(t.prototype,n),e}(),qb=function(e){return/^[A-Z]{2}$/.test(e)},zb=new RegExp("([0-90-9٠-٩۰-۹])");function Hb(e,t){var n=function(e,t){if(e&&t.numberingPlan.nationalPrefixForParsing()){var n=new RegExp("^(?:"+t.numberingPlan.nationalPrefixForParsing()+")"),r=n.exec(e);if(r){var o,a,i,s=r.length-1,l=s>0&&r[s];if(t.nationalPrefixTransformRule()&&l)o=e.replace(n,t.nationalPrefixTransformRule()),s>1&&(a=r[1]);else{var c=r[0];o=e.slice(c.length),l&&(a=r[1])}if(l){var u=e.indexOf(r[1]);e.slice(0,u)===t.numberingPlan.nationalPrefix()&&(i=t.numberingPlan.nationalPrefix())}else i=r[0];return{nationalNumber:o,nationalPrefix:i,carrierCode:a}}}return{nationalNumber:e}}(e,t),r=n.nationalNumber,o=n.carrierCode;if(!function(e,t,n){return!(Pb(e,n.nationalNumberPattern())&&!Pb(t,n.nationalNumberPattern()))}(e,r,t))return{nationalNumber:e};if(e.length!==r.length+(o?o.length:0)&&t.possibleLengths())switch(Sb(r,t)){case"TOO_SHORT":case"INVALID_LENGTH":return{nationalNumber:e}}return{nationalNumber:r,carrierCode:o}}var Ub=new RegExp("[++0-90-9٠-٩۰-۹]"),Vb=new RegExp("[^0-90-9٠-٩۰-۹#]+$");function Wb(e,t,n){if(t=t||{},n=new ab(n),t.defaultCountry&&!n.hasCountry(t.defaultCountry)){if(t.v2)throw new Zv("INVALID_COUNTRY");throw new Error("Unknown country: ".concat(t.defaultCountry))}var r=function(e,t,n){if(e&&0===e.indexOf("tel:"))return function(e){var t,n,r,o,a=(e=e.replace(/^tel:/,"tel=")).split(";"),i=Array.isArray(a),s=0;for(a=i?a:a[Symbol.iterator]();;){var l;if(i){if(s>=a.length)break;l=a[s++]}else{if((s=a.next()).done)break;l=s.value}var c=(r=l.split("="),o=2,function(e){if(Array.isArray(e))return e}(r)||function(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(_n=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{_n||null==i.return||i.return()}finally{if(r)throw o}}return n}(r,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()),u=c[0],d=c[1];switch(u){case"tel":t=d;break;case"ext":n=d;break;case"phone-context":"+"===d[0]&&(t=d+t)}}if(!wb(t))return{};var g={number:t};return n&&(g.ext=n),g}(e);var r=function(e,t,n){if(e)if(e.length>250){if(n)throw new Zv("TOO_LONG")}else{if(!1===t)return e;var r=e.search(Ub);if(!(r<0))return e.slice(r).replace(Vb,"")}}(e,n,t);if(!r)return{};if(!wb(r))return function(e){return vb.test(e)}(r)?{error:"TOO_SHORT"}:{};var o=function(e){var t=e.search(Eb);if(t<0)return{};for(var n=e.slice(0,t),r=e.match(Eb),o=1;o<r.length;){if(r[o])return{number:n,ext:r[o]};o++}}(r);return o.ext?o:{number:r}}(e,t.v2,t.extract),o=r.number,a=r.ext,i=r.error;if(!o){if(t.v2){if("TOO_SHORT"===i)throw new Zv("TOO_SHORT");throw new Zv("NOT_A_NUMBER")}return{}}var s=function(e,t,n,r){var o,a=function(e,t,n,r){if(!e)return{};if("+"!==e[0]){var o=function(e,t,n,r){if(t){var o=new ab(r);o.selectNumberingPlan(t,n);var a=new RegExp(o.IDDPrefix());if(0===e.search(a)){var i=(e=e.slice(e.match(a)[0].length)).match(zb);if(!(i&&null!=i[1]&&i[1].length>0&&"0"===i[1]))return e}}}(e,t,n,r);if(!o||o===e){if(t||n){var a=function(e,t,n,r){var o=t?pb(t,r):n;if(0===e.indexOf(o)){(r=new ab(r)).selectNumberingPlan(t,n);var a=e.slice(o.length),i=Hb(a,r).nationalNumber,s=Hb(e,r).nationalNumber;if(!Pb(s,r.nationalNumberPattern())&&Pb(i,r.nationalNumberPattern())||"TOO_LONG"===Sb(s,r))return{countryCallingCode:o,number:a}}return{number:e}}(e,t,n,r),i=a.countryCallingCode,s=a.number;if(i)return{countryCallingCode:i,number:s}}return{number:e}}e="+"+o}if("0"===e[1])return{};r=new ab(r);for(var l=2;l-1<=3&&l<=e.length;){var c=e.slice(1,l);if(r.hasCallingCode(c))return r.selectNumberingPlan(c),{countryCallingCode:c,number:e.slice(l)};l++}return{}}(Cb(e),t,n,r.metadata),i=a.countryCallingCode,s=a.number;if(i)r.selectNumberingPlan(i);else{if(!s||!t&&!n)return{};r.selectNumberingPlan(t,n),t&&(o=t),i=n||pb(t,r.metadata)}if(!s)return{countryCallingCode:i};var l=Hb(Cb(s),r),c=l.nationalNumber,u=l.carrierCode,d=function(e,t,n){var r=n.getCountryCodesForCallingCode(e);if(r)return 1===r.length?r[0]:function(e,t,n){n=new ab(n);var r=e,o=Array.isArray(r),a=0;for(r=o?r:r[Symbol.iterator]();;){var i;if(o){if(a>=r.length)break;i=r[a++]}else{if((a=r.next()).done)break;i=a.value}var s=i;if(n.country(s),n.leadingDigits()){if(t&&0===t.search(n.leadingDigits()))return s}else if(Nb({phone:t,country:s},void 0,n.metadata))return s}}(r,t,n.metadata)}(i,c,r);return d&&(o=d,"001"===d||r.country(o)),{country:o,countryCallingCode:i,nationalNumber:c,carrierCode:u}}(o,t.defaultCountry,t.defaultCallingCode,n),l=s.country,c=s.nationalNumber,u=s.countryCallingCode,d=s.carrierCode;if(!n.hasSelectedNumberingPlan()){if(t.v2)throw new Zv("INVALID_COUNTRY");return{}}if(!c||c.length<2){if(t.v2)throw new Zv("TOO_SHORT");return{}}if(c.length>17){if(t.v2)throw new Zv("TOO_LONG");return{}}if(t.v2){var g=new Bb(u,c,n.metadata);return l&&(g.country=l),d&&(g.carrierCode=d),a&&(g.ext=a),g}var p=!!(t.extended?n.hasSelectedNumberingPlan():l)&&Pb(c,n.nationalNumberPattern());return t.extended?{country:l,countryCallingCode:u,carrierCode:d,valid:p,possible:!!p||!(!0!==t.extended||!n.possibleLengths()||!Ob(c,n)),phone:c,ext:a}:p?function(e,t,n){var r={country:e,phone:t};return n&&(r.ext=n),r}(l,c,a):{}}function Yb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Kb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qb(e,t,n){t&&t.defaultCountry&&!function(e,t){return void 0!==t.countries[e]}(t.defaultCountry,n)&&(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Kb(e,t,n[t])}))}return e}({},t,{defaultCountry:void 0}));try{return function(e,t,n){return Wb(e,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){Yb(e,t,n[t])}))}return e}({},t,{v2:!0}),n)}(e,t,n)}catch(e){if(!(e instanceof Zv))throw e}}function Zb(){var e=Yv(arguments),t=e.text,n=e.options,r=e.metadata;return Qb(t,n,r)}function Xb(){return Uv(Zb,arguments)}const Jb={country:"",countryCallingCode:"",nationalNumber:"",isValid:!1,display:""};function e_(){return(0,dn.useSelect)((e=>{const{getGoogleMCPhoneNumber:t}=e(Lc),{data:n,loaded:r}=t();let o=Jb;if(n){const e=Xb(n.phone_number||"");e&&(o={...e,isValid:e.isValid(),display:e.formatInternational()},delete o.metadata)}return{loaded:r,data:o}}),[])}const t_=Array(6).fill(""),n_=e=>{const t=e.join("");return{code:t,isFilled:6===t.length}};function r_(e){let{onCodeChange:t,resetNeedle:n=""}=e;const r=(0,s.useRef)([]),o=(0,s.useRef)(0),a=(0,s.useRef)(),[i,l]=(0,s.useState)(t_);a.current=t;const c=e=>{const t=r.current[e];t&&t.focus()},u=e=>{const{dataset:t,selectionStart:n,selectionEnd:r,value:o}=e.target,a=Number(t.idx);switch(e.keyCode){case 37:case 8:0===n&&0===r&&c(a-1);break;case 39:1!==n&&o||c(a+1)}},d=e=>{o.current=e.target.selectionStart},g=e=>{const{value:n,dataset:r}=e.target,a=Number(r.idx),s=n.substr(o.current,1).replace(/\D/,"");if(s!==n&&(e.target.value=s),s&&c(a+1),s!==i[a]){const e=[...i];e[a]=s,l(e),t(n_(e))}};return(0,s.useEffect)((()=>{r.current.forEach((e=>e.value="")),l(t_),a.current(n_(t_))}),[n]),(0,s.useEffect)((()=>{i===t_&&c(0)}),[n,i]),(0,s.createElement)(ae,{className:"gla-verification-code-control",justify:"normal",gap:2},i.map(((e,t)=>(0,s.createElement)(Eh,{key:t,ref:e=>r.current[t]=e,"data-idx":t,value:e,onKeyDown:u,onBeforeInput:d,onInput:g,autoComplete:"off"}))))}const o_=Object.freeze({SMS:"SMS",PHONE_CALL:"PHONE_CALL"}),a_={[o_.SMS]:{toInstruction:e=>(0,s.createInterpolateElement)((0,o.__)("A text message with the 6-digit verification code has been sent to <userPhoneNumber />.","google-listings-and-ads"),{userPhoneNumber:(0,s.createElement)("strong",null,e)}),textResend:(0,o.__)("Resend code","google-listings-and-ads"),
18
  // translators: %d: seconds to wait until the next verification code can be requested via SMS.
19
  textResendCooldown:(0,o.__)("Resend code (in %ds)","google-listings-and-ads"),textSwitch:(0,o.__)("Or, receive a verification code through a phone call","google-listings-and-ads")},[o_.PHONE_CALL]:{toInstruction:e=>(0,s.createInterpolateElement)((0,o.__)("You will receive a phone call at <userPhoneNumber /> with an automated message containing the 6-digit verification code.","google-listings-and-ads"),{userPhoneNumber:(0,s.createElement)("strong",null,e)}),textResend:(0,o.__)("Call again","google-listings-and-ads"),
20
  // translators: %d: seconds to wait until the next verification code can be requested via phone call.
21
+ textResendCooldown:(0,o.__)("Call again (in %ds)","google-listings-and-ads"),textSwitch:(0,o.__)("Or, receive a verification code through text message","google-listings-and-ads")}};function i_(e){let{verificationMethod:t,country:n,number:r,display:a,onVerificationStateChange:i}=e;const l=Mv(),[c,u]=(0,s.useState)(t),{second:d,callCount:g,startCountdown:p}=function(e){const t=(0,s.useRef)({}),[n,r]=(0,s.useState)(0);t.current.usingHandle=e,t.current[e]=t.current[e]||{callCount:0};const o=(0,s.useCallback)((n=>{r(n);const o=t.current[e],a=(new Date).getTime()+1e3*n;o.id&&clearInterval(o.id),o.updateSecond=()=>{let n=(a-(new Date).getTime())/1e3;n=Math.max(Math.round(n),0),t.current.usingHandle===e&&r(n),0===n&&clearInterval(o.id)},o.id=setInterval(o.updateSecond,1e3),o.callCount+=1}),[e]);(0,s.useEffect)((()=>{const{updateSecond:n}=t.current[e];n&&n()}),[e]),(0,s.useEffect)((()=>{const e=t.current;return()=>{Object.values(e).forEach((e=>clearInterval(e.id)))}}),[]);const{callCount:a}=t.current[e];return{second:n,callCount:a,startCountdown:o}}(c),[f,m]=(0,s.useState)(null),[h,y]=(0,s.useState)(!1),[v,b]=(0,s.useState)(null),_=(0,s.useRef)({}),{requestPhoneVerificationCode:w,verifyPhoneNumber:E}=Og(),$=c===o_.SMS,C=(0,s.useCallback)((()=>{b(null),p(60),_.current[c]=null,w(n,r,c).then((e=>{let{verificationId:t}=e;_.current[c]=t})).catch((e=>{l()&&(b(e),p(0))}))}),[n,r,c,p,w,l]);(0,s.useEffect)((()=>{0===g&&C()}),[c,g,C]);const{toInstruction:k,textResend:S,textResendCooldown:x,textSwitch:O}=a_[c],P=_.current[c],A=!(null!=f&&f.isFilled&&P);return(0,s.createElement)("form",{onSubmit:e=>{e.preventDefault(),b(null),y(!0),i(!0,!1);const t=_.current[c];E(t,f.code,c).then((()=>{i(!1,!0)})).catch((e=>{l()&&(b(e),y(!1),i(!1,!1))}))}},(0,s.createElement)(gp.Card.Body,null,v&&(0,s.createElement)(cp,null,(0,s.createElement)(Fc,{status:"error",isDismissible:!1},v.display)),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Enter verification code","google-listings-and-ads")),k(a)),(0,s.createElement)(cp,null,(0,s.createElement)(r_,{resetNeedle:c+g,onCodeChange:m})),(0,s.createElement)(cp,null,(0,s.createElement)(ae,{justify:"normal",gap:4},(0,s.createElement)(gc,{isSecondary:!0,disabled:A,loading:h,text:(0,o.__)("Verify phone number","google-listings-and-ads"),type:"submit"}),(0,s.createElement)(gc,{isSecondary:!0,disabled:d>0||h,text:d?(0,o.sprintf)(x,d):S,onClick:C})))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:h,text:O,onClick:()=>{u($?o_.PHONE_CALL:o_.SMS)}})))}function s_(e){return new ab(e).getCountries()}var l_=e=>{const{label:t,helperText:n,className:r,...o}=e;return(0,s.createElement)("div",{className:d()("wcdl-select-control",r)},t&&(0,s.createElement)("div",{className:"wcdl-select-control__label"},t),(0,s.createElement)("div",{className:"wcdl-select-control__input"},(0,s.createElement)(Bl.SelectControl,l({},o,{help:""}))),n&&(0,s.createElement)("div",{className:"wcdl-select-control__helper-text"},n))};const c_=[{label:(0,o.__)("Text message","google-listings-and-ads"),value:o_.SMS},{label:(0,o.__)("Phone call","google-listings-and-ads"),value:o_.PHONE_CALL}];function u_(e){let{initCountry:t,initNationalNumber:n,onSendVerificationCodeClick:r}=e;const a=function(){const e=Xy();return(0,s.useMemo)((()=>function(){return Uv(s_,arguments)}().reduce(((t,n)=>{const r=e[n];if(r){const e=function(){return Uv(pb,arguments)}(n);t.push(((e,t,n)=>({key:e,keywords:[n,t,e],label:`${n} (+${t})`}))(n,e,r))}return t}),[])),[e])}(),[i,l]=(0,s.useState)(t),[c,u]=(0,s.useState)(n),[d,g]=(0,s.useState)(o_.SMS),[p,f]=(0,s.useState)(null);return(0,s.useEffect)((()=>{const e=Xb(c,i),t=!!e&&e.isValid();f(e?{...e,isValid:t,display:e.formatInternational(),verificationMethod:d}:{isValid:t,country:i,number:"",display:"",verificationMethod:d})}),[c,i,d]),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(ae,{gap:4},(0,s.createElement)(ze,null,(0,s.createElement)(l_,{label:(0,o.__)("Country code","google-listings-and-ads"),isSearchable:!0,excludeSelectedOptions:!1,options:a,selected:i,onChange:l})),(0,s.createElement)(Li,null,(0,s.createElement)(Eh,{label:(0,o.__)("Phone number","google-listings-and-ads"),value:c,onChange:u}))),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select verification method","google-listings-and-ads")),(0,s.createElement)(hy,{selected:d,options:c_,onChange:g})),(0,s.createElement)(cp,null,(0,s.createElement)(gc,{isSecondary:!0,disabled:!(null!=p&&p.isValid),text:(0,o.__)("Send verification code","google-listings-and-ads"),onClick:()=>r(p)})))}const d_=()=>{},g_={className:"gla-phone-number-card",appearance:Ep.PHONE};function p_(e){let{phoneNumber:t,onPhoneNumberVerified:n}=e;const{loaded:r,data:a}=t,[i,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(null);let g=(0,s.createElement)(Wg,null);r&&(g=u?(0,s.createElement)(i_,l({},u,{onVerificationStateChange:(e,t)=>{c(e),t&&n()}})):(0,s.createElement)(u_,{initCountry:a.country,initNationalNumber:a.nationalNumber,onSendVerificationCodeClick:d}));const p=u?u.display:(0,o.__)("Please enter a phone number to be used for verification.","google-listings-and-ads"),f=u?(0,s.createElement)(gc,{isSecondary:!0,text:(0,o.__)("Edit","google-listings-and-ads"),disabled:i,onClick:()=>d(null)}):null;return(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}),(0,s.createElement)(ef,null),g)}var f_=e=>{let{view:t,phoneNumber:n,initEditing:r=null,onEditClick:a,onPhoneNumberVerified:i=d_}=e;const{loaded:c,data:u}=n,[d,g]=(0,s.useState)(r);if((0,s.useEffect)((()=>{c&&null===d&&g(!u.isValid)}),[c,u.isValid,d]),null===d)return(0,s.createElement)(xp,l({},g_,{indicator:(0,s.createElement)(Bl.Spinner,null)}));if(d){const e=()=>{g(!1),i()};return(0,s.createElement)(p_,{phoneNumber:n,onPhoneNumberVerified:e})}let p=null,f=(0,s.createElement)(Bl.Spinner,null);return c&&(p=u.display,f=(0,s.createElement)(gc,{isSecondary:!0,eventName:"gla_mc_phone_number_edit_button_click",eventProps:{view:t},onClick:()=>{a?a():g(!0)}},(0,o.__)("Edit","google-listings-and-ads"))),(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}))},m_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8zm1.13 9.38l.35-6.46H8.52l.35 6.46h2.26zm-.09 3.36c.24-.23.37-.55.37-.96 0-.42-.12-.74-.36-.97s-.59-.35-1.06-.35-.82.12-1.07.35-.37.55-.37.97c0 .41.13.73.38.96.26.23.61.34 1.06.34s.8-.11 1.05-.34z"}));function h_(e){let{editHref:t,editEventName:n,loading:r,content:a,appearance:i,warning:l}=e;const{subpath:c}=(0,pc.getQuery)(),u=(0,s.createElement)(gc,{isSecondary:!0,href:t,text:(0,o.__)("Edit","google-listings-and-ads"),eventName:n,eventProps:{path:(0,pc.getPath)(),subpath:c}});let d,g;return r?d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__placeholder","aria-busy":"true",title:(0,o.__)("Loading…","google-listings-and-ads")}):l?(g=(0,s.createElement)(s.Fragment,null,(0,s.createElement)(vp,{icon:m_,size:24,className:"gla-contact-info-preview-card__notice-icon"}),l),d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__notice-details"},a)):d=a,(0,s.createElement)(xp,{appearance:i,className:"gla-contact-info-preview-card",icon:null,title:g,description:d,indicator:u})}function y_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=e_();let i,l;return r&&(a.isValid?i=a.display:(l=(0,o.__)("Please add your phone number","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the phone number for all stores using Google Merchant Center. ","google-listings-and-ads"),n))),(0,s.createElement)(h_,{appearance:Ep.PHONE,editHref:t,editEventName:"gla_edit_mc_phone_number",learnMore:n,loading:!r,warning:l,content:i})}var v_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10.2 3.28c3.53 0 6.43 2.61 6.92 6h2.08l-3.5 4-3.5-4h2.32c-.45-1.97-2.21-3.45-4.32-3.45-1.45 0-2.73.71-3.54 1.78L4.95 5.66C6.23 4.2 8.11 3.28 10.2 3.28zm-.4 13.44c-3.52 0-6.43-2.61-6.92-6H.8l3.5-4c1.17 1.33 2.33 2.67 3.5 4H5.48c.45 1.97 2.21 3.45 4.32 3.45 1.45 0 2.73-.71 3.54-1.78l1.71 1.95c-1.28 1.46-3.15 2.38-5.25 2.38z"})),b_=()=>{const{loaded:e,data:t,refetch:n}=zv(),{subpath:r}=(0,pc.getQuery)(),a=(0,s.createElement)(gc,{isSecondary:!0,icon:v_,iconSize:20,iconPosition:"right",text:(0,o.__)("Refresh to sync","google-listings-and-ads"),onClick:n,disabled:!e});let i;const l=(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Edit your store address in your <link>WooCommerce settings</link>.","google-listings-and-ads"),{link:(0,s.createElement)(ql,{target:"_blank",type:"external",href:"admin.php?page=wc-settings",eventName:"gla_edit_wc_store_address",eventProps:{path:(0,pc.getPath)(),subpath:r}})})),(0,s.createElement)("p",null,(0,o.__)("Once you’ve saved your new address there, refresh to sync your new address with Google.","google-listings-and-ads")));if(e){const{address:e,address2:n,city:r,state:o,country:a,postcode:l}=t,c=[r,o?`${o} - ${a}`:a,l].filter(Boolean).join(", ");i=(0,s.createElement)("div",null,(0,s.createElement)("div",null,e),n&&(0,s.createElement)("div",null,n),(0,s.createElement)("div",null,c))}else i=(0,s.createElement)(Bl.Spinner,null);return(0,s.createElement)(xp,{className:"gla-store-address-card",appearance:Ep.ADDRESS,alignIcon:"top",alignIndicator:"top",description:l,indicator:a},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Store address","google-listings-and-ads")),i))};function w_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=zv("mc");let i,l;if(r){const{isAddressFilled:e,isMCAddressDifferent:t,address:r,address2:c,city:u,state:d,country:g,postcode:p}=a,f=d?`${d} - ${g}`:g;e&&!t?i=[r,c,u,f,p].filter(Boolean).join(", "):(l=(0,o.__)("Please add your store address","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the store address for all stores using Google Merchant Center. ","google-listings-and-ads"),n))}return(0,s.createElement)(h_,{appearance:Ep.ADDRESS,editHref:t,editEventName:"gla_edit_mc_store_address",loading:!r,warning:l,content:i})}var E_=e=>{let{loaded:t,data:{display:n,isValid:r}}=e;const o=!!n,a=(0,pc.getPath)();(0,s.useEffect)((()=>{t&&(0,Dl.recordEvent)("gla_mc_phone_number_check",{path:a,exist:o,isValid:r})}),[o,r,t,a])};const $_="contact-information-read-more",C_="https://docs.woocommerce.com/document/google-listings-and-ads/#contact-information",k_=(0,o.__)("Your contact information is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers.","google-listings-and-ads"),S_=(0,o.__)("Enter contact information","google-listings-and-ads"),x_=(0,o.__)("Contact information","google-listings-and-ads");function O_(){return(0,s.createElement)(gp,{title:x_,description:k_},(0,s.createElement)(fp,{size:"overlap"},(0,s.createElement)(y_,{editHref:(0,pc.getNewPath)({subpath:bc},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-phone-number-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))}),(0,s.createElement)(w_,{editHref:(0,pc.getNewPath)({subpath:_c},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-store-address-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))})))}var P_=e=>{let{onPhoneNumberVerified:t}=e;const n=e_(),r=S_;return E_(n),(0,s.createElement)(gp,{title:r,description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,k_),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-contact-information",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))))},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(f_,{view:"setup-mc",phoneNumber:n,initEditing:!0,onPhoneNumberVerified:t}),(0,s.createElement)(b_,null)))},A_=e=>{let{id:t,children:n}=e;const[r,o]=(0,s.useState)(!1);return(0,s.createElement)("span",{className:"help-popover"},(0,s.createElement)("button",{onClick:()=>{o(!0),(0,Dl.recordEvent)("gla_tooltip_viewed",{id:t})}},(0,s.createElement)(zg.Z,{size:16})),r&&(0,s.createElement)(cl,{focusOnMount:"container",onClose:()=>{o(!1)}},n))},N_=e=>{const{formProps:t}=e,{getInputProps:n}=t;return(0,s.createElement)("div",{className:"gla-pre-launch-checklist"},(0,s.createElement)(gp,{title:(0,o.__)("Pre-Launch Checklist","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Ensure you meet Google Merchant Center requirements by reviewing this checklist. Otherwise, your products may be disapproved or your Google Merchant Center account may be suspended by Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"checklist-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy"},(0,o.__)("Read Google Merchant requirements","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(fp,{size:"large"},(0,s.createElement)("div",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store website is live.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"website_live"},(0,s.createInterpolateElement)((0,o.__)("Ensure your store website and products are online and accessible to your customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-website-is-live",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#store-is-live"})})))},n("website_live")))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("I have a complete and secure checkout process.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"checkout_process_secure"},(0,s.createElement)("p",null,(0,o.__)("Ensure customers are able to successfully add items to the cart and fully complete the checkout process.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Payment and transaction processing, as well as collection of any sensitive and financial personal information from the user, must be conducted over a secure processing server (SSL-protected, with a valid SSL certificate - https://). <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-checkout-process",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#complete-checkout"})}))))},n("checkout_process_secure"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My payment methods are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"payment_methods_visible"},(0,s.createInterpolateElement)((0,o.__)("Ensure customers have at least one valid payment method, such as credit card, direct bank transfer, or cash on delivery. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-payment-methods",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#payment-methods"})})))},n("payment_methods_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My refund policy and terms of service are visible on my online store.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"refund_tos_visible"},(0,s.createInterpolateElement)((0,o.__)("Your site must provide a clear and conspicuous return policy and billing terms to customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-refund-policy",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#refund-and-terms"})})))},n("refund_tos_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store’s phone number, email and/or address are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"contact_info_visible"},(0,s.createInterpolateElement)((0,o.__)("Your website must display sufficient and accurate contact information to your customers, including a telephone number and/or email. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-phone-numbers",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#contact-info"})})))},n("contact_info_visible"))))))))};function R_(e){const t={};return!0!==e.website_live&&(t.website_live=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.checkout_process_secure&&(t.checkout_process_secure=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.payment_methods_visible&&(t.payment_methods_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.refund_tos_visible&&(t.refund_tos_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.contact_info_visible&&(t.contact_info_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),t}function T_(){const e=Bv(),{updateGoogleMCContactInformation:t,saveSettings:n}=Og(),{createNotice:r}=Np(),{data:a}=zv(),{settings:i}=cy(),[l,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(!0),[g,p]=(0,s.useState)(!1);return i?(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Confirm store requirements","google-listings-and-ads"),description:(0,o.__)("Review and confirm that your store meets Google Merchant Center requirements.","google-listings-and-ads")}),(0,s.createElement)(Bl.Form,{initialValues:{website_live:i.website_live,checkout_process_secure:i.checkout_process_secure,payment_methods_visible:i.payment_methods_visible,refund_tos_visible:i.refund_tos_visible,contact_info_visible:i.contact_info_visible},validate:R_,onChange:async(e,t)=>{try{await n(t),d(!0)}catch(e){u&&r("error",(0,o.__)("There was an error trying to save settings. Please try again later.","google-listings-and-ads")),d(!1)}},onSubmit:async()=>{try{p(!0),await t(),await Uc()({path:"/wc/gla/mc/settings/sync",method:"POST"});const n=(0,pc.getNewPath)({guide:"submission-success"},"/google/product-feed");window.location.href=e+n}catch(e){p(!1),r("error",(0,o.__)("Unable to complete your setup. Please try again later.","google-listings-and-ads"))}}},(e=>{const{handleSubmit:t,isValidForm:n}=e,r=n&&l&&a.isAddressFilled&&u;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(P_,{onPhoneNumberVerified:()=>c(!0)}),(0,s.createElement)(N_,{formProps:e}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,loading:g,disabled:!r,onClick:t},(0,o.__)("Complete setup","google-listings-and-ads"))))}))):(0,s.createElement)(Wg,null)}var M_={accounts:"1",target_audience:"2",shipping_and_taxes:"3",store_requirements:"4"},j_=e=>{let{savedStep:t,onRefetchSavedStep:n=(()=>{})}=e;const[r,a]=(0,s.useState)(t),i=e=>{Number(e)<=Number(t)&&a(e)};return(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:r,steps:[{key:M_.accounts,label:(0,o.__)("Set up your accounts","google-listings-and-ads"),content:(0,s.createElement)(iy,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step1_continue",trigger:"click"}),a(M_.target_audience),n()}}),onClick:i},{key:M_.target_audience,label:(0,o.__)("Choose your audience","google-listings-and-ads"),content:(0,s.createElement)(Gv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step2_continue",trigger:"click"}),a(M_.shipping_and_taxes),n()}}),onClick:i},{key:M_.shipping_and_taxes,label:(0,o.__)("Configure your product listings","google-listings-and-ads"),content:(0,s.createElement)(Dv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step3_continue",trigger:"click"}),a(M_.store_requirements),n()}}),onClick:i},{key:M_.store_requirements,label:(0,o.__)("Confirm store requirements","google-listings-and-ads"),content:(0,s.createElement)(T_,null),onClick:i}]})},I_=()=>{const{hasFinishedResolution:e,data:t,invalidateResolution:n}=Ag("getMCSetup");if(!e&&!t)return(0,s.createElement)(Wg,null);if(e&&!t)return null;const{status:r,step:o}=t;return"complete"===r?((0,pc.getHistory)().replace((0,pc.getNewPath)({},"/google/dashboard")),null):(0,s.createElement)(j_,{savedStep:M_[o],onRefetchSavedStep:()=>{n()}})},F_=()=>(Gg("full-page"),(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Vg,null),(0,s.createElement)(I_,null)));function D_(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:()=>!0;(0,s.useEffect)((()=>{const r=t=>{t.preventDefault(),t.returnValue=e};t&&window.addEventListener("beforeunload",r);const o=(0,pc.getHistory)().block((r=>{let a=!0;const i=(null==r?void 0:r.location)||r;if(t&&n(i)&&(a=window.confirm(e)),a){if(o(),void 0===(null==r?void 0:r.retry))return!0;r.retry()}return!1}));return()=>{o(),window.removeEventListener("beforeunload",r)}}),[e,t,n])}const L_="getGoogleAdsAccount";var G_=()=>{const{google:e,isResolving:t}=Jg(),n=Og(),r=(0,s.useCallback)((()=>{n.invalidateResolution(L_,[])}),[n]);return(0,dn.useSelect)((n=>{if(!e||"no"===e.active)return{googleAdsAccount:void 0,isResolving:t};const o=n(Lc);return{googleAdsAccount:o.getGoogleAdsAccount(),isResolving:o.isResolving(L_),refetchGoogleAdsAccount:r,hasFinishedResolution:o.hasFinishedResolution(L_)}}),[e,t,r])};function B_(e){
22
  // translators: %s: user's account ID
23
  return(0,o.sprintf)((0,o.__)("Account %s","google-listings-and-ads"),e)}function q_(e){let{googleAdsAccount:t,...n}=e;return(0,s.createElement)(xp,l({appearance:Ep.GOOGLE_ADS,description:B_(t.id),indicator:(0,s.createElement)(Pp,null)},n))}var z_=e=>{let{onCreateAccount:t=(()=>{}),onRequestClose:n=(()=>{})}=e;const[r,a]=(0,s.useState)(!1);return(0,s.createElement)(Bh,{className:"gla-ads-terms-modal",title:(0,o.__)("Create Google Ads Account","google-listings-and-ads"),buttons:[(0,s.createElement)(gc,{key:"1",isPrimary:!0,disabled:!r,eventName:"gla_ads_account_create_button_click",onClick:()=>{t(),n()}},(0,o.__)("Create account","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",{className:"main"},(0,o.__)("By creating a Google Ads account, you agree to the following terms and conditions:","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("You agree to comply with Google’s terms and policies, including <policylink>Shopping ads policies</policylink> and <termslink>Google Ads Terms and Conditions</termslink>.","google-listings-and-ads"),{policylink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"shopping-ads-policies",href:"https://support.google.com/merchants/answer/6149970"}),termslink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"google-ads-terms-of-service",href:"https://support.google.com/adspolicy/answer/54818"})})),(0,s.createElement)(Vh,{label:(0,o.__)("I have read and accept these terms","google-listings-and-ads"),checked:r,onChange:a}))};function H_(e){let{text:t}=e;return(0,s.createElement)("div",{className:"gla-loading-label"},(0,s.createElement)(Bl.Spinner,null),t)}var U_=e=>{const{onCreateAccount:t,...n}=e,[r,a]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,n.loading?(0,s.createElement)(H_,{text:(0,o.__)("Creating…","google-listings-and-ads")}):(0,s.createElement)(gc,l({isSecondary:!0},n,{text:(0,o.__)("Create account","google-listings-and-ads"),onClick:()=>{a(!0)}})),r&&(0,s.createElement)(z_,{onCreateAccount:t,onRequestClose:()=>{a(!1)}}))};const V_=()=>{const{createNotice:e}=Np(),{fetchGoogleAdsAccount:t}=Og(),[n,r]=(0,s.useState)(!1),[a,{loading:i}]=Lp({path:"/wc/gla/ads/accounts",method:"POST"});return(0,s.createElement)(U_,{loading:i||n,onCreateAccount:async()=>{try{await a({parse:!1})}catch(t){if(428!==t.status)return void e("error",(0,o.__)("Unable to create Google Ads account. Please try again later.","google-listings-and-ads"))}r(!0),await t(),r(!1)}})};var W_=e=>{const{allowShowExisting:t,onShowExisting:n}=e;return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(V_,null)},t&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, use your existing Google Ads account","google-listings-and-ads"))))},Y_=e=>{const{accounts:t,...n}=e,r=[{value:"",label:(0,o.__)("Select one","google-listings-and-ads")},...t.map((e=>({value:e.id,label:(0,o.sprintf)(// translators: 1: account name, 2: account ID.
24
  (0,o.__)("%1$s (%2$s)","google-listings-and-ads"),e.name,e.id)})))];return(0,s.createElement)(Kf,l({options:r},n))},K_=e=>{const{accounts:t,onCreateNew:n=(()=>{})}=e,[r,a]=(0,s.useState)(),[i,l]=(0,s.useState)(!1),[c]=Lp({path:"/wc/gla/ads/accounts",method:"POST",data:{id:r}}),{refetchGoogleAdsAccount:u}=G_(),{createNotice:d}=Np(),g=t.length>1;return(0,s.createElement)(xp,{className:"gla-connect-ads",appearance:Ep.GOOGLE_ADS},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select an existing account","google-listings-and-ads")),g&&(0,s.createElement)(cp.Body,null,(0,s.createInterpolateElement)((0,o.__)("If you manage multiple sub-accounts in Google Ads, please connect the relevant sub-account, not a manager account. <link>Learn more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-ads-connect-account",linkId:"connect-sub-account",href:"https://support.google.com/google-ads/answer/6139186"})})),(0,s.createElement)(Zf,null,(0,s.createElement)(Y_,{accounts:t,value:r,onChange:a}),i?(0,s.createElement)(H_,{text:(0,o.__)("Connecting…","google-listings-and-ads")}):(0,s.createElement)(gc,{isSecondary:!0,disabled:!r,eventName:"gla_ads_account_connect_button_click",onClick:async()=>{if(r){l(!0);try{await c(),await u()}catch(e){l(!1),d("error",(0,o.__)("Unable to connect your Google Ads account. Please try again later.","google-listings-and-ads"))}}}},(0,o.__)("Connect","google-listings-and-ads")))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, create a new Google Ads account","google-listings-and-ads"))))},Q_=()=>{const{existingAccounts:e}=(0,dn.useSelect)((e=>({existingAccounts:e(Lc).getExistingGoogleAdsAccounts(),isResolving:e(Lc).isResolving("getExistingGoogleAdsAccounts")})),[]),[t,n]=(0,s.useState)(!1);if(!e)return(0,s.createElement)(Qp,null);return 0===e.length||t?(0,s.createElement)(W_,{allowShowExisting:t,onShowExisting:()=>{n(!1)}}):(0,s.createElement)(K_,{accounts:e,onCreateNew:()=>{n(!0)}})};const Z_="setup-ads";var X_=e=>{let{additionalScopeEmail:t}=e;const{createNotice:n}=Np(),[r,{loading:a,data:i}]=zp(Z_,t);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(gc,{isSecondary:!0,loading:a||i,onClick:()=>{r().then((e=>{let{url:t}=e;window.location.href=t})).catch((()=>{n("error",(0,o.__)("Unable to get Google authorization page. Please try again later.","google-listings-and-ads"))}))},text:(0,o.__)("Allow full access","google-listings-and-ads"),eventName:"gla_google_account_connect_button_click",eventProps:{context:Z_,action:"scope"}})})};function J_(){const{google:e,scope:t}=Jg(),{googleAdsAccount:n}=G_();return e&&n?t.adsRequired?"disconnected"===n.status?(0,s.createElement)(Q_,null):(0,s.createElement)(q_,{googleAdsAccount:n}):(0,s.createElement)(X_,{additionalScopeEmail:e.email}):(0,s.createElement)(Qp,null)}var ew=__webpack_require__(3119),tw=[["DZ",250,"USD"],["AR",25e3,"ARS"],["AM",300,"USD"],["AU",600,"AUD"],["AT",400,"EUR"],["AZ",300,"USD"],["BH",300,"USD"],["BY",300,"USD"],["BE",400,"EUR"],["BO",350,"USD"],["BA",350,"EUR"],["BR",1200,"BRL"],["BG",700,"BGN"],["CA",600,"CAD"],["CL",350,"USD"],["CN",3e3,"CNY"],["CO",350,"USD"],["CR",350,"USD"],["HR",2500,"HRK"],["CY",350,"EUR"],["CZ",8500,"CZK"],["DK",3e3,"DKK"],["DO",350,"USD"],["EC",350,"USD"],["EG",3e3,"EGP"],["SV",350,"USD"],["EE",350,"EUR"],["FI",400,"EUR"],["FR",400,"EUR"],["GE",300,"USD"],["DE",400,"EUR"],["GR",350,"EUR"],["GT",350,"USD"],["HN",350,"USD"],["HK",3e3,"HKD"],["HU",12e4,"HUF"],["IS",400,"EUR"],["IN",2e4,"INR"],["ID",3e6,"IDR"],["IE",400,"EUR"],["IL",1500,"ILS"],["IT",400,"EUR"],["JP",6e4,"JPY"],["JO",250,"USD"],["KZ",300,"USD"],["KE",300,"USD"],["KR",6e5,"KRW"],["KW",300,"USD"],["LV",350,"EUR"],["LB",250,"USD"],["LY",250,"USD"],["LT",350,"EUR"],["LU",400,"EUR"],["MK",300,"USD"],["MY",1500,"MYR"],["MT",350,"EUR"],["MX",7e3,"MXN"],["ME",350,"EUR"],["MA",250,"USD"],["NL",400,"EUR"],["NZ",600,"NZD"],["NI",350,"USD"],["NG",300,"USD"],["NO",4e3,"NOK"],["OM",250,"USD"],["PK",400,"USD"],["PS",250,"USD"],["PA",350,"USD"],["PY",350,"USD"],["PE",350,"USD"],["PH",2e4,"PHP"],["PL",1200,"PLN"],["PT",400,"EUR"],["PR",350,"USD"],["QA",300,"USD"],["RO",1500,"RON"],["RU",3e4,"RUB"],["SA",1300,"SAR"],["RS",350,"EUR"],["SG",600,"SGD"],["SK",350,"EUR"],["SI",350,"EUR"],["ZA",6e3,"ZAR"],["ES",400,"EUR"],["LK",400,"USD"],["SE",4e3,"SEK"],["CH",400,"CHF"],["TW",12e3,"TWD"],["TH",12e3,"THB"],["TN",250,"USD"],["TR",2500,"TRY"],["UA",1e4,"UAH"],["AE",1600,"AED"],["GB",400,"GBP"],["US",500,"USD"],["UY",350,"USD"],["VE",350,"USD"],["VN",56e5,"VND"]],nw=e=>{const t=Xy();return(0,s.createElement)(Bh,l({className:"gla-free-ad-credit-country-modal",title:(0,o.__)("Check your maximum free credit","google-listings-and-ads")},e),(0,s.createElement)("p",null,(0,o.__)("Whatever you spend in the next month will be added back to your Google Ads account as free credit, up to a maximum limit depending on your store’s country.","google-listings-and-ads")),(0,s.createElement)("table",null,(0,s.createElement)("tbody",null,tw.map(((e,n)=>{const[r,o,a]=e;return(0,s.createElement)("tr",{key:n},(0,s.createElement)("td",null,t[r]),(0,s.createElement)("td",null,`${o} ${a}`))})))))},rw=()=>{const[e,t]=(0,s.useState)(!1);return(0,s.createElement)("div",{className:"gla-free-ad-credit"},(0,s.createElement)(ew.Z,null),(0,s.createElement)("div",null,(0,s.createElement)("div",{className:"gla-free-ad-credit__title"},(0,o.__)("Spend $500 to get $500 in Google Ads credits!","google-listings-and-ads")),(0,s.createElement)("div",{className:"gla-free-ad-credit__description"},(0,s.createInterpolateElement)((0,o.__)("New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days. Check how much credit you can receive in your country <checkLink>here</checkLink>. <termLink>Terms and conditions apply</termLink>.","google-listings-and-ads"),{checkLink:(0,s.createElement)(ql,{eventName:"gla_free_ad_credit_country_click",eventProps:{context:"setup-ads"},href:"#",type:"wp-admin",onClick:()=>{t(!0)}}),termLink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"free-ad-credit-terms",href:"https://www.google.com/ads/coupons/terms/"})})),e&&(0,s.createElement)(nw,{onRequestClose:()=>{t(!1)}})))},ow=e=>{const{onContinue:t=(()=>{})}=e,{google:n}=Jg(),{googleAdsAccount:r}=G_(),a=(()=>{const{googleAdsAccount:e}=G_();return e&&e.sub_account&&(0,Ed.getDateDifferenceInDays)(new Date,new Date(1e3*e.created_timestamp))<60})();if(!n||"yes"===n.active&&!r)return(0,s.createElement)(Wg,null);const i=!r.id;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Set up your accounts","google-listings-and-ads"),description:(0,o.__)("Connect your Google account and your Google Ads account to set up a paid Performance Max campaign.","google-listings-and-ads")}),(0,s.createElement)(gp,{title:(0,o.__)("Connect accounts","google-listings-and-ads"),description:(0,o.__)("Any campaigns created through this app will appear in your Google Ads account. You will be billed directly through Google.","google-listings-and-ads")},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(Vp,{googleAccount:n,hideAccountSwitch:!0,helper:(0,o.__)("This Google account is connected to your store’s product feed.","google-listings-and-ads")}),(0,s.createElement)(J_,null),a&&(0,s.createElement)(rw,null))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:i,onClick:t},(0,o.__)("Continue","google-listings-and-ads"))))};function aw(e,t){return e.map((e=>({label:t[e],value:e})))}var iw=e=>{const{formProps:{getInputProps:t},multiple:n=!0,disabled:r=!1,countrySelectHelperText:a}=e,i=Xy(),l=t("countryCodes"),c=n?(0,s.createElement)(yv,{label:(0,o.__)("Select countries","google-listings-and-ads"),help:a,disabled:r,value:l.value,additionalCountryCodes:r?l.value:void 0,onChange:l.onChange}):(0,s.createElement)(Yf,{label:(0,o.__)("Select one country","google-listings-and-ads"),help:a,disabled:r,options:aw(l.value,i),value:l.selected[0],onChange:l.onChange,role:"combobox"});return(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Choose where do you want your product ads to appear.","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,c)))},sw=__webpack_require__(7132),lw=e=>{const{countryCodes:t,dailyAverageCost:n=1/0}=e,{data:r}=(e=>{const t={country_codes:e},n=(0,tg.addQueryArgs)("/wc/gla/ads/campaigns/budget-recommendation",t);return Iv({path:n})})(t),a=Xy();if(!r)return null;const{currency:i,recommendations:l}=r,{daily_budget_low:c,daily_budget_high:u,country:d}=function(e){return e.reduce(((e,t)=>t.daily_budget_high>e.daily_budget_high?t:e))}(l),g=a[d],p=function(e){const t={strong:(0,s.createElement)("strong",null)},n=e?// translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount.
languages/google-listings-and-ads.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Google Listings and Ads plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Google Listings and Ads 2.0.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-listings-and-ads\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-07-12T12:25:06+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-listings-and-ads\n"
@@ -234,43 +234,43 @@ msgid "Merchant link is not available to accept"
234
  msgstr ""
235
 
236
  #. translators: %s Error message
237
- #: src/API/Google/AdsCampaign.php:123
238
  msgid "Error retrieving campaigns: %s"
239
  msgstr ""
240
 
241
  #. translators: %s Error message
242
- #: src/API/Google/AdsCampaign.php:166
243
  msgid "Error retrieving campaign: %s"
244
  msgstr ""
245
 
246
  #. translators: %s Error message
247
- #: src/API/Google/AdsCampaign.php:225
248
  msgid "Error creating campaign: %s"
249
  msgstr ""
250
 
251
- #: src/API/Google/AdsCampaign.php:228
252
  msgid "A campaign with this name already exists"
253
  msgstr ""
254
 
255
  #. translators: %s Error message
256
- #: src/API/Google/AdsCampaign.php:281
257
  msgid "Error editing campaign: %s"
258
  msgstr ""
259
 
260
  #. translators: %s Error message
261
- #: src/API/Google/AdsCampaign.php:314
262
  msgid "Error deleting campaign: %s"
263
  msgstr ""
264
 
265
- #: src/API/Google/AdsCampaign.php:317
266
  msgid "This campaign has already been deleted"
267
  msgstr ""
268
 
269
- #: src/API/Google/AdsCampaign.php:517
270
  msgid "Invalid campaign ID"
271
  msgstr ""
272
 
273
- #: src/API/Google/AdsCampaign.php:534
274
  msgid "Invalid geo target location ID"
275
  msgstr ""
276
 
@@ -284,21 +284,21 @@ msgid "Invalid campaign budget ID"
284
  msgstr ""
285
 
286
  #. translators: %1 is a random 4-digit string
287
- #: src/API/Google/AdsConversionAction.php:67
288
  msgid "[%1$s] Google Listings and Ads purchase action"
289
  msgstr ""
290
 
291
- #: src/API/Google/AdsConversionAction.php:102
292
  msgid "A conversion action with this name already exists"
293
  msgstr ""
294
 
295
  #. translators: %s Error message
296
- #: src/API/Google/AdsConversionAction.php:111
297
  msgid "Error creating conversion action: %s"
298
  msgstr ""
299
 
300
  #. translators: %s Error message
301
- #: src/API/Google/AdsConversionAction.php:148
302
  msgid "Error retrieving conversion action: %s"
303
  msgstr ""
304
 
@@ -1780,10 +1780,6 @@ msgstr ""
1780
  msgid "There was an error loading merchant center settings."
1781
  msgstr ""
1782
 
1783
- #: js/build/index.js:2
1784
- msgid "There was an error trying to save settings. Please try again later."
1785
- msgstr ""
1786
-
1787
  #: js/build/index.js:2
1788
  msgid "There was an error loading Jetpack account info."
1789
  msgstr ""
@@ -2516,6 +2512,11 @@ msgstr ""
2516
  msgid "Estimated shipping times"
2517
  msgstr ""
2518
 
 
 
 
 
 
2519
  #: js/build/index.js:17
2520
  msgid "Unable to use your WooCommerce shipping settings as shipping rates in Google. You may have to enter shipping rates manually."
2521
  msgstr ""
2
  # This file is distributed under the same license as the Google Listings and Ads plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Google Listings and Ads 2.0.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-listings-and-ads\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-07-29T15:02:27-04:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-listings-and-ads\n"
234
  msgstr ""
235
 
236
  #. translators: %s Error message
237
+ #: src/API/Google/AdsCampaign.php:122
238
  msgid "Error retrieving campaigns: %s"
239
  msgstr ""
240
 
241
  #. translators: %s Error message
242
+ #: src/API/Google/AdsCampaign.php:165
243
  msgid "Error retrieving campaign: %s"
244
  msgstr ""
245
 
246
  #. translators: %s Error message
247
+ #: src/API/Google/AdsCampaign.php:224
248
  msgid "Error creating campaign: %s"
249
  msgstr ""
250
 
251
+ #: src/API/Google/AdsCampaign.php:227
252
  msgid "A campaign with this name already exists"
253
  msgstr ""
254
 
255
  #. translators: %s Error message
256
+ #: src/API/Google/AdsCampaign.php:280
257
  msgid "Error editing campaign: %s"
258
  msgstr ""
259
 
260
  #. translators: %s Error message
261
+ #: src/API/Google/AdsCampaign.php:313
262
  msgid "Error deleting campaign: %s"
263
  msgstr ""
264
 
265
+ #: src/API/Google/AdsCampaign.php:316
266
  msgid "This campaign has already been deleted"
267
  msgstr ""
268
 
269
+ #: src/API/Google/AdsCampaign.php:516
270
  msgid "Invalid campaign ID"
271
  msgstr ""
272
 
273
+ #: src/API/Google/AdsCampaign.php:532
274
  msgid "Invalid geo target location ID"
275
  msgstr ""
276
 
284
  msgstr ""
285
 
286
  #. translators: %1 is a random 4-digit string
287
+ #: src/API/Google/AdsConversionAction.php:69
288
  msgid "[%1$s] Google Listings and Ads purchase action"
289
  msgstr ""
290
 
291
+ #: src/API/Google/AdsConversionAction.php:104
292
  msgid "A conversion action with this name already exists"
293
  msgstr ""
294
 
295
  #. translators: %s Error message
296
+ #: src/API/Google/AdsConversionAction.php:113
297
  msgid "Error creating conversion action: %s"
298
  msgstr ""
299
 
300
  #. translators: %s Error message
301
+ #: src/API/Google/AdsConversionAction.php:154
302
  msgid "Error retrieving conversion action: %s"
303
  msgstr ""
304
 
1780
  msgid "There was an error loading merchant center settings."
1781
  msgstr ""
1782
 
 
 
 
 
1783
  #: js/build/index.js:2
1784
  msgid "There was an error loading Jetpack account info."
1785
  msgstr ""
2512
  msgid "Estimated shipping times"
2513
  msgstr ""
2514
 
2515
+ #: js/build/index.js:17
2516
+ #: js/build/index.js:21
2517
+ msgid "There was an error trying to save settings. Please try again later."
2518
+ msgstr ""
2519
+
2520
  #: js/build/index.js:17
2521
  msgid "Unable to use your WooCommerce shipping settings as shipping rates in Google. You may have to enter shipping rates manually."
2522
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: automattic, google, woocommerce
3
  Tags: woocommerce, google, listings, ads
4
  Requires at least: 5.7
5
  Tested up to: 6.0
6
- Requires PHP: 7.3
7
- Stable tag: 2.0.1
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -55,7 +55,7 @@ Create a new Google Ads account through Google Listings & Ads and a promotional
55
 
56
  * WordPress 5.7 or greater
57
  * WooCommerce 6.0 or greater
58
- * PHP version 7.3 or greater (PHP 7.4 or greater is recommended)
59
  * MySQL version 5.6 or greater
60
 
61
  Visit the [WooCommerce server requirements documentation](https://docs.woocommerce.com/document/server-requirements/) for a detailed list of server requirements.
@@ -109,14 +109,23 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis
109
 
110
  == Changelog ==
111
 
 
 
 
 
 
 
 
 
 
 
112
  = 2.0.1 - 2022-07-12 =
113
- * Add - A script to generate a list of hooks that defined or used in GLA.
114
- * Add - GH workflow to set PR labels.
115
  * Add - Normalizer Polyfill.
116
  * Dev - changed the changelog types list.
117
  * Fix - Compatibility with History Navigation v5.
118
  * Fix - Encoding product names in Issues Table .
119
- * Fix - Release 2.0.0.
120
  * Tweak - Remove try and catch in saveTargetAudience action.
121
 
122
  = 2.0.0 - 2022-07-05 =
3
  Tags: woocommerce, google, listings, ads
4
  Requires at least: 5.7
5
  Tested up to: 6.0
6
+ Requires PHP: 7.4
7
+ Stable tag: 2.0.2
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
55
 
56
  * WordPress 5.7 or greater
57
  * WooCommerce 6.0 or greater
58
+ * PHP version 7.4 or greater
59
  * MySQL version 5.6 or greater
60
 
61
  Visit the [WooCommerce server requirements documentation](https://docs.woocommerce.com/document/server-requirements/) for a detailed list of server requirements.
109
 
110
  == Changelog ==
111
 
112
+ = 2.0.2 - 2022-07-29 =
113
+ * Fix - Disable identifier_exists field.
114
+ * Tweak - Propagate errors for saveSettings.
115
+ * Tweak - Refactor SCSS variables.
116
+ * Tweak - Remove PHP 8.0 specific code of Symfony polyfills.
117
+ * Tweak - Revert migration applicable version value.
118
+ * Tweak - Update change log records type.
119
+ * Tweak - WC 6.8 compatibility.
120
+ * Update - Google Ads library to API V11.
121
+
122
  = 2.0.1 - 2022-07-12 =
123
+ * Dev - A script to generate a list of hooks that defined or used in GLA.
124
+ * Dev - GH workflow to set PR labels.
125
  * Add - Normalizer Polyfill.
126
  * Dev - changed the changelog types list.
127
  * Fix - Compatibility with History Navigation v5.
128
  * Fix - Encoding product names in Issues Table .
 
129
  * Tweak - Remove try and catch in saveTargetAudience action.
130
 
131
  = 2.0.0 - 2022-07-05 =
src/API/Google/Ads.php CHANGED
@@ -13,11 +13,11 @@ use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
13
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsInterface;
14
  use Exception;
15
  use Google\Ads\GoogleAds\Util\FieldMasks;
16
- use Google\Ads\GoogleAds\Util\V9\ResourceNames;
17
- use Google\Ads\GoogleAds\V9\Enums\AccessRoleEnum\AccessRole;
18
- use Google\Ads\GoogleAds\V9\Enums\MerchantCenterLinkStatusEnum\MerchantCenterLinkStatus;
19
- use Google\Ads\GoogleAds\V9\Resources\MerchantCenterLink;
20
- use Google\Ads\GoogleAds\V9\Services\MerchantCenterLinkOperation;
21
  use Google\ApiCore\ApiException;
22
  use Google\ApiCore\ValidationException;
23
 
13
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsInterface;
14
  use Exception;
15
  use Google\Ads\GoogleAds\Util\FieldMasks;
16
+ use Google\Ads\GoogleAds\Util\V11\ResourceNames;
17
+ use Google\Ads\GoogleAds\V11\Enums\AccessRoleEnum\AccessRole;
18
+ use Google\Ads\GoogleAds\V11\Enums\MerchantCenterLinkStatusEnum\MerchantCenterLinkStatus;
19
+ use Google\Ads\GoogleAds\V11\Resources\MerchantCenterLink;
20
+ use Google\Ads\GoogleAds\V11\Services\MerchantCenterLinkOperation;
21
  use Google\ApiCore\ApiException;
22
  use Google\ApiCore\ValidationException;
23
 
src/API/Google/AdsAssetGroup.php CHANGED
@@ -8,16 +8,16 @@ use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsListingGroup
8
  use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
9
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
10
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
11
- use Google\Ads\GoogleAds\Util\V9\ResourceNames;
12
- use Google\Ads\GoogleAds\V9\Enums\AssetGroupStatusEnum\AssetGroupStatus;
13
- use Google\Ads\GoogleAds\V9\Enums\ListingGroupFilterTypeEnum\ListingGroupFilterType;
14
- use Google\Ads\GoogleAds\V9\Enums\ListingGroupFilterVerticalEnum\ListingGroupFilterVertical;
15
- use Google\Ads\GoogleAds\V9\Resources\AssetGroup;
16
- use Google\Ads\GoogleAds\V9\Resources\AssetGroupListingGroupFilter;
17
- use Google\Ads\GoogleAds\V9\Services\AssetGroupListingGroupFilterOperation;
18
- use Google\Ads\GoogleAds\V9\Services\AssetGroupOperation;
19
- use Google\Ads\GoogleAds\V9\Services\GoogleAdsRow;
20
- use Google\Ads\GoogleAds\V9\Services\MutateOperation;
21
 
22
  /**
23
  * Class AdsAssetGroup
8
  use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
9
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
10
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
11
+ use Google\Ads\GoogleAds\Util\V11\ResourceNames;
12
+ use Google\Ads\GoogleAds\V11\Enums\AssetGroupStatusEnum\AssetGroupStatus;
13
+ use Google\Ads\GoogleAds\V11\Enums\ListingGroupFilterTypeEnum\ListingGroupFilterType;
14
+ use Google\Ads\GoogleAds\V11\Enums\ListingGroupFilterVerticalEnum\ListingGroupFilterVertical;
15
+ use Google\Ads\GoogleAds\V11\Resources\AssetGroup;
16
+ use Google\Ads\GoogleAds\V11\Resources\AssetGroupListingGroupFilter;
17
+ use Google\Ads\GoogleAds\V11\Services\AssetGroupListingGroupFilterOperation;
18
+ use Google\Ads\GoogleAds\V11\Services\AssetGroupOperation;
19
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsRow;
20
+ use Google\Ads\GoogleAds\V11\Services\MutateOperation;
21
 
22
  /**
23
  * Class AdsAssetGroup
src/API/Google/AdsCampaign.php CHANGED
@@ -15,16 +15,15 @@ use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
15
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
16
  use Automattic\WooCommerce\GoogleListingsAndAds\Proxies\WC;
17
  use Google\Ads\GoogleAds\Util\FieldMasks;
18
- use Google\Ads\GoogleAds\Util\V9\ResourceNames;
19
- use Google\Ads\GoogleAds\V9\Common\MaximizeConversionValue;
20
- use Google\Ads\GoogleAds\V9\Enums\AdvertisingChannelTypeEnum\AdvertisingChannelType;
21
- use Google\Ads\GoogleAds\V9\Resources\Campaign;
22
- use Google\Ads\GoogleAds\V9\Resources\Campaign\ShoppingSetting;
23
- use Google\Ads\GoogleAds\V9\Services\CampaignServiceClient;
24
- use Google\Ads\GoogleAds\V9\Services\CampaignOperation;
25
- use Google\Ads\GoogleAds\V9\Services\GoogleAdsRow;
26
- use Google\Ads\GoogleAds\V9\Services\GeoTargetConstantServiceClient;
27
- use Google\Ads\GoogleAds\V9\Services\MutateOperation;
28
  use Google\ApiCore\ApiException;
29
  use Google\ApiCore\ValidationException;
30
  use Exception;
@@ -527,10 +526,9 @@ class AdsCampaign implements ContainerAwareInterface, OptionsAwareInterface {
527
  * @throws Exception When unable to parse resource ID.
528
  */
529
  protected function parse_geo_target_location_id( string $geo_target_constant ): int {
530
- try {
531
- $parts = GeoTargetConstantServiceClient::parseName( $geo_target_constant );
532
- return absint( $parts['criterion_id'] );
533
- } catch ( ValidationException $e ) {
534
  throw new Exception( __( 'Invalid geo target location ID', 'google-listings-and-ads' ) );
535
  }
536
  }
15
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
16
  use Automattic\WooCommerce\GoogleListingsAndAds\Proxies\WC;
17
  use Google\Ads\GoogleAds\Util\FieldMasks;
18
+ use Google\Ads\GoogleAds\Util\V11\ResourceNames;
19
+ use Google\Ads\GoogleAds\V11\Common\MaximizeConversionValue;
20
+ use Google\Ads\GoogleAds\V11\Enums\AdvertisingChannelTypeEnum\AdvertisingChannelType;
21
+ use Google\Ads\GoogleAds\V11\Resources\Campaign;
22
+ use Google\Ads\GoogleAds\V11\Resources\Campaign\ShoppingSetting;
23
+ use Google\Ads\GoogleAds\V11\Services\CampaignServiceClient;
24
+ use Google\Ads\GoogleAds\V11\Services\CampaignOperation;
25
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsRow;
26
+ use Google\Ads\GoogleAds\V11\Services\MutateOperation;
 
27
  use Google\ApiCore\ApiException;
28
  use Google\ApiCore\ValidationException;
29
  use Exception;
526
  * @throws Exception When unable to parse resource ID.
527
  */
528
  protected function parse_geo_target_location_id( string $geo_target_constant ): int {
529
+ if ( 1 === preg_match( '#geoTargetConstants/(?<id>\d+)#', $geo_target_constant, $parts ) ) {
530
+ return absint( $parts['id'] );
531
+ } else {
 
532
  throw new Exception( __( 'Invalid geo target location ID', 'google-listings-and-ads' ) );
533
  }
534
  }
src/API/Google/AdsCampaignBudget.php CHANGED
@@ -9,11 +9,11 @@ use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
9
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
10
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
11
  use Google\Ads\GoogleAds\Util\FieldMasks;
12
- use Google\Ads\GoogleAds\Util\V9\ResourceNames;
13
- use Google\Ads\GoogleAds\V9\Resources\CampaignBudget;
14
- use Google\Ads\GoogleAds\V9\Services\CampaignBudgetOperation;
15
- use Google\Ads\GoogleAds\V9\Services\CampaignBudgetServiceClient;
16
- use Google\Ads\GoogleAds\V9\Services\MutateOperation;
17
  use Google\ApiCore\ValidationException;
18
  use Exception;
19
 
9
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
10
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
11
  use Google\Ads\GoogleAds\Util\FieldMasks;
12
+ use Google\Ads\GoogleAds\Util\V11\ResourceNames;
13
+ use Google\Ads\GoogleAds\V11\Resources\CampaignBudget;
14
+ use Google\Ads\GoogleAds\V11\Services\CampaignBudgetOperation;
15
+ use Google\Ads\GoogleAds\V11\Services\CampaignBudgetServiceClient;
16
+ use Google\Ads\GoogleAds\V11\Services\MutateOperation;
17
  use Google\ApiCore\ValidationException;
18
  use Exception;
19
 
src/API/Google/AdsCampaignCriterion.php CHANGED
@@ -3,12 +3,12 @@ declare( strict_types=1 );
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
- use Google\Ads\GoogleAds\Util\V9\ResourceNames;
7
- use Google\Ads\GoogleAds\V9\Common\LocationInfo;
8
- use Google\Ads\GoogleAds\V9\Enums\CampaignCriterionStatusEnum\CampaignCriterionStatus;
9
- use Google\Ads\GoogleAds\V9\Resources\CampaignCriterion;
10
- use Google\Ads\GoogleAds\V9\Services\CampaignCriterionOperation;
11
- use Google\Ads\GoogleAds\V9\Services\MutateOperation;
12
 
13
  /**
14
  * Class AdsCampaignCriterion
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
+ use Google\Ads\GoogleAds\Util\V11\ResourceNames;
7
+ use Google\Ads\GoogleAds\V11\Common\LocationInfo;
8
+ use Google\Ads\GoogleAds\V11\Enums\CampaignCriterionStatusEnum\CampaignCriterionStatus;
9
+ use Google\Ads\GoogleAds\V11\Resources\CampaignCriterion;
10
+ use Google\Ads\GoogleAds\V11\Services\CampaignCriterionOperation;
11
+ use Google\Ads\GoogleAds\V11\Services\MutateOperation;
12
 
13
  /**
14
  * Class AdsCampaignCriterion
src/API/Google/AdsConversionAction.php CHANGED
@@ -3,21 +3,23 @@ declare( strict_types=1 );
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
 
6
  use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
8
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
9
  use Exception;
10
- use Google\Ads\GoogleAds\V9\Common\TagSnippet;
11
- use Google\Ads\GoogleAds\V9\Enums\ConversionActionCategoryEnum\ConversionActionCategory;
12
- use Google\Ads\GoogleAds\V9\Enums\ConversionActionStatusEnum\ConversionActionStatus;
13
- use Google\Ads\GoogleAds\V9\Enums\ConversionActionTypeEnum\ConversionActionType;
14
- use Google\Ads\GoogleAds\V9\Enums\TrackingCodePageFormatEnum\TrackingCodePageFormat;
15
- use Google\Ads\GoogleAds\V9\Enums\TrackingCodeTypeEnum\TrackingCodeType;
16
- use Google\Ads\GoogleAds\V9\Resources\ConversionAction;
17
- use Google\Ads\GoogleAds\V9\Resources\ConversionAction\ValueSettings;
18
- use Google\Ads\GoogleAds\V9\Services\ConversionActionOperation;
19
- use Google\Ads\GoogleAds\V9\Services\ConversionActionServiceClient;
20
- use Google\Ads\GoogleAds\V9\Services\MutateConversionActionResult;
 
21
  use Google\ApiCore\ApiException;
22
 
23
  /**
@@ -129,10 +131,14 @@ class AdsConversionAction implements OptionsAwareInterface {
129
  $resource_name = ConversionActionServiceClient::conversionActionName( $this->options->get_ads_id(), $resource_name );
130
  }
131
 
132
- $ca_client = $this->client->getConversionActionServiceClient();
133
- $conversion_action = $ca_client->getConversionAction( $resource_name );
 
134
 
135
- return $this->convert_conversion_action( $conversion_action );
 
 
 
136
  } catch ( Exception $e ) {
137
  do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
138
  $message = $e->getMessage();
@@ -154,12 +160,13 @@ class AdsConversionAction implements OptionsAwareInterface {
154
  /**
155
  * Convert conversion action data to an array.
156
  *
157
- * @param ConversionAction $conversion_action
158
  *
159
  * @return array An array with some conversion action details.
160
  */
161
- private function convert_conversion_action( ConversionAction $conversion_action ): array {
162
- $return = [
 
163
  'id' => $conversion_action->getId(),
164
  'name' => $conversion_action->getName(),
165
  'status' => ConversionActionStatus::name( $conversion_action->getStatus() ),
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
+ use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsConversionActionQuery;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
8
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
9
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
10
  use Exception;
11
+ use Google\Ads\GoogleAds\V11\Common\TagSnippet;
12
+ use Google\Ads\GoogleAds\V11\Enums\ConversionActionCategoryEnum\ConversionActionCategory;
13
+ use Google\Ads\GoogleAds\V11\Enums\ConversionActionStatusEnum\ConversionActionStatus;
14
+ use Google\Ads\GoogleAds\V11\Enums\ConversionActionTypeEnum\ConversionActionType;
15
+ use Google\Ads\GoogleAds\V11\Enums\TrackingCodePageFormatEnum\TrackingCodePageFormat;
16
+ use Google\Ads\GoogleAds\V11\Enums\TrackingCodeTypeEnum\TrackingCodeType;
17
+ use Google\Ads\GoogleAds\V11\Resources\ConversionAction;
18
+ use Google\Ads\GoogleAds\V11\Resources\ConversionAction\ValueSettings;
19
+ use Google\Ads\GoogleAds\V11\Services\ConversionActionOperation;
20
+ use Google\Ads\GoogleAds\V11\Services\ConversionActionServiceClient;
21
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsRow;
22
+ use Google\Ads\GoogleAds\V11\Services\MutateConversionActionResult;
23
  use Google\ApiCore\ApiException;
24
 
25
  /**
131
  $resource_name = ConversionActionServiceClient::conversionActionName( $this->options->get_ads_id(), $resource_name );
132
  }
133
 
134
+ $results = ( new AdsConversionActionQuery() )->set_client( $this->client, $this->options->get_ads_id() )
135
+ ->where( 'conversion_action.resource_name', $resource_name, '=' )
136
+ ->get_results();
137
 
138
+ // Get only the first element from results.
139
+ foreach ( $results->iterateAllElements() as $row ) {
140
+ return $this->convert_conversion_action( $row );
141
+ }
142
  } catch ( Exception $e ) {
143
  do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
144
  $message = $e->getMessage();
160
  /**
161
  * Convert conversion action data to an array.
162
  *
163
+ * @param GoogleAdsRow $row Data row returned from a query request.
164
  *
165
  * @return array An array with some conversion action details.
166
  */
167
+ private function convert_conversion_action( GoogleAdsRow $row ): array {
168
+ $conversion_action = $row->getConversionAction();
169
+ $return = [
170
  'id' => $conversion_action->getId(),
171
  'name' => $conversion_action->getName(),
172
  'status' => ConversionActionStatus::name( $conversion_action->getStatus() ),
src/API/Google/AdsReport.php CHANGED
@@ -13,8 +13,8 @@ use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
13
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
14
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
15
  use DateTime;
16
- use Google\Ads\GoogleAds\V9\Common\Segments;
17
- use Google\Ads\GoogleAds\V9\Services\GoogleAdsRow;
18
  use Google\ApiCore\ApiException;
19
 
20
  /**
13
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareInterface;
14
  use Automattic\WooCommerce\GoogleListingsAndAds\Options\OptionsAwareTrait;
15
  use DateTime;
16
+ use Google\Ads\GoogleAds\V11\Common\Segments;
17
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsRow;
18
  use Google\ApiCore\ApiException;
19
 
20
  /**
src/API/Google/BillingSetupStatus.php CHANGED
@@ -3,7 +3,7 @@ declare( strict_types=1 );
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
- use Google\Ads\GoogleAds\V9\Enums\BillingSetupStatusEnum\BillingSetupStatus as AdsBillingSetupStatus;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Internal\StatusMapping;
8
 
9
  /**
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
+ use Google\Ads\GoogleAds\V11\Enums\BillingSetupStatusEnum\BillingSetupStatus as AdsBillingSetupStatus;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Internal\StatusMapping;
8
 
9
  /**
src/API/Google/CampaignStatus.php CHANGED
@@ -3,7 +3,7 @@ declare( strict_types=1 );
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
- use Google\Ads\GoogleAds\V9\Enums\CampaignStatusEnum\CampaignStatus as AdsCampaignStatus;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Internal\StatusMapping;
8
 
9
  /**
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
+ use Google\Ads\GoogleAds\V11\Enums\CampaignStatusEnum\CampaignStatus as AdsCampaignStatus;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Internal\StatusMapping;
8
 
9
  /**
src/API/Google/CampaignType.php CHANGED
@@ -3,7 +3,7 @@ declare( strict_types=1 );
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
- use Google\Ads\GoogleAds\V9\Enums\AdvertisingChannelTypeEnum\AdvertisingChannelType as AdsCampaignType;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Internal\StatusMapping;
8
 
9
  /**
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
5
 
6
+ use Google\Ads\GoogleAds\V11\Enums\AdvertisingChannelTypeEnum\AdvertisingChannelType as AdsCampaignType;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Internal\StatusMapping;
8
 
9
  /**
src/API/Google/MerchantMetrics.php CHANGED
@@ -12,7 +12,7 @@ use Automattic\WooCommerce\GoogleListingsAndAds\Options\TransientsInterface;
12
  use Automattic\WooCommerce\GoogleListingsAndAds\Proxies\WP;
13
  use DateTime;
14
  use Exception;
15
- use Google\Ads\GoogleAds\V9\Services\GoogleAdsRow;
16
  use Google\ApiCore\PagedListResponse;
17
  use Google\Service\ShoppingContent;
18
  use Google\Service\ShoppingContent\SearchResponse;
12
  use Automattic\WooCommerce\GoogleListingsAndAds\Proxies\WP;
13
  use DateTime;
14
  use Exception;
15
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsRow;
16
  use Google\ApiCore\PagedListResponse;
17
  use Google\Service\ShoppingContent;
18
  use Google\Service\ShoppingContent\SearchResponse;
src/API/Google/Query/AdsConversionActionQuery.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ declare( strict_types=1 );
3
+
4
+ namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query;
5
+
6
+ defined( 'ABSPATH' ) || exit;
7
+
8
+ /**
9
+ * Class AdsConversionActionQuery
10
+ *
11
+ * @package Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query
12
+ */
13
+ class AdsConversionActionQuery extends AdsQuery {
14
+
15
+ /**
16
+ * Query constructor.
17
+ */
18
+ public function __construct() {
19
+ parent::__construct( 'conversion_action' );
20
+ $this->columns(
21
+ [
22
+ 'id' => 'conversion_action.id',
23
+ 'name' => 'conversion_action.name',
24
+ 'status' => 'conversion_action.status',
25
+ 'tag_snippets' => 'conversion_action.tag_snippets',
26
+ ]
27
+ );
28
+ }
29
+ }
src/API/Google/Query/AdsQuery.php CHANGED
@@ -5,7 +5,7 @@ namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query;
5
 
6
  use Automattic\WooCommerce\GoogleListingsAndAds\Exception\InvalidProperty;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
8
- use Google\Ads\GoogleAds\V9\Services\GoogleAdsRow;
9
  use Google\ApiCore\ApiException;
10
  use Google\ApiCore\PagedListResponse;
11
 
5
 
6
  use Automattic\WooCommerce\GoogleListingsAndAds\Exception\InvalidProperty;
7
  use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
8
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsRow;
9
  use Google\ApiCore\ApiException;
10
  use Google\ApiCore\PagedListResponse;
11
 
src/API/Google/Query/AdsReportQuery.php CHANGED
@@ -3,7 +3,7 @@ declare( strict_types=1 );
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query;
5
 
6
- use Google\Ads\GoogleAds\V9\Resources\ShoppingPerformanceView;
7
 
8
  defined( 'ABSPATH' ) || exit;
9
 
3
 
4
  namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query;
5
 
6
+ use Google\Ads\GoogleAds\V11\Resources\ShoppingPerformanceView;
7
 
8
  defined( 'ABSPATH' ) || exit;
9
 
src/DB/Migration/Migration20220524T1653383133.php CHANGED
@@ -39,7 +39,7 @@ class Migration20220524T1653383133 extends AbstractMigration {
39
  * @return string A version number. For example: 1.4.1
40
  */
41
  public function get_applicable_version(): string {
42
- return '2.0.1';
43
  }
44
 
45
  /**
39
  * @return string A version number. For example: 1.4.1
40
  */
41
  public function get_applicable_version(): string {
42
+ return '1.13.3';
43
  }
44
 
45
  /**
src/Google/Ads/GoogleAdsClient.php CHANGED
@@ -2,7 +2,7 @@
2
  declare( strict_types=1 );
3
 
4
  /**
5
- * Overrides vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsClient.php
6
  *
7
  * phpcs:disable WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
8
  * phpcs:disable WordPress.NamingConventions.ValidVariableName
@@ -13,7 +13,7 @@ namespace Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads;
13
  use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\Google\Auth\Credentials\InsecureCredentials;
14
  use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\Google\Auth\HttpHandler\HttpHandlerFactory;
15
  use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\GuzzleHttp\Client;
16
- use Google\Ads\GoogleAds\Util\V9\GoogleAdsFailures;
17
 
18
  /**
19
  * A Google Ads API client for handling common configuration and OAuth2 settings.
2
  declare( strict_types=1 );
3
 
4
  /**
5
+ * Overrides vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V11/GoogleAdsClient.php
6
  *
7
  * phpcs:disable WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
8
  * phpcs:disable WordPress.NamingConventions.ValidVariableName
13
  use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\Google\Auth\Credentials\InsecureCredentials;
14
  use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\Google\Auth\HttpHandler\HttpHandlerFactory;
15
  use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\GuzzleHttp\Client;
16
+ use Google\Ads\GoogleAds\Util\V11\GoogleAdsFailures;
17
 
18
  /**
19
  * A Google Ads API client for handling common configuration and OAuth2 settings.
src/Google/Ads/ServiceClientFactoryTrait.php CHANGED
@@ -2,7 +2,7 @@
2
  declare( strict_types=1 );
3
 
4
  /**
5
- * Overrides vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServiceClientFactoryTrait.php
6
  *
7
  * phpcs:disable WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
8
  * phpcs:disable WordPress.NamingConventions.ValidVariableName
@@ -13,25 +13,25 @@ namespace Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads;
13
 
14
  use Google\Ads\GoogleAds\Constants;
15
  use Google\Ads\GoogleAds\Lib\ConfigurationTrait;
16
- use Google\Ads\GoogleAds\V9\Services\AccountBudgetServiceClient;
17
- use Google\Ads\GoogleAds\V9\Services\AccountLinkServiceClient;
18
- use Google\Ads\GoogleAds\V9\Services\AdGroupAdLabelServiceClient;
19
- use Google\Ads\GoogleAds\V9\Services\AdGroupAdServiceClient;
20
- use Google\Ads\GoogleAds\V9\Services\AdGroupCriterionServiceClient;
21
- use Google\Ads\GoogleAds\V9\Services\AdGroupServiceClient;
22
- use Google\Ads\GoogleAds\V9\Services\AdServiceClient;
23
- use Google\Ads\GoogleAds\V9\Services\AssetGroupListingGroupFilterServiceClient;
24
- use Google\Ads\GoogleAds\V9\Services\AssetGroupServiceClient;
25
- use Google\Ads\GoogleAds\V9\Services\BillingSetupServiceClient;
26
- use Google\Ads\GoogleAds\V9\Services\CampaignBudgetServiceClient;
27
- use Google\Ads\GoogleAds\V9\Services\CampaignCriterionServiceClient;
28
- use Google\Ads\GoogleAds\V9\Services\CampaignServiceClient;
29
- use Google\Ads\GoogleAds\V9\Services\ConversionActionServiceClient;
30
- use Google\Ads\GoogleAds\V9\Services\CustomerServiceClient;
31
- use Google\Ads\GoogleAds\V9\Services\CustomerUserAccessServiceClient;
32
- use Google\Ads\GoogleAds\V9\Services\GeoTargetConstantServiceClient;
33
- use Google\Ads\GoogleAds\V9\Services\GoogleAdsServiceClient;
34
- use Google\Ads\GoogleAds\V9\Services\MerchantCenterLinkServiceClient;
35
 
36
  /**
37
  * Contains service client factory methods.
2
  declare( strict_types=1 );
3
 
4
  /**
5
+ * Overrides vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V11/ServiceClientFactoryTrait.php
6
  *
7
  * phpcs:disable WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
8
  * phpcs:disable WordPress.NamingConventions.ValidVariableName
13
 
14
  use Google\Ads\GoogleAds\Constants;
15
  use Google\Ads\GoogleAds\Lib\ConfigurationTrait;
16
+ use Google\Ads\GoogleAds\V11\Services\AccountBudgetServiceClient;
17
+ use Google\Ads\GoogleAds\V11\Services\AccountLinkServiceClient;
18
+ use Google\Ads\GoogleAds\V11\Services\AdGroupAdLabelServiceClient;
19
+ use Google\Ads\GoogleAds\V11\Services\AdGroupAdServiceClient;
20
+ use Google\Ads\GoogleAds\V11\Services\AdGroupCriterionServiceClient;
21
+ use Google\Ads\GoogleAds\V11\Services\AdGroupServiceClient;
22
+ use Google\Ads\GoogleAds\V11\Services\AdServiceClient;
23
+ use Google\Ads\GoogleAds\V11\Services\AssetGroupListingGroupFilterServiceClient;
24
+ use Google\Ads\GoogleAds\V11\Services\AssetGroupServiceClient;
25
+ use Google\Ads\GoogleAds\V11\Services\BillingSetupServiceClient;
26
+ use Google\Ads\GoogleAds\V11\Services\CampaignBudgetServiceClient;
27
+ use Google\Ads\GoogleAds\V11\Services\CampaignCriterionServiceClient;
28
+ use Google\Ads\GoogleAds\V11\Services\CampaignServiceClient;
29
+ use Google\Ads\GoogleAds\V11\Services\ConversionActionServiceClient;
30
+ use Google\Ads\GoogleAds\V11\Services\CustomerServiceClient;
31
+ use Google\Ads\GoogleAds\V11\Services\CustomerUserAccessServiceClient;
32
+ use Google\Ads\GoogleAds\V11\Services\GeoTargetConstantServiceClient;
33
+ use Google\Ads\GoogleAds\V11\Services\GoogleAdsServiceClient;
34
+ use Google\Ads\GoogleAds\V11\Services\MerchantCenterLinkServiceClient;
35
 
36
  /**
37
  * Contains service client factory methods.
src/Infrastructure/GoogleListingsAndAdsPlugin.php CHANGED
@@ -118,7 +118,6 @@ final class GoogleListingsAndAdsPlugin implements Plugin {
118
  }
119
  );
120
 
121
- require_once dirname( __DIR__ ) . '/Polyfills/bootstrap.php';
122
  }
123
 
124
  /**
118
  }
119
  );
120
 
 
121
  }
122
 
123
  /**
src/Polyfills/MBString.php DELETED
@@ -1,281 +0,0 @@
1
- <?php
2
- declare( strict_types=1 );
3
-
4
- namespace Automattic\WooCommerce\GoogleListingsAndAds\Polyfills;
5
-
6
- /**
7
- * Class Multi Byte String
8
- *
9
- * Based off of: https://github.com/symfony/polyfill-mbstring
10
- *
11
- * For the full copyright and license information, please view the LICENSE
12
- * https://github.com/symfony/polyfill-mbstring/blob/v1.22.1/LICENSE
13
- *
14
- * @package Automattic\WooCommerce\GoogleListingsAndAds\Polyfills
15
- */
16
- final class MBString {
17
- /**
18
- * Default list of supported encodings.
19
- *
20
- * @var array
21
- */
22
- private static $encoding_list = [ 'ASCII', 'UTF-8' ];
23
-
24
- /**
25
- * Default encoding type.
26
- *
27
- * @var string
28
- */
29
- private static $internal_encoding = 'UTF-8';
30
-
31
- /**
32
- * Convert encoding.
33
- *
34
- * @param array|string $string
35
- * @param string $to_encoding
36
- * @param array|string|null $from_encoding
37
- */
38
- public static function mb_convert_encoding( $string, $to_encoding, $from_encoding = null ) {
39
- if ( \is_array( $from_encoding ) || false !== strpos( $from_encoding, ',' ) ) {
40
- $from_encoding = self::mb_detect_encoding( $string, $from_encoding );
41
- } else {
42
- $from_encoding = self::get_encoding( $from_encoding );
43
- }
44
-
45
- $to_encoding = self::get_encoding( $to_encoding );
46
-
47
- if ( 'BASE64' === $from_encoding ) {
48
- $string = base64_decode( $string );
49
- $from_encoding = $to_encoding;
50
- }
51
-
52
- if ( 'BASE64' === $to_encoding ) {
53
- return base64_encode( $string );
54
- }
55
-
56
- if ( 'HTML-ENTITIES' === $to_encoding || 'HTML' === $to_encoding ) {
57
- if ( 'HTML-ENTITIES' === $from_encoding || 'HTML' === $from_encoding ) {
58
- $from_encoding = 'Windows-1252';
59
- }
60
- if ( 'UTF-8' !== $from_encoding ) {
61
- $string = \iconv( $from_encoding, 'UTF-8//IGNORE', $string );
62
- }
63
-
64
- return preg_replace_callback( '/[\x80-\xFF]+/', [ __CLASS__, 'html_encoding_callback' ], $string );
65
- }
66
-
67
- if ( 'HTML-ENTITIES' === $from_encoding ) {
68
- $string = html_entity_decode( $string, \ENT_COMPAT, 'UTF-8' );
69
- $from_encoding = 'UTF-8';
70
- }
71
-
72
- return \iconv( $from_encoding, $to_encoding . '//IGNORE', $string );
73
- }
74
-
75
- /**
76
- * Check if strings are valid for the specified encoding.
77
- *
78
- * @param array|string|null $value
79
- * @param string|null $encoding
80
- */
81
- public static function mb_check_encoding( $value = null, $encoding = null ) {
82
- if ( null === $encoding ) {
83
- if ( null === $value ) {
84
- return false;
85
- }
86
- $encoding = self::$internal_encoding;
87
- }
88
-
89
- // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
90
- return self::mb_detect_encoding( $value, [ $encoding ] ) || false !== @\iconv( $encoding, $encoding, $value );
91
- }
92
-
93
- /**
94
- * Detect character encoding.
95
- *
96
- * @param string $string
97
- * @param array|string|null $encoding_list
98
- * @param boolean $strict
99
- *
100
- * @return string|false
101
- */
102
- public static function mb_detect_encoding( $string, $encoding_list = null, $strict = false ) {
103
- if ( null === $encoding_list ) {
104
- $encoding_list = self::$encoding_list;
105
- } else {
106
- if ( ! \is_array( $encoding_list ) ) {
107
- $encoding_list = array_map( 'trim', explode( ',', $encoding_list ) );
108
- }
109
- $encoding_list = array_map( 'strtoupper', $encoding_list );
110
- }
111
-
112
- foreach ( $encoding_list as $enc ) {
113
- switch ( $enc ) {
114
- case 'ASCII':
115
- if ( ! preg_match( '/[\x80-\xFF]/', $string ) ) {
116
- return $enc;
117
- }
118
- break;
119
-
120
- case 'UTF8':
121
- case 'UTF-8':
122
- if ( preg_match( '//u', $string ) ) {
123
- return 'UTF-8';
124
- }
125
- break;
126
-
127
- default:
128
- if ( 0 === strncmp( $enc, 'ISO-8859-', 9 ) ) {
129
- return $enc;
130
- }
131
- }
132
- }
133
-
134
- return false;
135
- }
136
-
137
- /**
138
- * Get string length.
139
- *
140
- * @param string $string
141
- * @param string|null $encoding
142
- * @return int
143
- */
144
- public static function mb_strlen( $string, $encoding = null ): int {
145
- $encoding = self::get_encoding( $encoding );
146
- if ( 'CP850' === $encoding || 'ASCII' === $encoding ) {
147
- return \strlen( $string );
148
- }
149
-
150
- // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
151
- return @\iconv_strlen( $string, $encoding );
152
- }
153
-
154
- /**
155
- * Encode HTML entities.
156
- *
157
- * @param array $m
158
- *
159
- * @return string
160
- */
161
- private static function html_encoding_callback( array $m ) {
162
- $i = 1;
163
- $entities = '';
164
- $m = unpack( 'C*', htmlentities( $m[0], \ENT_COMPAT, 'UTF-8' ) );
165
-
166
- while ( isset( $m[ $i ] ) ) {
167
- if ( 0x80 > $m[ $i ] ) {
168
- $entities .= \chr( $m[ $i++ ] );
169
- continue;
170
- }
171
- if ( 0xF0 <= $m[ $i ] ) {
172
- $c = ( ( $m[ $i++ ] - 0xF0 ) << 18 ) + ( ( $m[ $i++ ] - 0x80 ) << 12 ) + ( ( $m[ $i++ ] - 0x80 ) << 6 ) + $m[ $i++ ] - 0x80;
173
- } elseif ( 0xE0 <= $m[ $i ] ) {
174
- $c = ( ( $m[ $i++ ] - 0xE0 ) << 12 ) + ( ( $m[ $i++ ] - 0x80 ) << 6 ) + $m[ $i++ ] - 0x80;
175
- } else {
176
- $c = ( ( $m[ $i++ ] - 0xC0 ) << 6 ) + $m[ $i++ ] - 0x80;
177
- }
178
-
179
- $entities .= '&#' . $c . ';';
180
- }
181
-
182
- return $entities;
183
- }
184
-
185
- /**
186
- * Return formatted encoding string.
187
- *
188
- * @param string $encoding
189
- *
190
- * @return string
191
- */
192
- private static function get_encoding( $encoding ) {
193
- if ( null === $encoding ) {
194
- return self::$internal_encoding;
195
- }
196
-
197
- if ( 'UTF-8' === $encoding ) {
198
- return 'UTF-8';
199
- }
200
-
201
- $encoding = strtoupper( $encoding );
202
-
203
- if ( '8BIT' === $encoding || 'BINARY' === $encoding ) {
204
- return 'CP850';
205
- }
206
-
207
- if ( 'UTF8' === $encoding ) {
208
- return 'UTF-8';
209
- }
210
-
211
- return $encoding;
212
- }
213
-
214
- /**
215
- * Get part of string.
216
- *
217
- * @param string $string
218
- * @param int $start
219
- * @param int|null $length
220
- * @param string|null $encoding
221
- *
222
- * @return string
223
- *
224
- * @since 1.4.1
225
- */
226
- public static function mb_substr( $string, $start, $length = null, $encoding = null ) {
227
- $encoding = self::get_encoding( $encoding );
228
- if ( 'CP850' === $encoding || 'ASCII' === $encoding ) {
229
- return (string) substr( $string, $start, null === $length ? 2147483647 : $length );
230
- }
231
-
232
- if ( $start < 0 ) {
233
- $start = \iconv_strlen( $string, $encoding ) + $start;
234
- if ( $start < 0 ) {
235
- $start = 0;
236
- }
237
- }
238
-
239
- if ( null === $length ) {
240
- $length = 2147483647;
241
- } elseif ( $length < 0 ) {
242
- $length = \iconv_strlen( $string, $encoding ) + $length - $start;
243
- if ( $length < 0 ) {
244
- return '';
245
- }
246
- }
247
-
248
- return (string) \iconv_substr( $string, $start, $length, $encoding );
249
- }
250
-
251
- /**
252
- * Internal encoding
253
- *
254
- * @param string $encoding
255
- *
256
- * @return string
257
- * @throws \ValueError If $encoding is not a valid encoding.
258
- *
259
- * @since 2.0.1
260
- */
261
- public static function mb_internal_encoding( $encoding = null ) {
262
- if ( null === $encoding ) {
263
- return self::$internal_encoding;
264
- }
265
-
266
- $normalized_encoding = self::get_encoding( $encoding );
267
-
268
- // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
269
- if ( 'UTF-8' === $normalized_encoding || false !== @\iconv( $normalized_encoding, $normalized_encoding, ' ' ) ) {
270
- self::$internal_encoding = $normalized_encoding;
271
-
272
- return true;
273
- }
274
-
275
- if ( 80000 > \PHP_VERSION_ID ) {
276
- return false;
277
- }
278
-
279
- throw new \ValueError( sprintf( 'Argument #1 ($encoding) must be a valid encoding, "%s" given', $encoding ) );
280
- }
281
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Polyfills/Normalizer.php DELETED
@@ -1,328 +0,0 @@
1
- <?php
2
- // phpcs:ignoreFile
3
- declare( strict_types=1 );
4
-
5
- /**
6
- * Class Normalizer
7
- *
8
- * Based off of: https://github.com/symfony/polyfill-intl-normalizer
9
- *
10
- * For the full copyright and license information, please view the LICENSE
11
- * https://github.com/symfony/polyfill-intl-normalizer/blob/main/LICENSE
12
- *
13
- * @since 2.0.1
14
- *
15
- * @package Automattic\WooCommerce\GoogleListingsAndAds\Polyfills
16
- */
17
- class Normalizer {
18
-
19
- /**
20
- * @deprecated since ICU 56 and removed in PHP 8
21
- */
22
- public const NONE = 2;
23
- public const FORM_D = 4;
24
- public const FORM_KD = 8;
25
- public const FORM_C = 16;
26
- public const FORM_KC = 32;
27
- public const NFD = 4;
28
- public const NFKD = 8;
29
- public const NFC = 16;
30
- public const NFKC = 32;
31
-
32
- private static $C;
33
- private static $D;
34
- private static $KD;
35
- private static $cC;
36
- private static $ulenMask = [
37
- "\xC0" => 2,
38
- "\xD0" => 2,
39
- "\xE0" => 3,
40
- "\xF0" => 4,
41
- ];
42
- private static $ASCII = "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F";
43
-
44
- /**
45
- * Normalizes the input provided and returns the normalized string
46
- *
47
- * @param string $s
48
- * @param int $form
49
- * @throws \ValueError Throws if $form is not a valid normalization form.
50
- */
51
- public static function normalize( string $s, int $form = self::FORM_C ) {
52
- if ( ! preg_match( '//u', $s ) ) {
53
- return false;
54
- }
55
-
56
- switch ( $form ) {
57
- case self::NFC:
58
- $C = true;
59
- $K = false;
60
- break;
61
- case self::NFD:
62
- $C = false;
63
- $K = false;
64
- break;
65
- case self::NFKC:
66
- $C = true;
67
- $K = true;
68
- break;
69
- case self::NFKD:
70
- $C = false;
71
- $K = true;
72
- break;
73
- default:
74
- if ( \defined( 'Normalizer::NONE' ) && \Normalizer::NONE == $form ) {
75
- return $s;
76
- }
77
-
78
- if ( 80000 > \PHP_VERSION_ID ) {
79
- return false;
80
- }
81
-
82
- throw new \ValueError( 'normalizer_normalize(): Argument #2 ($form) must be a a valid normalization form' );
83
- }
84
-
85
- if ( '' === $s ) {
86
- return '';
87
- }
88
-
89
- if ( $K && null === self::$KD ) {
90
- self::$KD = self::getData( 'compatibilityDecomposition' );
91
- }
92
-
93
- if ( null === self::$D ) {
94
- self::$D = self::getData( 'canonicalDecomposition' );
95
- self::$cC = self::getData( 'combiningClass' );
96
- }
97
-
98
- if ( null !== $mbEncoding = ( 2 /* MB_OVERLOAD_STRING */ & (int) ini_get( 'mbstring.func_overload' ) ) ? mb_internal_encoding() : null ) {
99
- mb_internal_encoding( '8bit' );
100
- }
101
-
102
- $r = self::decompose( $s, $K );
103
-
104
- if ( $C ) {
105
- if ( null === self::$C ) {
106
- self::$C = self::getData( 'canonicalComposition' );
107
- }
108
-
109
- $r = self::recompose( $r );
110
- }
111
- if ( null !== $mbEncoding ) {
112
- mb_internal_encoding( $mbEncoding );
113
- }
114
-
115
- return $r;
116
- }
117
-
118
- /**
119
- * Recompose
120
- *
121
- * @param string $s
122
- */
123
- private static function recompose( $s ) {
124
- $ASCII = self::$ASCII;
125
- $compMap = self::$C;
126
- $combClass = self::$cC;
127
- $ulenMask = self::$ulenMask;
128
-
129
- $result = $tail = '';
130
-
131
- $i = $s[0] < "\x80" ? 1 : $ulenMask[ $s[0] & "\xF0" ];
132
- $len = \strlen( $s );
133
-
134
- $lastUchr = substr( $s, 0, $i );
135
- $lastUcls = isset( $combClass[ $lastUchr ] ) ? 256 : 0;
136
-
137
- while ( $i < $len ) {
138
- if ( $s[ $i ] < "\x80" ) {
139
- // ASCII chars
140
-
141
- if ( $tail ) {
142
- $lastUchr .= $tail;
143
- $tail = '';
144
- }
145
-
146
- if ( $j = strspn( $s, $ASCII, $i + 1 ) ) {
147
- $lastUchr .= substr( $s, $i, $j );
148
- $i += $j;
149
- }
150
-
151
- $result .= $lastUchr;
152
- $lastUchr = $s[ $i ];
153
- $lastUcls = 0;
154
- ++$i;
155
- continue;
156
- }
157
-
158
- $ulen = $ulenMask[ $s[ $i ] & "\xF0" ];
159
- $uchr = substr( $s, $i, $ulen );
160
-
161
- if ( $lastUchr < "\xE1\x84\x80" || "\xE1\x84\x92" < $lastUchr
162
- || $uchr < "\xE1\x85\xA1" || "\xE1\x85\xB5" < $uchr
163
- || $lastUcls ) {
164
- // Table lookup and combining chars composition
165
-
166
- $ucls = $combClass[ $uchr ] ?? 0;
167
-
168
- if ( isset( $compMap[ $lastUchr . $uchr ] ) && ( ! $lastUcls || $lastUcls < $ucls ) ) {
169
- $lastUchr = $compMap[ $lastUchr . $uchr ];
170
- } elseif ( $lastUcls = $ucls ) {
171
- $tail .= $uchr;
172
- } else {
173
- if ( $tail ) {
174
- $lastUchr .= $tail;
175
- $tail = '';
176
- }
177
-
178
- $result .= $lastUchr;
179
- $lastUchr = $uchr;
180
- }
181
- } else {
182
- // Hangul chars
183
-
184
- $L = \ord( $lastUchr[2] ) - 0x80;
185
- $V = \ord( $uchr[2] ) - 0xA1;
186
- $T = 0;
187
-
188
- $uchr = substr( $s, $i + $ulen, 3 );
189
-
190
- if ( "\xE1\x86\xA7" <= $uchr && $uchr <= "\xE1\x87\x82" ) {
191
- $T = \ord( $uchr[2] ) - 0xA7;
192
- 0 > $T && $T += 0x40;
193
- $ulen += 3;
194
- }
195
-
196
- $L = 0xAC00 + ( $L * 21 + $V ) * 28 + $T;
197
- $lastUchr = \chr( 0xE0 | $L >> 12 ) . \chr( 0x80 | $L >> 6 & 0x3F ) . \chr( 0x80 | $L & 0x3F );
198
- }
199
-
200
- $i += $ulen;
201
- }
202
-
203
- return $result . $lastUchr . $tail;
204
- }
205
-
206
- /**
207
- * Decompose
208
- *
209
- * @param string $s
210
- * @param bool $c
211
- */
212
- private static function decompose( $s, $c ) {
213
- $result = '';
214
-
215
- $ASCII = self::$ASCII;
216
- $decompMap = self::$D;
217
- $combClass = self::$cC;
218
- $ulenMask = self::$ulenMask;
219
- if ( $c ) {
220
- $compatMap = self::$KD;
221
- }
222
-
223
- $c = [];
224
- $i = 0;
225
- $len = \strlen( $s );
226
-
227
- while ( $i < $len ) {
228
- if ( $s[ $i ] < "\x80" ) {
229
- // ASCII chars
230
-
231
- if ( $c ) {
232
- ksort( $c );
233
- $result .= implode( '', $c );
234
- $c = [];
235
- }
236
-
237
- $j = 1 + strspn( $s, $ASCII, $i + 1 );
238
- $result .= substr( $s, $i, $j );
239
- $i += $j;
240
- continue;
241
- }
242
-
243
- $ulen = $ulenMask[ $s[ $i ] & "\xF0" ];
244
- $uchr = substr( $s, $i, $ulen );
245
- $i += $ulen;
246
-
247
- if ( $uchr < "\xEA\xB0\x80" || "\xED\x9E\xA3" < $uchr ) {
248
- // Table lookup
249
-
250
- if ( $uchr !== $j = $compatMap[ $uchr ] ?? ( $decompMap[ $uchr ] ?? $uchr ) ) {
251
- $uchr = $j;
252
-
253
- $j = \strlen( $uchr );
254
- $ulen = $uchr[0] < "\x80" ? 1 : $ulenMask[ $uchr[0] & "\xF0" ];
255
-
256
- if ( $ulen != $j ) {
257
- // Put trailing chars in $s
258
-
259
- $j -= $ulen;
260
- $i -= $j;
261
-
262
- if ( 0 > $i ) {
263
- $s = str_repeat( ' ', -$i ) . $s;
264
- $len -= $i;
265
- $i = 0;
266
- }
267
-
268
- while ( $j-- ) {
269
- $s[ $i + $j ] = $uchr[ $ulen + $j ];
270
- }
271
-
272
- $uchr = substr( $uchr, 0, $ulen );
273
- }
274
- }
275
- if ( isset( $combClass[ $uchr ] ) ) {
276
- // Combining chars, for sorting
277
-
278
- if ( ! isset( $c[ $combClass[ $uchr ] ] ) ) {
279
- $c[ $combClass[ $uchr ] ] = '';
280
- }
281
- $c[ $combClass[ $uchr ] ] .= $uchr;
282
- continue;
283
- }
284
- } else {
285
- // Hangul chars
286
-
287
- $uchr = unpack( 'C*', $uchr );
288
- $j = ( ( $uchr[1] - 224 ) << 12 ) + ( ( $uchr[2] - 128 ) << 6 ) + $uchr[3] - 0xAC80;
289
-
290
- $uchr = "\xE1\x84" . \chr( 0x80 + (int) ( $j / 588 ) )
291
- . "\xE1\x85" . \chr( 0xA1 + (int) ( ( $j % 588 ) / 28 ) );
292
-
293
- if ( $j %= 28 ) {
294
- $uchr .= $j < 25
295
- ? ( "\xE1\x86" . \chr( 0xA7 + $j ) )
296
- : ( "\xE1\x87" . \chr( 0x67 + $j ) );
297
- }
298
- }
299
- if ( $c ) {
300
- ksort( $c );
301
- $result .= implode( '', $c );
302
- $c = [];
303
- }
304
-
305
- $result .= $uchr;
306
- }
307
-
308
- if ( $c ) {
309
- ksort( $c );
310
- $result .= implode( '', $c );
311
- }
312
-
313
- return $result;
314
- }
315
-
316
- /**
317
- * Get Data
318
- *
319
- * @param string $file
320
- */
321
- private static function getData( $file ) {
322
- if ( file_exists( $file = __DIR__ . '/Resources/unidata/' . $file . '.php' ) ) {
323
- return require $file;
324
- }
325
-
326
- return false;
327
- }
328
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Polyfills/Resources/unidata/canonicalComposition.php DELETED
@@ -1,946 +0,0 @@
1
- <?php
2
- // phpcs:ignoreFile
3
-
4
- return [
5
- 'À' => 'À',
6
- 'Á' => 'Á',
7
- 'Â' => 'Â',
8
- 'Ã' => 'Ã',
9
- 'Ä' => 'Ä',
10
- 'Å' => 'Å',
11
- 'Ç' => 'Ç',
12
- 'È' => 'È',
13
- 'É' => 'É',
14
- 'Ê' => 'Ê',
15
- 'Ë' => 'Ë',
16
- 'Ì' => 'Ì',
17
- 'Í' => 'Í',
18
- 'Î' => 'Î',
19
- 'Ï' => 'Ï',
20
- 'Ñ' => 'Ñ',
21
- 'Ò' => 'Ò',
22
- 'Ó' => 'Ó',
23
- 'Ô' => 'Ô',
24
- 'Õ' => 'Õ',
25
- 'Ö' => 'Ö',
26
- 'Ù' => 'Ù',
27
- 'Ú' => 'Ú',
28
- 'Û' => 'Û',
29
- 'Ü' => 'Ü',
30
- 'Ý' => 'Ý',
31
- 'à' => 'à',
32
- 'á' => 'á',
33
- 'â' => 'â',
34
- 'ã' => 'ã',
35
- 'ä' => 'ä',
36
- 'å' => 'å',
37
- 'ç' => 'ç',
38
- 'è' => 'è',
39
- 'é' => 'é',
40
- 'ê' => 'ê',
41
- 'ë' => 'ë',
42
- 'ì' => 'ì',
43
- 'í' => 'í',
44
- 'î' => 'î',
45
- 'ï' => 'ï',
46
- 'ñ' => 'ñ',
47
- 'ò' => 'ò',
48
- 'ó' => 'ó',
49
- 'ô' => 'ô',
50
- 'õ' => 'õ',
51
- 'ö' => 'ö',
52
- 'ù' => 'ù',
53
- 'ú' => 'ú',
54
- 'û' => 'û',
55
- 'ü' => 'ü',
56
- 'ý' => 'ý',
57
- 'ÿ' => 'ÿ',
58
- 'Ā' => 'Ā',
59
- 'ā' => 'ā',
60
- 'Ă' => 'Ă',
61
- 'ă' => 'ă',
62
- 'Ą' => 'Ą',
63
- 'ą' => 'ą',
64
- 'Ć' => 'Ć',
65
- 'ć' => 'ć',
66
- 'Ĉ' => 'Ĉ',
67
- 'ĉ' => 'ĉ',
68
- 'Ċ' => 'Ċ',
69
- 'ċ' => 'ċ',
70
- 'Č' => 'Č',
71
- 'č' => 'č',
72
- 'Ď' => 'Ď',
73
- 'ď' => 'ď',
74
- 'Ē' => 'Ē',
75
- 'ē' => 'ē',
76
- 'Ĕ' => 'Ĕ',
77
- 'ĕ' => 'ĕ',
78
- 'Ė' => 'Ė',
79
- 'ė' => 'ė',
80
- 'Ę' => 'Ę',
81
- 'ę' => 'ę',
82
- 'Ě' => 'Ě',
83
- 'ě' => 'ě',
84
- 'Ĝ' => 'Ĝ',
85
- 'ĝ' => 'ĝ',
86
- 'Ğ' => 'Ğ',
87
- 'ğ' => 'ğ',
88
- 'Ġ' => 'Ġ',
89
- 'ġ' => 'ġ',
90
- 'Ģ' => 'Ģ',
91
- 'ģ' => 'ģ',
92
- 'Ĥ' => 'Ĥ',
93
- 'ĥ' => 'ĥ',
94
- 'Ĩ' => 'Ĩ',
95
- 'ĩ' => 'ĩ',
96
- 'Ī' => 'Ī',
97
- 'ī' => 'ī',
98
- 'Ĭ' => 'Ĭ',
99
- 'ĭ' => 'ĭ',
100
- 'Į' => 'Į',
101
- 'į' => 'į',
102
- 'İ' => 'İ',
103
- 'Ĵ' => 'Ĵ',
104
- 'ĵ' => 'ĵ',
105
- 'Ķ' => 'Ķ',
106
- 'ķ' => 'ķ',
107
- 'Ĺ' => 'Ĺ',
108
- 'ĺ' => 'ĺ',
109
- 'Ļ' => 'Ļ',
110
- 'ļ' => 'ļ',
111
- 'Ľ' => 'Ľ',
112
- 'ľ' => 'ľ',
113
- 'Ń' => 'Ń',
114
- 'ń' => 'ń',
115
- 'Ņ' => 'Ņ',
116
- 'ņ' => 'ņ',
117
- 'Ň' => 'Ň',
118
- 'ň' => 'ň',
119
- 'Ō' => 'Ō',
120
- 'ō' => 'ō',
121
- 'Ŏ' => 'Ŏ',
122
- 'ŏ' => 'ŏ',
123
- 'Ő' => 'Ő',
124
- 'ő' => 'ő',
125
- 'Ŕ' => 'Ŕ',
126
- 'ŕ' => 'ŕ',
127
- 'Ŗ' => 'Ŗ',
128
- 'ŗ' => 'ŗ',
129
- 'Ř' => 'Ř',
130
- 'ř' => 'ř',
131
- 'Ś' => 'Ś',
132
- 'ś' => 'ś',
133
- 'Ŝ' => 'Ŝ',
134
- 'ŝ' => 'ŝ',
135
- 'Ş' => 'Ş',
136
- 'ş' => 'ş',
137
- 'Š' => 'Š',
138
- 'š' => 'š',
139
- 'Ţ' => 'Ţ',
140
- 'ţ' => 'ţ',
141
- 'Ť' => 'Ť',
142
- 'ť' => 'ť',
143
- 'Ũ' => 'Ũ',
144
- 'ũ' => 'ũ',
145
- 'Ū' => 'Ū',
146
- 'ū' => 'ū',
147
- 'Ŭ' => 'Ŭ',
148
- 'ŭ' => 'ŭ',
149
- 'Ů' => 'Ů',
150
- 'ů' => 'ů',
151
- 'Ű' => 'Ű',
152
- 'ű' => 'ű',
153
- 'Ų' => 'Ų',
154
- 'ų' => 'ų',
155
- 'Ŵ' => 'Ŵ',
156
- 'ŵ' => 'ŵ',
157
- 'Ŷ' => 'Ŷ',
158
- 'ŷ' => 'ŷ',
159
- 'Ÿ' => 'Ÿ',
160
- 'Ź' => 'Ź',
161
- 'ź' => 'ź',
162
- 'Ż' => 'Ż',
163
- 'ż' => 'ż',
164
- 'Ž' => 'Ž',
165
- 'ž' => 'ž',
166
- 'Ơ' => 'Ơ',
167
- 'ơ' => 'ơ',
168
- 'Ư' => 'Ư',
169
- 'ư' => 'ư',
170
- 'Ǎ' => 'Ǎ',
171
- 'ǎ' => 'ǎ',
172
- 'Ǐ' => 'Ǐ',
173
- 'ǐ' => 'ǐ',
174
- 'Ǒ' => 'Ǒ',
175
- 'ǒ' => 'ǒ',
176
- 'Ǔ' => 'Ǔ',
177
- 'ǔ' => 'ǔ',
178
- 'Ǖ' => 'Ǖ',
179
- 'ǖ' => 'ǖ',
180
- 'Ǘ' => 'Ǘ',
181
- 'ǘ' => 'ǘ',
182
- 'Ǚ' => 'Ǚ',
183
- 'ǚ' => 'ǚ',
184
- 'Ǜ' => 'Ǜ',
185
- 'ǜ' => 'ǜ',
186
- 'Ǟ' => 'Ǟ',
187
- 'ǟ' => 'ǟ',
188
- 'Ǡ' => 'Ǡ',
189
- 'ǡ' => 'ǡ',
190
- 'Ǣ' => 'Ǣ',
191
- 'ǣ' => 'ǣ',
192
- 'Ǧ' => 'Ǧ',
193
- 'ǧ' => 'ǧ',
194
- 'Ǩ' => 'Ǩ',
195
- 'ǩ' => 'ǩ',
196
- 'Ǫ' => 'Ǫ',
197
- 'ǫ' => 'ǫ',
198
- 'Ǭ' => 'Ǭ',
199
- 'ǭ' => 'ǭ',
200
- 'Ǯ' => 'Ǯ',
201
- 'ǯ' => 'ǯ',
202
- 'ǰ' => 'ǰ',
203
- 'Ǵ' => 'Ǵ',
204
- 'ǵ' => 'ǵ',
205
- 'Ǹ' => 'Ǹ',
206
- 'ǹ' => 'ǹ',
207
- 'Ǻ' => 'Ǻ',
208
- 'ǻ' => 'ǻ',
209
- 'Ǽ' => 'Ǽ',
210
- 'ǽ' => 'ǽ',
211
- 'Ǿ' => 'Ǿ',
212
- 'ǿ' => 'ǿ',
213
- 'Ȁ' => 'Ȁ',
214
- 'ȁ' => 'ȁ',
215
- 'Ȃ' => 'Ȃ',
216
- 'ȃ' => 'ȃ',
217
- 'Ȅ' => 'Ȅ',
218
- 'ȅ' => 'ȅ',
219
- 'Ȇ' => 'Ȇ',
220
- 'ȇ' => 'ȇ',
221
- 'Ȉ' => 'Ȉ',
222
- 'ȉ' => 'ȉ',
223
- 'Ȋ' => 'Ȋ',
224
- 'ȋ' => 'ȋ',
225
- 'Ȍ' => 'Ȍ',
226
- 'ȍ' => 'ȍ',
227
- 'Ȏ' => 'Ȏ',
228
- 'ȏ' => 'ȏ',
229
- 'Ȑ' => 'Ȑ',
230
- 'ȑ' => 'ȑ',
231
- 'Ȓ' => 'Ȓ',
232
- 'ȓ' => 'ȓ',
233
- 'Ȕ' => 'Ȕ',
234
- 'ȕ' => 'ȕ',
235
- 'Ȗ' => 'Ȗ',
236
- 'ȗ' => 'ȗ',
237
- 'Ș' => 'Ș',
238
- 'ș' => 'ș',
239
- 'Ț' => 'Ț',
240
- 'ț' => 'ț',
241
- 'Ȟ' => 'Ȟ',
242
- 'ȟ' => 'ȟ',
243
- 'Ȧ' => 'Ȧ',
244
- 'ȧ' => 'ȧ',
245
- 'Ȩ' => 'Ȩ',
246
- 'ȩ' => 'ȩ',
247
- 'Ȫ' => 'Ȫ',
248
- 'ȫ' => 'ȫ',
249
- 'Ȭ' => 'Ȭ',
250
- 'ȭ' => 'ȭ',
251
- 'Ȯ' => 'Ȯ',
252
- 'ȯ' => 'ȯ',
253
- 'Ȱ' => 'Ȱ',
254
- 'ȱ' => 'ȱ',
255
- 'Ȳ' => 'Ȳ',
256
- 'ȳ' => 'ȳ',
257
- '΅' => '΅',
258
- 'Ά' => 'Ά',
259
- 'Έ' => 'Έ',
260
- 'Ή' => 'Ή',
261
- 'Ί' => 'Ί',
262
- 'Ό' => 'Ό',
263
- 'Ύ' => 'Ύ',
264
- 'Ώ' => 'Ώ',
265
- 'ΐ' => 'ΐ',
266
- 'Ϊ' => 'Ϊ',
267
- 'Ϋ' => 'Ϋ',
268
- 'ά' => 'ά',
269
- 'έ' => 'έ',
270
- 'ή' => 'ή',
271
- 'ί' => 'ί',
272
- 'ΰ' => 'ΰ',
273
- 'ϊ' => 'ϊ',
274
- 'ϋ' => 'ϋ',
275
- 'ό' => 'ό',
276
- 'ύ' => 'ύ',
277
- 'ώ' => 'ώ',
278
- 'ϓ' => 'ϓ',
279
- 'ϔ' => 'ϔ',
280
- 'Ѐ' => 'Ѐ',
281
- 'Ё' => 'Ё',
282
- 'Ѓ' => 'Ѓ',
283
- 'Ї' => 'Ї',
284
- 'Ќ' => 'Ќ',
285
- 'Ѝ' => 'Ѝ',
286
- 'Ў' => 'Ў',
287
- 'Й' => 'Й',
288
- 'й' => 'й',
289
- 'ѐ' => 'ѐ',
290
- 'ё' => 'ё',
291
- 'ѓ' => 'ѓ',
292
- 'ї' => 'ї',
293
- 'ќ' => 'ќ',
294
- 'ѝ' => 'ѝ',
295
- 'ў' => 'ў',
296
- 'Ѷ' => 'Ѷ',
297
- 'ѷ' => 'ѷ',
298
- 'Ӂ' => 'Ӂ',
299
- 'ӂ' => 'ӂ',
300
- 'Ӑ' => 'Ӑ',
301
- 'ӑ' => 'ӑ',
302
- 'Ӓ' => 'Ӓ',
303
- 'ӓ' => 'ӓ',
304
- 'Ӗ' => 'Ӗ',
305
- 'ӗ' => 'ӗ',
306
- 'Ӛ' => 'Ӛ',
307
- 'ӛ' => 'ӛ',
308
- 'Ӝ' => 'Ӝ',
309
- 'ӝ' => 'ӝ',
310
- 'Ӟ' => 'Ӟ',
311
- 'ӟ' => 'ӟ',
312
- 'Ӣ' => 'Ӣ',
313
- 'ӣ' => 'ӣ',
314
- 'Ӥ' => 'Ӥ',
315
- 'ӥ' => 'ӥ',
316
- 'Ӧ' => 'Ӧ',
317
- 'ӧ' => 'ӧ',
318
- 'Ӫ' => 'Ӫ',
319
- 'ӫ' => 'ӫ',
320
- 'Ӭ' => 'Ӭ',
321
- 'ӭ' => 'ӭ',
322
- 'Ӯ' => 'Ӯ',
323
- 'ӯ' => 'ӯ',
324
- 'Ӱ' => 'Ӱ',
325
- 'ӱ' => 'ӱ',
326
- 'Ӳ' => 'Ӳ',
327
- 'ӳ' => 'ӳ',
328
- 'Ӵ' => 'Ӵ',
329
- 'ӵ' => 'ӵ',
330
- 'Ӹ' => 'Ӹ',
331
- 'ӹ' => 'ӹ',
332
- 'آ' => 'آ',
333
- 'أ' => 'أ',
334
- 'ؤ' => 'ؤ',
335
- 'إ' => 'إ',
336
- 'ئ' => 'ئ',
337
- 'ۀ' => 'ۀ',
338
- 'ۂ' => 'ۂ',
339
- 'ۓ' => 'ۓ',
340
- 'ऩ' => 'ऩ',
341
- 'ऱ' => 'ऱ',
342
- 'ऴ' => 'ऴ',
343
- 'ো' => 'ো',
344
- 'ৌ' => 'ৌ',
345
- 'ୈ' => 'ୈ',
346
- 'ୋ' => 'ୋ',
347
- 'ୌ' => 'ୌ',
348
- 'ஔ' => 'ஔ',
349
- 'ொ' => 'ொ',
350
- 'ோ' => 'ோ',
351
- 'ௌ' => 'ௌ',
352
- 'ై' => 'ై',
353
- 'ೀ' => 'ೀ',
354
- 'ೇ' => 'ೇ',
355
- 'ೈ' => 'ೈ',
356
- 'ೊ' => 'ೊ',
357
- 'ೋ' => 'ೋ',
358
- 'ൊ' => 'ൊ',
359
- 'ോ' => 'ോ',
360
- 'ൌ' => 'ൌ',
361
- 'ේ' => 'ේ',
362
- 'ො' => 'ො',
363
- 'ෝ' => 'ෝ',
364
- 'ෞ' => 'ෞ',
365
- 'ဦ' => 'ဦ',
366
- 'ᬆ' => 'ᬆ',
367
- 'ᬈ' => 'ᬈ',
368
- 'ᬊ' => 'ᬊ',
369
- 'ᬌ' => 'ᬌ',
370
- 'ᬎ' => 'ᬎ',
371
- 'ᬒ' => 'ᬒ',
372
- 'ᬻ' => 'ᬻ',
373
- 'ᬽ' => 'ᬽ',
374
- 'ᭀ' => 'ᭀ',
375
- 'ᭁ' => 'ᭁ',
376
- 'ᭃ' => 'ᭃ',
377
- 'Ḁ' => 'Ḁ',
378
- 'ḁ' => 'ḁ',
379
- 'Ḃ' => 'Ḃ',
380
- 'ḃ' => 'ḃ',
381
- 'Ḅ' => 'Ḅ',
382
- 'ḅ' => 'ḅ',
383
- 'Ḇ' => 'Ḇ',
384
- 'ḇ' => 'ḇ',
385
- 'Ḉ' => 'Ḉ',
386
- 'ḉ' => 'ḉ',
387
- 'Ḋ' => 'Ḋ',
388
- 'ḋ' => 'ḋ',
389
- 'Ḍ' => 'Ḍ',
390
- 'ḍ' => 'ḍ',
391
- 'Ḏ' => 'Ḏ',
392
- 'ḏ' => 'ḏ',
393
- 'Ḑ' => 'Ḑ',
394
- 'ḑ' => 'ḑ',
395
- 'Ḓ' => 'Ḓ',
396
- 'ḓ' => 'ḓ',
397
- 'Ḕ' => 'Ḕ',
398
- 'ḕ' => 'ḕ',
399
- 'Ḗ' => 'Ḗ',
400
- 'ḗ' => 'ḗ',
401
- 'Ḙ' => 'Ḙ',
402
- 'ḙ' => 'ḙ',
403
- 'Ḛ' => 'Ḛ',
404
- 'ḛ' => 'ḛ',
405
- 'Ḝ' => 'Ḝ',
406
- 'ḝ' => 'ḝ',
407
- 'Ḟ' => 'Ḟ',
408
- 'ḟ' => 'ḟ',
409
- 'Ḡ' => 'Ḡ',
410
- 'ḡ' => 'ḡ',
411
- 'Ḣ' => 'Ḣ',
412
- 'ḣ' => 'ḣ',
413
- 'Ḥ' => 'Ḥ',
414
- 'ḥ' => 'ḥ',
415
- 'Ḧ' => 'Ḧ',
416
- 'ḧ' => 'ḧ',
417
- 'Ḩ' => 'Ḩ',
418
- 'ḩ' => 'ḩ',
419
- 'Ḫ' => 'Ḫ',
420
- 'ḫ' => 'ḫ',
421
- 'Ḭ' => 'Ḭ',
422
- 'ḭ' => 'ḭ',
423
- 'Ḯ' => 'Ḯ',
424
- 'ḯ' => 'ḯ',
425
- 'Ḱ' => 'Ḱ',
426
- 'ḱ' => 'ḱ',
427
- 'Ḳ' => 'Ḳ',
428
- 'ḳ' => 'ḳ',
429
- 'Ḵ' => 'Ḵ',
430
- 'ḵ' => 'ḵ',
431
- 'Ḷ' => 'Ḷ',
432
- 'ḷ' => 'ḷ',
433
- 'Ḹ' => 'Ḹ',
434
- 'ḹ' => 'ḹ',
435
- 'Ḻ' => 'Ḻ',
436
- 'ḻ' => 'ḻ',
437
- 'Ḽ' => 'Ḽ',
438
- 'ḽ' => 'ḽ',
439
- 'Ḿ' => 'Ḿ',
440
- 'ḿ' => 'ḿ',
441
- 'Ṁ' => 'Ṁ',
442
- 'ṁ' => 'ṁ',
443
- 'Ṃ' => 'Ṃ',
444
- 'ṃ' => 'ṃ',
445
- 'Ṅ' => 'Ṅ',
446
- 'ṅ' => 'ṅ',
447
- 'Ṇ' => 'Ṇ',
448
- 'ṇ' => 'ṇ',
449
- 'Ṉ' => 'Ṉ',
450
- 'ṉ' => 'ṉ',
451
- 'Ṋ' => 'Ṋ',
452
- 'ṋ' => 'ṋ',
453
- 'Ṍ' => 'Ṍ',
454
- 'ṍ' => 'ṍ',
455
- 'Ṏ' => 'Ṏ',
456
- 'ṏ' => 'ṏ',
457
- 'Ṑ' => 'Ṑ',
458
- 'ṑ' => 'ṑ',
459
- 'Ṓ' => 'Ṓ',
460
- 'ṓ' => 'ṓ',
461
- 'Ṕ' => 'Ṕ',
462
- 'ṕ' => 'ṕ',
463
- 'Ṗ' => 'Ṗ',
464
- 'ṗ' => 'ṗ',
465
- 'Ṙ' => 'Ṙ',
466
- 'ṙ' => 'ṙ',
467
- 'Ṛ' => 'Ṛ',
468
- 'ṛ' => 'ṛ',
469
- 'Ṝ' => 'Ṝ',
470
- 'ṝ' => 'ṝ',
471
- 'Ṟ' => 'Ṟ',
472
- 'ṟ' => 'ṟ',
473
- 'Ṡ' => 'Ṡ',
474
- 'ṡ' => 'ṡ',
475
- 'Ṣ' => 'Ṣ',
476
- 'ṣ' => 'ṣ',
477
- 'Ṥ' => 'Ṥ',
478
- 'ṥ' => 'ṥ',
479
- 'Ṧ' => 'Ṧ',
480
- 'ṧ' => 'ṧ',
481
- 'Ṩ' => 'Ṩ',
482
- 'ṩ' => 'ṩ',
483
- 'Ṫ' => 'Ṫ',
484
- 'ṫ' => 'ṫ',
485
- 'Ṭ' => 'Ṭ',
486
- 'ṭ' => 'ṭ',
487
- 'Ṯ' => 'Ṯ',
488
- 'ṯ' => 'ṯ',
489
- 'Ṱ' => 'Ṱ',
490
- 'ṱ' => 'ṱ',
491
- 'Ṳ' => 'Ṳ',
492
- 'ṳ' => 'ṳ',
493
- 'Ṵ' => 'Ṵ',
494
- 'ṵ' => 'ṵ',
495
- 'Ṷ' => 'Ṷ',
496
- 'ṷ' => 'ṷ',
497
- 'Ṹ' => 'Ṹ',
498
- 'ṹ' => 'ṹ',
499
- 'Ṻ' => 'Ṻ',
500
- 'ṻ' => 'ṻ',
501
- 'Ṽ' => 'Ṽ',
502
- 'ṽ' => 'ṽ',
503
- 'Ṿ' => 'Ṿ',
504
- 'ṿ' => 'ṿ',
505
- 'Ẁ' => 'Ẁ',
506
- 'ẁ' => 'ẁ',
507
- 'Ẃ' => 'Ẃ',
508
- 'ẃ' => 'ẃ',
509
- 'Ẅ' => 'Ẅ',
510
- 'ẅ' => 'ẅ',
511
- 'Ẇ' => 'Ẇ',
512
- 'ẇ' => 'ẇ',
513
- 'Ẉ' => 'Ẉ',
514
- 'ẉ' => 'ẉ',
515
- 'Ẋ' => 'Ẋ',
516
- 'ẋ' => 'ẋ',
517
- 'Ẍ' => 'Ẍ',
518
- 'ẍ' => 'ẍ',
519
- 'Ẏ' => 'Ẏ',
520
- 'ẏ' => 'ẏ',
521
- 'Ẑ' => 'Ẑ',
522
- 'ẑ' => 'ẑ',
523
- 'Ẓ' => 'Ẓ',
524
- 'ẓ' => 'ẓ',
525
- 'Ẕ' => 'Ẕ',
526
- 'ẕ' => 'ẕ',
527
- 'ẖ' => 'ẖ',
528
- 'ẗ' => 'ẗ',
529
- 'ẘ' => 'ẘ',
530
- 'ẙ' => 'ẙ',
531
- 'ẛ' => 'ẛ',
532
- 'Ạ' => 'Ạ',
533
- 'ạ' => 'ạ',
534
- 'Ả' => 'Ả',
535
- 'ả' => 'ả',
536
- 'Ấ' => 'Ấ',
537
- 'ấ' => 'ấ',
538
- 'Ầ' => 'Ầ',
539
- 'ầ' => 'ầ',
540
- 'Ẩ' => 'Ẩ',
541
- 'ẩ' => 'ẩ',
542
- 'Ẫ' => 'Ẫ',
543
- 'ẫ' => 'ẫ',
544
- 'Ậ' => 'Ậ',
545
- 'ậ' => 'ậ',
546
- 'Ắ' => 'Ắ',
547
- 'ắ' => 'ắ',
548
- 'Ằ' => 'Ằ',
549
- 'ằ' => 'ằ',
550
- 'Ẳ' => 'Ẳ',
551
- 'ẳ' => 'ẳ',
552
- 'Ẵ' => 'Ẵ',
553
- 'ẵ' => 'ẵ',
554
- 'Ặ' => 'Ặ',
555
- 'ặ' => 'ặ',
556
- 'Ẹ' => 'Ẹ',
557
- 'ẹ' => 'ẹ',
558
- 'Ẻ' => 'Ẻ',
559
- 'ẻ' => 'ẻ',
560
- 'Ẽ' => 'Ẽ',
561
- 'ẽ' => 'ẽ',
562
- 'Ế' => 'Ế',
563
- 'ế' => 'ế',
564
- 'Ề' => 'Ề',
565
- 'ề' => 'ề',
566
- 'Ể' => 'Ể',
567
- 'ể' => 'ể',
568
- 'Ễ' => 'Ễ',
569
- 'ễ' => 'ễ',
570
- 'Ệ' => 'Ệ',
571
- 'ệ' => 'ệ',
572
- 'Ỉ' => 'Ỉ',
573
- 'ỉ' => 'ỉ',
574
- 'Ị' => 'Ị',
575
- 'ị' => 'ị',
576
- 'Ọ' => 'Ọ',
577
- 'ọ' => 'ọ',
578
- 'Ỏ' => 'Ỏ',
579
- 'ỏ' => 'ỏ',
580
- 'Ố' => 'Ố',
581
- 'ố' => 'ố',
582
- 'Ồ' => 'Ồ',
583
- 'ồ' => 'ồ',
584
- 'Ổ' => 'Ổ',
585
- 'ổ' => 'ổ',
586
- 'Ỗ' => 'Ỗ',
587
- 'ỗ' => 'ỗ',
588
- 'Ộ' => 'Ộ',
589
- 'ộ' => 'ộ',
590
- 'Ớ' => 'Ớ',
591
- 'ớ' => 'ớ',
592
- 'Ờ' => 'Ờ',
593
- 'ờ' => 'ờ',
594
- 'Ở' => 'Ở',
595
- 'ở' => 'ở',
596
- 'Ỡ' => 'Ỡ',
597
- 'ỡ' => 'ỡ',
598
- 'Ợ' => 'Ợ',
599
- 'ợ' => 'ợ',
600
- 'Ụ' => 'Ụ',
601
- 'ụ' => 'ụ',
602
- 'Ủ' => 'Ủ',
603
- 'ủ' => 'ủ',
604
- 'Ứ' => 'Ứ',
605
- 'ứ' => 'ứ',
606
- 'Ừ' => 'Ừ',
607
- 'ừ' => 'ừ',
608
- 'Ử' => 'Ử',
609
- 'ử' => 'ử',
610
- 'Ữ' => 'Ữ',
611
- 'ữ' => 'ữ',
612
- 'Ự' => 'Ự',
613
- 'ự' => 'ự',
614
- 'Ỳ' => 'Ỳ',
615
- 'ỳ' => 'ỳ',
616
- 'Ỵ' => 'Ỵ',
617
- 'ỵ' => 'ỵ',
618
- 'Ỷ' => 'Ỷ',
619
- 'ỷ' => 'ỷ',
620
- 'Ỹ' => 'Ỹ',
621
- 'ỹ' => 'ỹ',
622
- 'ἀ' => 'ἀ',
623
- 'ἁ' => 'ἁ',
624
- 'ἂ' => 'ἂ',
625
- 'ἃ' => 'ἃ',
626
- 'ἄ' => 'ἄ',
627
- 'ἅ' => 'ἅ',
628
- 'ἆ' => 'ἆ',
629
- 'ἇ' => 'ἇ',
630
- 'Ἀ' => 'Ἀ',
631
- 'Ἁ' => 'Ἁ',
632
- 'Ἂ' => 'Ἂ',
633
- 'Ἃ' => 'Ἃ',
634
- 'Ἄ' => 'Ἄ',
635
- 'Ἅ' => 'Ἅ',
636
- 'Ἆ' => 'Ἆ',
637
- 'Ἇ' => 'Ἇ',
638
- 'ἐ' => 'ἐ',
639
- 'ἑ' => 'ἑ',
640
- 'ἒ' => 'ἒ',
641
- 'ἓ' => 'ἓ',
642
- 'ἔ' => 'ἔ',
643
- 'ἕ' => 'ἕ',
644
- 'Ἐ' => 'Ἐ',
645
- 'Ἑ' => 'Ἑ',
646
- 'Ἒ' => 'Ἒ',
647
- 'Ἓ' => 'Ἓ',
648
- 'Ἔ' => 'Ἔ',
649
- 'Ἕ' => 'Ἕ',
650
- 'ἠ' => 'ἠ',
651
- 'ἡ' => 'ἡ',
652
- 'ἢ' => 'ἢ',
653
- 'ἣ' => 'ἣ',
654
- 'ἤ' => 'ἤ',
655
- 'ἥ' => 'ἥ',
656
- 'ἦ' => 'ἦ',
657
- 'ἧ' => 'ἧ',
658
- 'Ἠ' => 'Ἠ',
659
- 'Ἡ' => 'Ἡ',
660
- 'Ἢ' => 'Ἢ',
661
- 'Ἣ' => 'Ἣ',
662
- 'Ἤ' => 'Ἤ',
663
- 'Ἥ' => 'Ἥ',
664
- 'Ἦ' => 'Ἦ',
665
- 'Ἧ' => 'Ἧ',
666
- 'ἰ' => 'ἰ',
667
- 'ἱ' => 'ἱ',
668
- 'ἲ' => 'ἲ',
669
- 'ἳ' => 'ἳ',
670
- 'ἴ' => 'ἴ',
671
- 'ἵ' => 'ἵ',
672
- 'ἶ' => 'ἶ',
673
- 'ἷ' => 'ἷ',
674
- 'Ἰ' => 'Ἰ',
675
- 'Ἱ' => 'Ἱ',
676
- 'Ἲ' => 'Ἲ',
677
- 'Ἳ' => 'Ἳ',
678
- 'Ἴ' => 'Ἴ',
679
- 'Ἵ' => 'Ἵ',
680
- 'Ἶ' => 'Ἶ',
681
- 'Ἷ' => 'Ἷ',
682
- 'ὀ' => 'ὀ',
683
- 'ὁ' => 'ὁ',
684
- 'ὂ' => 'ὂ',
685
- 'ὃ' => 'ὃ',
686
- 'ὄ' => 'ὄ',
687
- 'ὅ' => 'ὅ',
688
- 'Ὀ' => 'Ὀ',
689
- 'Ὁ' => 'Ὁ',
690
- 'Ὂ' => 'Ὂ',
691
- 'Ὃ' => 'Ὃ',
692
- 'Ὄ' => 'Ὄ',
693
- 'Ὅ' => 'Ὅ',
694
- 'ὐ' => 'ὐ',
695
- 'ὑ' => 'ὑ',
696
- 'ὒ' => 'ὒ',
697
- 'ὓ' => 'ὓ',
698
- 'ὔ' => 'ὔ',
699
- 'ὕ' => 'ὕ',
700
- 'ὖ' => 'ὖ',
701
- 'ὗ' => 'ὗ',
702
- 'Ὑ' => 'Ὑ',
703
- 'Ὓ' => 'Ὓ',
704
- 'Ὕ' => 'Ὕ',
705
- 'Ὗ' => 'Ὗ',
706
- 'ὠ' => 'ὠ',
707
- 'ὡ' => 'ὡ',
708
- 'ὢ' => 'ὢ',
709
- 'ὣ' => 'ὣ',
710
- 'ὤ' => 'ὤ',
711
- 'ὥ' => 'ὥ',
712
- 'ὦ' => 'ὦ',
713
- 'ὧ' => 'ὧ',
714
- 'Ὠ' => 'Ὠ',
715
- 'Ὡ' => 'Ὡ',
716
- 'Ὢ' => 'Ὢ',
717
- 'Ὣ' => 'Ὣ',
718
- 'Ὤ' => 'Ὤ',
719
- 'Ὥ' => 'Ὥ',
720
- 'Ὦ' => 'Ὦ',
721
- 'Ὧ' => 'Ὧ',
722
- 'ὰ' => 'ὰ',
723
- 'ὲ' => 'ὲ',
724
- 'ὴ' => 'ὴ',
725
- 'ὶ' => 'ὶ',
726
- 'ὸ' => 'ὸ',
727
- 'ὺ' => 'ὺ',
728
- 'ὼ' => 'ὼ',
729
- 'ᾀ' => 'ᾀ',
730
- 'ᾁ' => 'ᾁ',
731
- 'ᾂ' => 'ᾂ',
732
- 'ᾃ' => 'ᾃ',
733
- 'ᾄ' => 'ᾄ',
734
- 'ᾅ' => 'ᾅ',
735
- 'ᾆ' => 'ᾆ',
736
- 'ᾇ' => 'ᾇ',
737
- 'ᾈ' => 'ᾈ',
738
- 'ᾉ' => 'ᾉ',
739
- 'ᾊ' => 'ᾊ',
740
- 'ᾋ' => 'ᾋ',
741
- 'ᾌ' => 'ᾌ',
742
- 'ᾍ' => 'ᾍ',
743
- 'ᾎ' => 'ᾎ',
744
- 'ᾏ' => 'ᾏ',
745
- 'ᾐ' => 'ᾐ',
746
- 'ᾑ' => 'ᾑ',
747
- 'ᾒ' => 'ᾒ',
748
- 'ᾓ' => 'ᾓ',
749
- 'ᾔ' => 'ᾔ',
750
- 'ᾕ' => 'ᾕ',
751
- 'ᾖ' => 'ᾖ',
752
- 'ᾗ' => 'ᾗ',
753
- 'ᾘ' => 'ᾘ',
754
- 'ᾙ' => 'ᾙ',
755
- 'ᾚ' => 'ᾚ',
756
- 'ᾛ' => 'ᾛ',
757
- 'ᾜ' => 'ᾜ',
758
- 'ᾝ' => 'ᾝ',
759
- 'ᾞ' => 'ᾞ',
760
- 'ᾟ' => 'ᾟ',
761
- 'ᾠ' => 'ᾠ',
762
- 'ᾡ' => 'ᾡ',
763
- 'ᾢ' => 'ᾢ',
764
- 'ᾣ' => 'ᾣ',
765
- 'ᾤ' => 'ᾤ',
766
- 'ᾥ' => 'ᾥ',
767
- 'ᾦ' => 'ᾦ',
768
- 'ᾧ' => 'ᾧ',
769
- 'ᾨ' => 'ᾨ',
770
- 'ᾩ' => 'ᾩ',
771
- 'ᾪ' => 'ᾪ',
772
- 'ᾫ' => 'ᾫ',
773
- 'ᾬ' => 'ᾬ',
774
- 'ᾭ' => 'ᾭ',
775
- 'ᾮ' => 'ᾮ',
776
- 'ᾯ' => 'ᾯ',
777
- 'ᾰ' => 'ᾰ',
778
- 'ᾱ' => 'ᾱ',
779
- 'ᾲ' => 'ᾲ',
780
- 'ᾳ' => 'ᾳ',
781
- 'ᾴ' => 'ᾴ',
782
- 'ᾶ' => 'ᾶ',
783
- 'ᾷ' => 'ᾷ',
784
- 'Ᾰ' => 'Ᾰ',
785
- 'Ᾱ' => 'Ᾱ',
786
- 'Ὰ' => 'Ὰ',
787
- 'ᾼ' => 'ᾼ',
788
- '῁' => '῁',
789
- 'ῂ' => 'ῂ',
790
- 'ῃ' => 'ῃ',
791
- 'ῄ' => 'ῄ',
792
- 'ῆ' => 'ῆ',
793
- 'ῇ' => 'ῇ',
794
- 'Ὲ' => 'Ὲ',
795
- 'Ὴ' => 'Ὴ',
796
- 'ῌ' => 'ῌ',
797
- '῍' => '῍',
798
- '῎' => '῎',
799
- '῏' => '῏',
800
- 'ῐ' => 'ῐ',
801
- 'ῑ' => 'ῑ',
802
- 'ῒ' => 'ῒ',
803
- 'ῖ' => 'ῖ',
804
- 'ῗ' => 'ῗ',
805
- 'Ῐ' => 'Ῐ',
806
- 'Ῑ' => 'Ῑ',
807
- 'Ὶ' => 'Ὶ',
808
- '῝' => '῝',
809
- '῞' => '῞',
810
- '῟' => '῟',
811
- 'ῠ' => 'ῠ',
812
- 'ῡ' => 'ῡ',
813
- 'ῢ' => 'ῢ',
814
- 'ῤ' => 'ῤ',
815
- 'ῥ' => 'ῥ',
816
- 'ῦ' => 'ῦ',
817
- 'ῧ' => 'ῧ',
818
- 'Ῠ' => 'Ῠ',
819
- 'Ῡ' => 'Ῡ',
820
- 'Ὺ' => 'Ὺ',
821
- 'Ῥ' => 'Ῥ',
822
- '῭' => '῭',
823
- 'ῲ' => 'ῲ',
824
- 'ῳ' => 'ῳ',
825
- 'ῴ' => 'ῴ',
826
- 'ῶ' => 'ῶ',
827
- 'ῷ' => 'ῷ',
828
- 'Ὸ' => 'Ὸ',
829
- 'Ὼ' => 'Ὼ',
830
- 'ῼ' => 'ῼ',
831
- '↚' => '↚',
832
- '↛' => '↛',
833
- '↮' => '↮',
834
- '⇍' => '⇍',
835
- '⇎' => '⇎',
836
- '⇏' => '⇏',
837
- '∄' => '∄',
838
- '∉' => '∉',
839
- '∌' => '∌',
840
- '∤' => '∤',
841
- '∦' => '∦',
842
- '≁' => '≁',
843
- '≄' => '≄',
844
- '≇' => '≇',
845
- '≉' => '≉',
846
- '≠' => '≠',
847
- '≢' => '≢',
848
- '≭' => '≭',
849
- '≮' => '≮',
850
- '≯' => '≯',
851
- '≰' => '≰',
852
- '≱' => '≱',
853
- '≴' => '≴',
854
- '≵' => '≵',
855
- '≸' => '≸',
856
- '≹' => '≹',
857
- '⊀' => '⊀',
858
- '⊁' => '⊁',
859
- '⊄' => '⊄',
860
- '⊅' => '⊅',
861
- '⊈' => '⊈',
862
- '⊉' => '⊉',
863
- '⊬' => '⊬',
864
- '⊭' => '⊭',
865
- '⊮' => '⊮',
866
- '⊯' => '⊯',
867
- '⋠' => '⋠',
868
- '⋡' => '⋡',
869
- '⋢' => '⋢',
870
- '⋣' => '⋣',
871
- '⋪' => '⋪',
872
- '⋫' => '⋫',
873
- '⋬' => '⋬',
874
- '⋭' => '⋭',
875
- 'が' => 'が',
876
- 'ぎ' => 'ぎ',
877
- 'ぐ' => 'ぐ',
878
- 'げ' => 'げ',
879
- 'ご' => 'ご',
880
- 'ざ' => 'ざ',
881
- 'じ' => 'じ',
882
- 'ず' => 'ず',
883
- 'ぜ' => 'ぜ',
884
- 'ぞ' => 'ぞ',
885
- 'だ' => 'だ',
886
- 'ぢ' => 'ぢ',
887
- 'づ' => 'づ',
888
- 'で' => 'で',
889
- 'ど' => 'ど',
890
- 'ば' => 'ば',
891
- 'ぱ' => 'ぱ',
892
- 'び' => 'び',
893
- 'ぴ' => 'ぴ',
894
- 'ぶ' => 'ぶ',
895
- 'ぷ' => 'ぷ',
896
- 'べ' => 'べ',
897
- 'ぺ' => 'ぺ',
898
- 'ぼ' => 'ぼ',
899
- 'ぽ' => 'ぽ',
900
- 'ゔ' => 'ゔ',
901
- 'ゞ' => 'ゞ',
902
- 'ガ' => 'ガ',
903
- 'ギ' => 'ギ',
904
- 'グ' => 'グ',
905
- 'ゲ' => 'ゲ',
906
- 'ゴ' => 'ゴ',
907
- 'ザ' => 'ザ',
908
- 'ジ' => 'ジ',
909
- 'ズ' => 'ズ',
910
- 'ゼ' => 'ゼ',
911
- 'ゾ' => 'ゾ',
912
- 'ダ' => 'ダ',
913
- 'ヂ' => 'ヂ',
914
- 'ヅ' => 'ヅ',
915
- 'デ' => 'デ',
916
- 'ド' => 'ド',
917
- 'バ' => 'バ',
918
- 'パ' => 'パ',
919
- 'ビ' => 'ビ',
920
- 'ピ' => 'ピ',
921
- 'ブ' => 'ブ',
922
- 'プ' => 'プ',
923
- 'ベ' => 'ベ',
924
- 'ペ' => 'ペ',
925
- 'ボ' => 'ボ',
926
- 'ポ' => 'ポ',
927
- 'ヴ' => 'ヴ',
928
- 'ヷ' => 'ヷ',
929
- 'ヸ' => 'ヸ',
930
- 'ヹ' => 'ヹ',
931
- 'ヺ' => 'ヺ',
932
- 'ヾ' => 'ヾ',
933
- '𑂚' => '𑂚',
934
- '𑂜' => '𑂜',
935
- '𑂫' => '𑂫',
936
- '𑄮' => '𑄮',
937
- '𑄯' => '𑄯',
938
- '𑍋' => '𑍋',
939
- '𑍌' => '𑍌',
940
- '𑒻' => '𑒻',
941
- '𑒼' => '𑒼',
942
- '𑒾' => '𑒾',
943
- '𑖺' => '𑖺',
944
- '𑖻' => '𑖻',
945
- '𑤸' => '𑤸',
946
- ];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Polyfills/Resources/unidata/canonicalDecomposition.php DELETED
@@ -1,2066 +0,0 @@
1
- <?php
2
- // phpcs:ignoreFile
3
-
4
- return [
5
- 'À' => 'À',
6
- 'Á' => 'Á',
7
- 'Â' => 'Â',
8
- 'Ã' => 'Ã',
9
- 'Ä' => 'Ä',
10
- 'Å' => 'Å',
11
- 'Ç' => 'Ç',
12
- 'È' => 'È',
13
- 'É' => 'É',
14
- 'Ê' => 'Ê',
15
- 'Ë' => 'Ë',
16
- 'Ì' => 'Ì',
17
- 'Í' => 'Í',
18
- 'Î' => 'Î',
19
- 'Ï' => 'Ï',
20
- 'Ñ' => 'Ñ',
21
- 'Ò' => 'Ò',
22
- 'Ó' => 'Ó',
23
- 'Ô' => 'Ô',
24
- 'Õ' => 'Õ',
25
- 'Ö' => 'Ö',
26
- 'Ù' => 'Ù',
27
- 'Ú' => 'Ú',
28
- 'Û' => 'Û',
29
- 'Ü' => 'Ü',
30
- 'Ý' => 'Ý',
31
- 'à' => 'à',
32
- 'á' => 'á',
33
- 'â' => 'â',
34
- 'ã' => 'ã',
35
- 'ä' => 'ä',
36
- 'å' => 'å',
37
- 'ç' => 'ç',
38
- 'è' => 'è',
39
- 'é' => 'é',
40
- 'ê' => 'ê',
41
- 'ë' => 'ë',
42
- 'ì' => 'ì',
43
- 'í' => 'í',
44
- 'î' => 'î',
45
- 'ï' => 'ï',
46
- 'ñ' => 'ñ',
47
- 'ò' => 'ò',
48
- 'ó' => 'ó',
49
- 'ô' => 'ô',
50
- 'õ' => 'õ',
51
- 'ö' => 'ö',
52
- 'ù' => 'ù',
53
- 'ú' => 'ú',
54
- 'û' => 'û',
55
- 'ü' => 'ü',
56
- 'ý' => 'ý',
57
- 'ÿ' => 'ÿ',
58
- 'Ā' => 'Ā',
59
- 'ā' => 'ā',
60
- 'Ă' => 'Ă',
61
- 'ă' => 'ă',
62
- 'Ą' => 'Ą',
63
- 'ą' => 'ą',
64
- 'Ć' => 'Ć',
65
- 'ć' => 'ć',
66
- 'Ĉ' => 'Ĉ',
67
- 'ĉ' => 'ĉ',
68
- 'Ċ' => 'Ċ',
69
- 'ċ' => 'ċ',
70
- 'Č' => 'Č',
71
- 'č' => 'č',
72
- 'Ď' => 'Ď',
73
- 'ď' => 'ď',
74
- 'Ē' => 'Ē',
75
- 'ē' => 'ē',
76
- 'Ĕ' => 'Ĕ',
77
- 'ĕ' => 'ĕ',
78
- 'Ė' => 'Ė',
79
- 'ė' => 'ė',
80
- 'Ę' => 'Ę',
81
- 'ę' => 'ę',
82
- 'Ě' => 'Ě',
83
- 'ě' => 'ě',
84
- 'Ĝ' => 'Ĝ',
85
- 'ĝ' => 'ĝ',
86
- 'Ğ' => 'Ğ',
87
- 'ğ' => 'ğ',
88
- 'Ġ' => 'Ġ',
89
- 'ġ' => 'ġ',
90
- 'Ģ' => 'Ģ',
91
- 'ģ' => 'ģ',
92
- 'Ĥ' => 'Ĥ',
93
- 'ĥ' => 'ĥ',
94
- 'Ĩ' => 'Ĩ',
95
- 'ĩ' => 'ĩ',
96
- 'Ī' => 'Ī',
97
- 'ī' => 'ī',
98
- 'Ĭ' => 'Ĭ',
99
- 'ĭ' => 'ĭ',
100
- 'Į' => 'Į',
101
- 'į' => 'į',
102
- 'İ' => 'İ',
103
- 'Ĵ' => 'Ĵ',
104
- 'ĵ' => 'ĵ',
105
- 'Ķ' => 'Ķ',
106
- 'ķ' => 'ķ',
107
- 'Ĺ' => 'Ĺ',
108
- 'ĺ' => 'ĺ',
109
- 'Ļ' => 'Ļ',
110
- 'ļ' => 'ļ',
111
- 'Ľ' => 'Ľ',
112
- 'ľ' => 'ľ',
113
- 'Ń' => 'Ń',
114
- 'ń' => 'ń',
115
- 'Ņ' => 'Ņ',
116
- 'ņ' => 'ņ',
117
- 'Ň' => 'Ň',
118
- 'ň' => 'ň',
119
- 'Ō' => 'Ō',
120
- 'ō' => 'ō',
121
- 'Ŏ' => 'Ŏ',
122
- 'ŏ' => 'ŏ',
123
- 'Ő' => 'Ő',
124
- 'ő' => 'ő',
125
- 'Ŕ' => 'Ŕ',
126
- 'ŕ' => 'ŕ',
127
- 'Ŗ' => 'Ŗ',
128
- 'ŗ' => 'ŗ',
129
- 'Ř' => 'Ř',
130
- 'ř' => 'ř',
131
- 'Ś' => 'Ś',
132
- 'ś' => 'ś',
133
- 'Ŝ' => 'Ŝ',
134
- 'ŝ' => 'ŝ',
135
- 'Ş' => 'Ş',
136
- 'ş' => 'ş',
137
- 'Š' => 'Š',
138
- 'š' => 'š',
139
- 'Ţ' => 'Ţ',
140
- 'ţ' => 'ţ',
141
- 'Ť' => 'Ť',
142
- 'ť' => 'ť',
143
- 'Ũ' => 'Ũ',
144
- 'ũ' => 'ũ',
145
- 'Ū' => 'Ū',
146
- 'ū' => 'ū',
147
- 'Ŭ' => 'Ŭ',
148
- 'ŭ' => 'ŭ',
149
- 'Ů' => 'Ů',
150
- 'ů' => 'ů',
151
- 'Ű' => 'Ű',
152
- 'ű' => 'ű',
153
- 'Ų' => 'Ų',
154
- 'ų' => 'ų',
155
- 'Ŵ' => 'Ŵ',
156
- 'ŵ' => 'ŵ',
157
- 'Ŷ' => 'Ŷ',
158
- 'ŷ' => 'ŷ',
159
- 'Ÿ' => 'Ÿ',
160
- 'Ź' => 'Ź',
161
- 'ź' => 'ź',
162
- 'Ż' => 'Ż',
163
- 'ż' => 'ż',
164
- 'Ž' => 'Ž',
165
- 'ž' => 'ž',
166
- 'Ơ' => 'Ơ',
167
- 'ơ' => 'ơ',
168
- 'Ư' => 'Ư',
169
- 'ư' => 'ư',
170
- 'Ǎ' => 'Ǎ',
171
- 'ǎ' => 'ǎ',
172
- 'Ǐ' => 'Ǐ',
173
- 'ǐ' => 'ǐ',
174
- 'Ǒ' => 'Ǒ',
175
- 'ǒ' => 'ǒ',
176
- 'Ǔ' => 'Ǔ',
177
- 'ǔ' => 'ǔ',
178
- 'Ǖ' => 'Ǖ',
179
- 'ǖ' => 'ǖ',
180
- 'Ǘ' => 'Ǘ',
181
- 'ǘ' => 'ǘ',
182
- 'Ǚ' => 'Ǚ',
183
- 'ǚ' => 'ǚ',
184
- 'Ǜ' => 'Ǜ',
185
- 'ǜ' => 'ǜ',
186
- 'Ǟ' => 'Ǟ',
187
- 'ǟ' => 'ǟ',
188
- 'Ǡ' => 'Ǡ',
189
- 'ǡ' => 'ǡ',
190
- 'Ǣ' => 'Ǣ',
191
- 'ǣ' => 'ǣ',
192
- 'Ǧ' => 'Ǧ',
193
- 'ǧ' => 'ǧ',
194
- 'Ǩ' => 'Ǩ',
195
- 'ǩ' => 'ǩ',
196
- 'Ǫ' => 'Ǫ',
197
- 'ǫ' => 'ǫ',
198
- 'Ǭ' => 'Ǭ',
199
- 'ǭ' => 'ǭ',
200
- 'Ǯ' => 'Ǯ',
201
- 'ǯ' => 'ǯ',
202
- 'ǰ' => 'ǰ',
203
- 'Ǵ' => 'Ǵ',
204
- 'ǵ' => 'ǵ',
205
- 'Ǹ' => 'Ǹ',
206
- 'ǹ' => 'ǹ',
207
- 'Ǻ' => 'Ǻ',
208
- 'ǻ' => 'ǻ',
209
- 'Ǽ' => 'Ǽ',
210
- 'ǽ' => 'ǽ',
211
- 'Ǿ' => 'Ǿ',
212
- 'ǿ' => 'ǿ',
213
- 'Ȁ' => 'Ȁ',
214
- 'ȁ' => 'ȁ',
215
- 'Ȃ' => 'Ȃ',
216
- 'ȃ' => 'ȃ',
217
- 'Ȅ' => 'Ȅ',
218
- 'ȅ' => 'ȅ',
219
- 'Ȇ' => 'Ȇ',
220
- 'ȇ' => 'ȇ',
221
- 'Ȉ' => 'Ȉ',
222
- 'ȉ' => 'ȉ',
223
- 'Ȋ' => 'Ȋ',
224
- 'ȋ' => 'ȋ',
225
- 'Ȍ' => 'Ȍ',
226
- 'ȍ' => 'ȍ',
227
- 'Ȏ' => 'Ȏ',
228
- 'ȏ' => 'ȏ',
229
- 'Ȑ' => 'Ȑ',
230
- 'ȑ' => 'ȑ',
231
- 'Ȓ' => 'Ȓ',
232
- 'ȓ' => 'ȓ',
233
- 'Ȕ' => 'Ȕ',
234
- 'ȕ' => 'ȕ',
235
- 'Ȗ' => 'Ȗ',
236
- 'ȗ' => 'ȗ',
237
- 'Ș' => 'Ș',
238
- 'ș' => 'ș',
239
- 'Ț' => 'Ț',
240
- 'ț' => 'ț',
241
- 'Ȟ' => 'Ȟ',
242
- 'ȟ' => 'ȟ',
243
- 'Ȧ' => 'Ȧ',
244
- 'ȧ' => 'ȧ',
245
- 'Ȩ' => 'Ȩ',
246
- 'ȩ' => 'ȩ',
247
- 'Ȫ' => 'Ȫ',
248
- 'ȫ' => 'ȫ',
249
- 'Ȭ' => 'Ȭ',
250
- 'ȭ' => 'ȭ',
251
- 'Ȯ' => 'Ȯ',
252
- 'ȯ' => 'ȯ',
253
- 'Ȱ' => 'Ȱ',
254
- 'ȱ' => 'ȱ',
255
- 'Ȳ' => 'Ȳ',
256
- 'ȳ' => 'ȳ',
257
- '̀' => '̀',
258
- '́' => '́',
259
- '̓' => '̓',
260
- '̈́' => '̈́',
261
- 'ʹ' => 'ʹ',
262
- ';' => ';',
263
- '΅' => '΅',
264
- 'Ά' => 'Ά',
265
- '·' => '·',
266
- 'Έ' => 'Έ',
267
- 'Ή' => 'Ή',
268
- 'Ί' => 'Ί',
269
- 'Ό' => 'Ό',
270
- 'Ύ' => 'Ύ',
271
- 'Ώ' => 'Ώ',
272
- 'ΐ' => 'ΐ',
273
- 'Ϊ' => 'Ϊ',
274
- 'Ϋ' => 'Ϋ',
275
- 'ά' => 'ά',
276
- 'έ' => 'έ',
277
- 'ή' => 'ή',
278
- 'ί' => 'ί',
279
- 'ΰ' => 'ΰ',
280
- 'ϊ' => 'ϊ',
281
- 'ϋ' => 'ϋ',
282
- 'ό' => 'ό',
283
- 'ύ' => 'ύ',
284
- 'ώ' => 'ώ',
285
- 'ϓ' => 'ϓ',
286
- 'ϔ' => 'ϔ',
287
- 'Ѐ' => 'Ѐ',
288
- 'Ё' => 'Ё',
289
- 'Ѓ' => 'Ѓ',
290
- 'Ї' => 'Ї',
291
- 'Ќ' => 'Ќ',
292
- 'Ѝ' => 'Ѝ',
293
- 'Ў' => 'Ў',
294
- 'Й' => 'Й',
295
- 'й' => 'й',
296
- 'ѐ' => 'ѐ',
297
- 'ё' => 'ё',
298
- 'ѓ' => 'ѓ',
299
- 'ї' => 'ї',
300
- 'ќ' => 'ќ',
301
- 'ѝ' => 'ѝ',
302
- 'ў' => 'ў',
303
- 'Ѷ' => 'Ѷ',
304
- 'ѷ' => 'ѷ',
305
- 'Ӂ' => 'Ӂ',
306
- 'ӂ' => 'ӂ',
307
- 'Ӑ' => 'Ӑ',
308
- 'ӑ' => 'ӑ',
309
- 'Ӓ' => 'Ӓ',
310
- 'ӓ' => 'ӓ',
311
- 'Ӗ' => 'Ӗ',
312
- 'ӗ' => 'ӗ',
313
- 'Ӛ' => 'Ӛ',
314
- 'ӛ' => 'ӛ',
315
- 'Ӝ' => 'Ӝ',
316
- 'ӝ' => 'ӝ',
317
- 'Ӟ' => 'Ӟ',
318
- 'ӟ' => 'ӟ',
319
- 'Ӣ' => 'Ӣ',
320
- 'ӣ' => 'ӣ',
321
- 'Ӥ' => 'Ӥ',
322
- 'ӥ' => 'ӥ',
323
- 'Ӧ' => 'Ӧ',
324
- 'ӧ' => 'ӧ',
325
- 'Ӫ' => 'Ӫ',
326
- 'ӫ' => 'ӫ',
327
- 'Ӭ' => 'Ӭ',
328
- 'ӭ' => 'ӭ',
329
- 'Ӯ' => 'Ӯ',
330
- 'ӯ' => 'ӯ',
331
- 'Ӱ' => 'Ӱ',
332
- 'ӱ' => 'ӱ',
333
- 'Ӳ' => 'Ӳ',
334
- 'ӳ' => 'ӳ',
335
- 'Ӵ' => 'Ӵ',
336
- 'ӵ' => 'ӵ',
337
- 'Ӹ' => 'Ӹ',
338
- 'ӹ' => 'ӹ',
339
- 'آ' => 'آ',
340
- 'أ' => 'أ',
341
- 'ؤ' => 'ؤ',
342
- 'إ' => 'إ',
343
- 'ئ' => 'ئ',
344
- 'ۀ' => 'ۀ',
345
- 'ۂ' => 'ۂ',
346
- 'ۓ' => 'ۓ',
347
- 'ऩ' => 'ऩ',
348
- 'ऱ' => 'ऱ',
349
- 'ऴ' => 'ऴ',
350
- 'क़' => 'क़',
351
- 'ख़' => 'ख़',
352
- 'ग़' => 'ग़',
353
- 'ज़' => 'ज़',
354
- 'ड़' => 'ड़',
355
- 'ढ़' => 'ढ़',
356
- 'फ़' => 'फ़',
357
- 'य़' => 'य़',
358
- 'ো' => 'ো',
359
- 'ৌ' => 'ৌ',
360
- 'ড়' => 'ড়',
361
- 'ঢ়' => 'ঢ়',
362
- 'য়' => 'য়',
363
- 'ਲ਼' => 'ਲ਼',
364
- 'ਸ਼' => 'ਸ਼',
365
- 'ਖ਼' => 'ਖ਼',
366
- 'ਗ਼' => 'ਗ਼',
367
- 'ਜ਼' => 'ਜ਼',
368
- 'ਫ਼' => 'ਫ਼',
369
- 'ୈ' => 'ୈ',
370
- 'ୋ' => 'ୋ',
371
- 'ୌ' => 'ୌ',
372
- 'ଡ଼' => 'ଡ଼',
373
- 'ଢ଼' => 'ଢ଼',
374
- 'ஔ' => 'ஔ',
375
- 'ொ' => 'ொ',
376
- 'ோ' => 'ோ',
377
- 'ௌ' => 'ௌ',
378
- 'ై' => 'ై',
379
- 'ೀ' => 'ೀ',
380
- 'ೇ' => 'ೇ',
381
- 'ೈ' => 'ೈ',
382
- 'ೊ' => 'ೊ',
383
- 'ೋ' => 'ೋ',
384
- 'ൊ' => 'ൊ',
385
- 'ോ' => 'ോ',
386
- 'ൌ' => 'ൌ',
387
- 'ේ' => 'ේ',
388
- 'ො' => 'ො',
389
- 'ෝ' => 'ෝ',
390
- 'ෞ' => 'ෞ',
391
- 'གྷ' => 'གྷ',
392
- 'ཌྷ' => 'ཌྷ',
393
- 'དྷ' => 'དྷ',
394
- 'བྷ' => 'བྷ',
395
- 'ཛྷ' => 'ཛྷ',
396
- 'ཀྵ' => 'ཀྵ',
397
- 'ཱི' => 'ཱི',
398
- 'ཱུ' => 'ཱུ',
399
- 'ྲྀ' => 'ྲྀ',
400
- 'ླྀ' => 'ླྀ',
401
- 'ཱྀ' => 'ཱྀ',
402
- 'ྒྷ' => 'ྒྷ',
403
- 'ྜྷ' => 'ྜྷ',
404
- 'ྡྷ' => 'ྡྷ',
405
- 'ྦྷ' => 'ྦྷ',
406
- 'ྫྷ' => 'ྫྷ',
407
- 'ྐྵ' => 'ྐྵ',
408
- 'ဦ' => 'ဦ',
409
- 'ᬆ' => 'ᬆ',
410
- 'ᬈ' => 'ᬈ',
411
- 'ᬊ' => 'ᬊ',
412
- 'ᬌ' => 'ᬌ',
413
- 'ᬎ' => 'ᬎ',
414
- 'ᬒ' => 'ᬒ',
415
- 'ᬻ' => 'ᬻ',
416
- 'ᬽ' => 'ᬽ',
417
- 'ᭀ' => 'ᭀ',
418
- 'ᭁ' => 'ᭁ',
419
- 'ᭃ' => 'ᭃ',
420
- 'Ḁ' => 'Ḁ',
421
- 'ḁ' => 'ḁ',
422
- 'Ḃ' => 'Ḃ',
423
- 'ḃ' => 'ḃ',
424
- 'Ḅ' => 'Ḅ',
425
- 'ḅ' => 'ḅ',
426
- 'Ḇ' => 'Ḇ',
427
- 'ḇ' => 'ḇ',
428
- 'Ḉ' => 'Ḉ',
429
- 'ḉ' => 'ḉ',
430
- 'Ḋ' => 'Ḋ',
431
- 'ḋ' => 'ḋ',
432
- 'Ḍ' => 'Ḍ',
433
- 'ḍ' => 'ḍ',
434
- 'Ḏ' => 'Ḏ',
435
- 'ḏ' => 'ḏ',
436
- 'Ḑ' => 'Ḑ',
437
- 'ḑ' => 'ḑ',
438
- 'Ḓ' => 'Ḓ',
439
- 'ḓ' => 'ḓ',
440
- 'Ḕ' => 'Ḕ',
441
- 'ḕ' => 'ḕ',
442
- 'Ḗ' => 'Ḗ',
443
- 'ḗ' => 'ḗ',
444
- 'Ḙ' => 'Ḙ',
445
- 'ḙ' => 'ḙ',
446
- 'Ḛ' => 'Ḛ',
447
- 'ḛ' => 'ḛ',
448
- 'Ḝ' => 'Ḝ',
449
- 'ḝ' => 'ḝ',
450
- 'Ḟ' => 'Ḟ',
451
- 'ḟ' => 'ḟ',
452
- 'Ḡ' => 'Ḡ',
453
- 'ḡ' => 'ḡ',
454
- 'Ḣ' => 'Ḣ',
455
- 'ḣ' => 'ḣ',
456
- 'Ḥ' => 'Ḥ',
457
- 'ḥ' => 'ḥ',
458
- 'Ḧ' => 'Ḧ',
459
- 'ḧ' => 'ḧ',
460
- 'Ḩ' => 'Ḩ',
461
- 'ḩ' => 'ḩ',
462
- 'Ḫ' => 'Ḫ',
463
- 'ḫ' => 'ḫ',
464
- 'Ḭ' => 'Ḭ',
465
- 'ḭ' => 'ḭ',
466
- 'Ḯ' => 'Ḯ',
467
- 'ḯ' => 'ḯ',
468
- 'Ḱ' => 'Ḱ',
469
- 'ḱ' => 'ḱ',
470
- 'Ḳ' => 'Ḳ',
471
- 'ḳ' => 'ḳ',
472
- 'Ḵ' => 'Ḵ',
473
- 'ḵ' => 'ḵ',
474
- 'Ḷ' => 'Ḷ',
475
- 'ḷ' => 'ḷ',
476
- 'Ḹ' => 'Ḹ',
477
- 'ḹ' => 'ḹ',
478
- 'Ḻ' => 'Ḻ',
479
- 'ḻ' => 'ḻ',
480
- 'Ḽ' => 'Ḽ',
481
- 'ḽ' => 'ḽ',
482
- 'Ḿ' => 'Ḿ',
483
- 'ḿ' => 'ḿ',
484
- 'Ṁ' => 'Ṁ',
485
- 'ṁ' => 'ṁ',
486
- 'Ṃ' => 'Ṃ',
487
- 'ṃ' => 'ṃ',
488
- 'Ṅ' => 'Ṅ',
489
- 'ṅ' => 'ṅ',
490
- 'Ṇ' => 'Ṇ',
491
- 'ṇ' => 'ṇ',
492
- 'Ṉ' => 'Ṉ',
493
- 'ṉ' => 'ṉ',
494
- 'Ṋ' => 'Ṋ',
495
- 'ṋ' => 'ṋ',
496
- 'Ṍ' => 'Ṍ',
497
- 'ṍ' => 'ṍ',
498
- 'Ṏ' => 'Ṏ',
499
- 'ṏ' => 'ṏ',
500
- 'Ṑ' => 'Ṑ',
501
- 'ṑ' => 'ṑ',
502
- 'Ṓ' => 'Ṓ',
503
- 'ṓ' => 'ṓ',
504
- 'Ṕ' => 'Ṕ',
505
- 'ṕ' => 'ṕ',
506
- 'Ṗ' => 'Ṗ',
507
- 'ṗ' => 'ṗ',
508
- 'Ṙ' => 'Ṙ',
509
- 'ṙ' => 'ṙ',
510
- 'Ṛ' => 'Ṛ',
511
- 'ṛ' => 'ṛ',
512
- 'Ṝ' => 'Ṝ',
513
- 'ṝ' => 'ṝ',
514
- 'Ṟ' => 'Ṟ',
515
- 'ṟ' => 'ṟ',
516
- 'Ṡ' => 'Ṡ',
517
- 'ṡ' => 'ṡ',
518
- 'Ṣ' => 'Ṣ',
519
- 'ṣ' => 'ṣ',
520
- 'Ṥ' => 'Ṥ',
521
- 'ṥ' => 'ṥ',
522
- 'Ṧ' => 'Ṧ',
523
- 'ṧ' => 'ṧ',
524
- 'Ṩ' => 'Ṩ',
525
- 'ṩ' => 'ṩ',
526
- 'Ṫ' => 'Ṫ',
527
- 'ṫ' => 'ṫ',
528
- 'Ṭ' => 'Ṭ',
529
- 'ṭ' => 'ṭ',
530
- 'Ṯ' => 'Ṯ',
531
- 'ṯ' => 'ṯ',
532
- 'Ṱ' => 'Ṱ',
533
- 'ṱ' => 'ṱ',
534
- 'Ṳ' => 'Ṳ',
535
- 'ṳ' => 'ṳ',
536
- 'Ṵ' => 'Ṵ',
537
- 'ṵ' => 'ṵ',
538
- 'Ṷ' => 'Ṷ',
539
- 'ṷ' => 'ṷ',
540
- 'Ṹ' => 'Ṹ',
541
- 'ṹ' => 'ṹ',
542
- 'Ṻ' => 'Ṻ',
543
- 'ṻ' => 'ṻ',
544
- 'Ṽ' => 'Ṽ',
545
- 'ṽ' => 'ṽ',
546
- 'Ṿ' => 'Ṿ',
547
- 'ṿ' => 'ṿ',
548
- 'Ẁ' => 'Ẁ',
549
- 'ẁ' => 'ẁ',
550
- 'Ẃ' => 'Ẃ',
551
- 'ẃ' => 'ẃ',
552
- 'Ẅ' => 'Ẅ',
553
- 'ẅ' => 'ẅ',
554
- 'Ẇ' => 'Ẇ',
555
- 'ẇ' => 'ẇ',
556
- 'Ẉ' => 'Ẉ',
557
- 'ẉ' => 'ẉ',
558
- 'Ẋ' => 'Ẋ',
559
- 'ẋ' => 'ẋ',
560
- 'Ẍ' => 'Ẍ',
561
- 'ẍ' => 'ẍ',
562
- 'Ẏ' => 'Ẏ',
563
- 'ẏ' => 'ẏ',
564
- 'Ẑ' => 'Ẑ',
565
- 'ẑ' => 'ẑ',
566
- 'Ẓ' => 'Ẓ',
567
- 'ẓ' => 'ẓ',
568
- 'Ẕ' => 'Ẕ',
569
- 'ẕ' => 'ẕ',
570
- 'ẖ' => 'ẖ',
571
- 'ẗ' => 'ẗ',
572
- 'ẘ' => 'ẘ',
573
- 'ẙ' => 'ẙ',
574
- 'ẛ' => 'ẛ',
575
- 'Ạ' => 'Ạ',
576
- 'ạ' => 'ạ',
577
- 'Ả' => 'Ả',
578
- 'ả' => 'ả',
579
- 'Ấ' => 'Ấ',
580
- 'ấ' => 'ấ',
581
- 'Ầ' => 'Ầ',
582
- 'ầ' => 'ầ',
583
- 'Ẩ' => 'Ẩ',
584
- 'ẩ' => 'ẩ',
585
- 'Ẫ' => 'Ẫ',
586
- 'ẫ' => 'ẫ',
587
- 'Ậ' => 'Ậ',
588
- 'ậ' => 'ậ',
589
- 'Ắ' => 'Ắ',
590
- 'ắ' => 'ắ',
591
- 'Ằ' => 'Ằ',
592
- 'ằ' => 'ằ',
593
- 'Ẳ' => 'Ẳ',
594
- 'ẳ' => 'ẳ',
595
- 'Ẵ' => 'Ẵ',
596
- 'ẵ' => 'ẵ',
597
- 'Ặ' => 'Ặ',
598
- 'ặ' => 'ặ',
599
- 'Ẹ' => 'Ẹ',
600
- 'ẹ' => 'ẹ',
601
- 'Ẻ' => 'Ẻ',
602
- 'ẻ' => 'ẻ',
603
- 'Ẽ' => 'Ẽ',
604
- 'ẽ' => 'ẽ',
605
- 'Ế' => 'Ế',
606
- 'ế' => 'ế',
607
- 'Ề' => 'Ề',
608
- 'ề' => 'ề',
609
- 'Ể' => 'Ể',
610
- 'ể' => 'ể',
611
- 'Ễ' => 'Ễ',
612
- 'ễ' => 'ễ',
613
- 'Ệ' => 'Ệ',
614
- 'ệ' => 'ệ',
615
- 'Ỉ' => 'Ỉ',
616
- 'ỉ' => 'ỉ',
617
- 'Ị' => 'Ị',
618
- 'ị' => 'ị',
619
- 'Ọ' => 'Ọ',
620
- 'ọ' => 'ọ',
621
- 'Ỏ' => 'Ỏ',
622
- 'ỏ' => 'ỏ',
623
- 'Ố' => 'Ố',
624
- 'ố' => 'ố',
625
- 'Ồ' => 'Ồ',
626
- 'ồ' => 'ồ',
627
- 'Ổ' => 'Ổ',
628
- 'ổ' => 'ổ',
629
- 'Ỗ' => 'Ỗ',
630
- 'ỗ' => 'ỗ',
631
- 'Ộ' => 'Ộ',
632
- 'ộ' => 'ộ',
633
- 'Ớ' => 'Ớ',
634
- 'ớ' => 'ớ',
635
- 'Ờ' => 'Ờ',
636
- 'ờ' => 'ờ',
637
- 'Ở' => 'Ở',
638
- 'ở' => 'ở',
639
- 'Ỡ' => 'Ỡ',
640
- 'ỡ' => 'ỡ',
641
- 'Ợ' => 'Ợ',
642
- 'ợ' => 'ợ',
643
- 'Ụ' => 'Ụ',
644
- 'ụ' => 'ụ',
645
- 'Ủ' => 'Ủ',
646
- 'ủ' => 'ủ',
647
- 'Ứ' => 'Ứ',
648
- 'ứ' => 'ứ',
649
- 'Ừ' => 'Ừ',
650
- 'ừ' => 'ừ',
651
- 'Ử' => 'Ử',
652
- 'ử' => 'ử',
653
- 'Ữ' => 'Ữ',
654
- 'ữ' => 'ữ',
655
- 'Ự' => 'Ự',
656
- 'ự' => 'ự',
657
- 'Ỳ' => 'Ỳ',
658
- 'ỳ' => 'ỳ',
659
- 'Ỵ' => 'Ỵ',
660
- 'ỵ' => 'ỵ',
661
- 'Ỷ' => 'Ỷ',
662
- 'ỷ' => 'ỷ',
663
- 'Ỹ' => 'Ỹ',
664
- 'ỹ' => 'ỹ',
665
- 'ἀ' => 'ἀ',
666
- 'ἁ' => 'ἁ',
667
- 'ἂ' => 'ἂ',
668
- 'ἃ' => 'ἃ',
669
- 'ἄ' => 'ἄ',
670
- 'ἅ' => 'ἅ',
671
- 'ἆ' => 'ἆ',
672
- 'ἇ' => 'ἇ',
673
- 'Ἀ' => 'Ἀ',
674
- 'Ἁ' => 'Ἁ',
675
- 'Ἂ' => 'Ἂ',
676
- 'Ἃ' => 'Ἃ',
677
- 'Ἄ' => 'Ἄ',
678
- 'Ἅ' => 'Ἅ',
679
- 'Ἆ' => 'Ἆ',
680
- 'Ἇ' => 'Ἇ',
681
- 'ἐ' => 'ἐ',
682
- 'ἑ' => 'ἑ',
683
- 'ἒ' => 'ἒ',
684
- 'ἓ' => 'ἓ',
685
- 'ἔ' => 'ἔ',
686
- 'ἕ' => 'ἕ',
687
- 'Ἐ' => 'Ἐ',
688
- 'Ἑ' => 'Ἑ',
689
- 'Ἒ' => 'Ἒ',
690
- 'Ἓ' => 'Ἓ',
691
- 'Ἔ' => 'Ἔ',
692
- 'Ἕ' => 'Ἕ',
693
- 'ἠ' => 'ἠ',
694
- 'ἡ' => 'ἡ',
695
- 'ἢ' => 'ἢ',
696
- 'ἣ' => 'ἣ',
697
- 'ἤ' => 'ἤ',
698
- 'ἥ' => 'ἥ',
699
- 'ἦ' => 'ἦ',
700
- 'ἧ' => 'ἧ',
701
- 'Ἠ' => 'Ἠ',
702
- 'Ἡ' => 'Ἡ',
703
- 'Ἢ' => 'Ἢ',
704
- 'Ἣ' => 'Ἣ',
705
- 'Ἤ' => 'Ἤ',
706
- 'Ἥ' => 'Ἥ',
707
- 'Ἦ' => 'Ἦ',
708
- 'Ἧ' => 'Ἧ',
709
- 'ἰ' => 'ἰ',
710
- 'ἱ' => 'ἱ',
711
- 'ἲ' => 'ἲ',
712
- 'ἳ' => 'ἳ',
713
- 'ἴ' => 'ἴ',
714
- 'ἵ' => 'ἵ',
715
- 'ἶ' => 'ἶ',
716
- 'ἷ' => 'ἷ',
717
- 'Ἰ' => 'Ἰ',
718
- 'Ἱ' => 'Ἱ',
719
- 'Ἲ' => 'Ἲ',
720
- 'Ἳ' => 'Ἳ',
721
- 'Ἴ' => 'Ἴ',
722
- 'Ἵ' => 'Ἵ',
723
- 'Ἶ' => 'Ἶ',
724
- 'Ἷ' => 'Ἷ',
725
- 'ὀ' => 'ὀ',
726
- 'ὁ' => 'ὁ',
727
- 'ὂ' => 'ὂ',
728
- 'ὃ' => 'ὃ',
729
- 'ὄ' => 'ὄ',
730
- 'ὅ' => 'ὅ',
731
- 'Ὀ' => 'Ὀ',
732
- 'Ὁ' => 'Ὁ',
733
- 'Ὂ' => 'Ὂ',
734
- 'Ὃ' => 'Ὃ',
735
- 'Ὄ' => 'Ὄ',
736
- 'Ὅ' => 'Ὅ',
737
- 'ὐ' => 'ὐ',
738
- 'ὑ' => 'ὑ',
739
- 'ὒ' => 'ὒ',
740
- 'ὓ' => 'ὓ',
741
- 'ὔ' => 'ὔ',
742
- 'ὕ' => 'ὕ',
743
- 'ὖ' => 'ὖ',
744
- 'ὗ' => 'ὗ',
745
- 'Ὑ' => 'Ὑ',
746
- 'Ὓ' => 'Ὓ',
747
- 'Ὕ' => 'Ὕ',
748
- 'Ὗ' => 'Ὗ',
749
- 'ὠ' => 'ὠ',
750
- 'ὡ' => 'ὡ',
751
- 'ὢ' => 'ὢ',
752
- 'ὣ' => 'ὣ',
753
- 'ὤ' => 'ὤ',
754
- 'ὥ' => 'ὥ',
755
- 'ὦ' => 'ὦ',
756
- 'ὧ' => 'ὧ',
757
- 'Ὠ' => 'Ὠ',
758
- 'Ὡ' => 'Ὡ',
759
- 'Ὢ' => 'Ὢ',
760
- 'Ὣ' => 'Ὣ',
761
- 'Ὤ' => 'Ὤ',
762
- 'Ὥ' => 'Ὥ',
763
- 'Ὦ' => 'Ὦ',
764
- 'Ὧ' => 'Ὧ',
765
- 'ὰ' => 'ὰ',
766
- 'ά' => 'ά',
767
- 'ὲ' => 'ὲ',
768
- 'έ' => 'έ',
769
- 'ὴ' => 'ὴ',
770
- 'ή' => 'ή',
771
- 'ὶ' => 'ὶ',
772
- 'ί' => 'ί',
773
- 'ὸ' => 'ὸ',
774
- 'ό' => 'ό',
775
- 'ὺ' => 'ὺ',
776
- 'ύ' => 'ύ',
777
- 'ὼ' => 'ὼ',
778
- 'ώ' => 'ώ',
779
- 'ᾀ' => 'ᾀ',
780
- 'ᾁ' => 'ᾁ',
781
- 'ᾂ' => 'ᾂ',
782
- 'ᾃ' => 'ᾃ',
783
- 'ᾄ' => 'ᾄ',
784
- 'ᾅ' => 'ᾅ',
785
- 'ᾆ' => 'ᾆ',
786
- 'ᾇ' => 'ᾇ',
787
- 'ᾈ' => 'ᾈ',
788
- 'ᾉ' => 'ᾉ',
789
- 'ᾊ' => 'ᾊ',
790
- 'ᾋ' => 'ᾋ',
791
- 'ᾌ' => 'ᾌ',
792
- 'ᾍ' => 'ᾍ',
793
- 'ᾎ' => 'ᾎ',
794
- 'ᾏ' => 'ᾏ',
795
- 'ᾐ' => 'ᾐ',
796
- 'ᾑ' => 'ᾑ',
797
- 'ᾒ' => 'ᾒ',
798
- 'ᾓ' => 'ᾓ',
799
- 'ᾔ' => 'ᾔ',
800
- 'ᾕ' => 'ᾕ',
801
- 'ᾖ' => 'ᾖ',
802
- 'ᾗ' => 'ᾗ',
803
- 'ᾘ' => 'ᾘ',
804
- 'ᾙ' => 'ᾙ',
805
- 'ᾚ' => 'ᾚ',
806
- 'ᾛ' => 'ᾛ',
807
- 'ᾜ' => 'ᾜ',
808
- 'ᾝ' => 'ᾝ',
809
- 'ᾞ' => 'ᾞ',
810
- 'ᾟ' => 'ᾟ',
811
- 'ᾠ' => 'ᾠ',
812
- 'ᾡ' => 'ᾡ',
813
- 'ᾢ' => 'ᾢ',
814
- 'ᾣ' => 'ᾣ',
815
- 'ᾤ' => 'ᾤ',
816
- 'ᾥ' => 'ᾥ',
817
- 'ᾦ' => 'ᾦ',
818
- 'ᾧ' => 'ᾧ',
819
- 'ᾨ' => 'ᾨ',
820
- 'ᾩ' => 'ᾩ',
821
- 'ᾪ' => 'ᾪ',
822
- 'ᾫ' => 'ᾫ',
823
- 'ᾬ' => 'ᾬ',
824
- 'ᾭ' => 'ᾭ',
825
- 'ᾮ' => 'ᾮ',
826
- 'ᾯ' => 'ᾯ',
827
- 'ᾰ' => 'ᾰ',
828
- 'ᾱ' => 'ᾱ',
829
- 'ᾲ' => 'ᾲ',
830
- 'ᾳ' => 'ᾳ',
831
- 'ᾴ' => 'ᾴ',
832
- 'ᾶ' => 'ᾶ',
833
- 'ᾷ' => 'ᾷ',
834
- 'Ᾰ' => 'Ᾰ',
835
- 'Ᾱ' => 'Ᾱ',
836
- 'Ὰ' => 'Ὰ',
837
- 'Ά' => 'Ά',
838
- 'ᾼ' => 'ᾼ',
839
- 'ι' => 'ι',
840
- '῁' => '῁',
841
- 'ῂ' => 'ῂ',
842
- 'ῃ' => 'ῃ',
843
- 'ῄ' => 'ῄ',
844
- 'ῆ' => 'ῆ',
845
- 'ῇ' => 'ῇ',
846
- 'Ὲ' => 'Ὲ',
847
- 'Έ' => 'Έ',
848
- 'Ὴ' => 'Ὴ',
849
- 'Ή' => 'Ή',
850
- 'ῌ' => 'ῌ',
851
- '῍' => '῍',
852
- '῎' => '῎',
853
- '῏' => '῏',
854
- 'ῐ' => 'ῐ',
855
- 'ῑ' => 'ῑ',
856
- 'ῒ' => 'ῒ',
857
- 'ΐ' => 'ΐ',
858
- 'ῖ' => 'ῖ',
859
- 'ῗ' => 'ῗ',
860
- 'Ῐ' => 'Ῐ',
861
- 'Ῑ' => 'Ῑ',
862
- 'Ὶ' => 'Ὶ',
863
- 'Ί' => 'Ί',
864
- '῝' => '῝',
865
- '῞' => '῞',
866
- '῟' => '῟',
867
- 'ῠ' => 'ῠ',
868
- 'ῡ' => 'ῡ',
869
- 'ῢ' => 'ῢ',
870
- 'ΰ' => 'ΰ',
871
- 'ῤ' => 'ῤ',
872
- 'ῥ' => 'ῥ',
873
- 'ῦ' => 'ῦ',
874
- 'ῧ' => 'ῧ',
875
- 'Ῠ' => 'Ῠ',
876
- 'Ῡ' => 'Ῡ',
877
- 'Ὺ' => 'Ὺ',
878
- 'Ύ' => 'Ύ',
879
- 'Ῥ' => 'Ῥ',
880
- '῭' => '῭',
881
- '΅' => '΅',
882
- '`' => '`',
883
- 'ῲ' => 'ῲ',
884
- 'ῳ' => 'ῳ',
885
- 'ῴ' => 'ῴ',
886
- 'ῶ' => 'ῶ',
887
- 'ῷ' => 'ῷ',
888
- 'Ὸ' => 'Ὸ',
889
- 'Ό' => 'Ό',
890
- 'Ὼ' => 'Ὼ',
891
- 'Ώ' => 'Ώ',
892
- 'ῼ' => 'ῼ',
893
- '´' => '´',
894
- ' ' => ' ',
895
- ' ' => ' ',
896
- 'Ω' => 'Ω',
897
- 'K' => 'K',
898
- 'Å' => 'Å',
899
- '↚' => '↚',
900
- '↛' => '↛',
901
- '↮' => '↮',
902
- '⇍' => '⇍',
903
- '⇎' => '⇎',
904
- '⇏' => '⇏',
905
- '∄' => '∄',
906
- '∉' => '∉',
907
- '∌' => '∌',
908
- '∤' => '∤',
909
- '∦' => '∦',
910
- '≁' => '≁',
911
- '≄' => '≄',
912
- '≇' => '≇',
913
- '≉' => '≉',
914
- '≠' => '≠',
915
- '≢' => '≢',
916
- '≭' => '≭',
917
- '≮' => '≮',
918
- '≯' => '≯',
919
- '≰' => '≰',
920
- '≱' => '≱',
921
- '≴' => '≴',
922
- '≵' => '≵',
923
- '≸' => '≸',
924
- '≹' => '≹',
925
- '⊀' => '⊀',
926
- '⊁' => '⊁',
927
- '⊄' => '⊄',
928
- '⊅' => '⊅',
929
- '⊈' => '⊈',
930
- '⊉' => '⊉',
931
- '⊬' => '⊬',
932
- '⊭' => '⊭',
933
- '⊮' => '⊮',
934
- '⊯' => '⊯',
935
- '⋠' => '⋠',
936
- '⋡' => '⋡',
937
- '⋢' => '⋢',
938
- '⋣' => '⋣',
939
- '⋪' => '⋪',
940
- '⋫' => '⋫',
941
- '⋬' => '⋬',
942
- '⋭' => '⋭',
943
- '〈' => '〈',
944
- '〉' => '〉',
945
- '⫝̸' => '⫝̸',
946
- 'が' => 'が',
947
- 'ぎ' => 'ぎ',
948
- 'ぐ' => 'ぐ',
949
- 'げ' => 'げ',
950
- 'ご' => 'ご',
951
- 'ざ' => 'ざ',
952
- 'じ' => 'じ',
953
- 'ず' => 'ず',
954
- 'ぜ' => 'ぜ',
955
- 'ぞ' => 'ぞ',
956
- 'だ' => 'だ',
957
- 'ぢ' => 'ぢ',
958
- 'づ' => 'づ',
959
- 'で' => 'で',
960
- 'ど' => 'ど',
961
- 'ば' => 'ば',
962
- 'ぱ' => 'ぱ',
963
- 'び' => 'び',
964
- 'ぴ' => 'ぴ',
965
- 'ぶ' => 'ぶ',
966
- 'ぷ' => 'ぷ',
967
- 'べ' => 'べ',
968
- 'ぺ' => 'ぺ',
969
- 'ぼ' => 'ぼ',
970
- 'ぽ' => 'ぽ',
971
- 'ゔ' => 'ゔ',
972
- 'ゞ' => 'ゞ',
973
- 'ガ' => 'ガ',
974
- 'ギ' => 'ギ',
975
- 'グ' => 'グ',
976
- 'ゲ' => 'ゲ',
977
- 'ゴ' => 'ゴ',
978
- 'ザ' => 'ザ',
979
- 'ジ' => 'ジ',
980
- 'ズ' => 'ズ',
981
- 'ゼ' => 'ゼ',
982
- 'ゾ' => 'ゾ',
983
- 'ダ' => 'ダ',
984
- 'ヂ' => 'ヂ',
985
- 'ヅ' => 'ヅ',
986
- 'デ' => 'デ',
987
- 'ド' => 'ド',
988
- 'バ' => 'バ',
989
- 'パ' => 'パ',
990
- 'ビ' => 'ビ',
991
- 'ピ' => 'ピ',
992
- 'ブ' => 'ブ',
993
- 'プ' => 'プ',
994
- 'ベ' => 'ベ',
995
- 'ペ' => 'ペ',
996
- 'ボ' => 'ボ',
997
- 'ポ' => 'ポ',
998
- 'ヴ' => 'ヴ',
999
- 'ヷ' => 'ヷ',
1000
- 'ヸ' => 'ヸ',
1001
- 'ヹ' => 'ヹ',
1002
- 'ヺ' => 'ヺ',
1003
- 'ヾ' => 'ヾ',
1004
- '豈' => '豈',
1005
- '更' => '更',
1006
- '車' => '車',
1007
- '賈' => '賈',
1008
- '滑' => '滑',
1009
- '串' => '串',
1010
- '句' => '句',
1011
- '龜' => '龜',
1012
- '龜' => '龜',
1013
- '契' => '契',
1014
- '金' => '金',
1015
- '喇' => '喇',
1016
- '奈' => '奈',
1017
- '懶' => '懶',
1018
- '癩' => '癩',
1019
- '羅' => '羅',
1020
- '蘿' => '蘿',
1021
- '螺' => '螺',
1022
- '裸' => '裸',
1023
- '邏' => '邏',
1024
- '樂' => '樂',
1025
- '洛' => '洛',
1026
- '烙' => '烙',
1027
- '珞' => '珞',
1028
- '落' => '落',
1029
- '酪' => '酪',
1030
- '駱' => '駱',
1031
- '亂' => '亂',
1032
- '卵' => '卵',
1033
- '欄' => '欄',
1034
- '爛' => '爛',
1035
- '蘭' => '蘭',
1036
- '鸞' => '鸞',
1037
- '嵐' => '嵐',
1038
- '濫' => '濫',
1039
- '藍' => '藍',
1040
- '襤' => '襤',
1041
- '拉' => '拉',
1042
- '臘' => '臘',
1043
- '蠟' => '蠟',
1044
- '廊' => '廊',
1045
- '朗' => '朗',
1046
- '浪' => '浪',
1047
- '狼' => '狼',
1048
- '郎' => '郎',
1049
- '來' => '來',
1050
- '冷' => '冷',
1051
- '勞' => '勞',
1052
- '擄' => '擄',
1053
- '櫓' => '櫓',
1054
- '爐' => '爐',
1055
- '盧' => '盧',
1056
- '老' => '老',
1057
- '蘆' => '蘆',
1058
- '虜' => '虜',
1059
- '路' => '路',
1060
- '露' => '露',
1061
- '魯' => '魯',
1062
- '鷺' => '鷺',
1063
- '碌' => '碌',
1064
- '祿' => '祿',
1065
- '綠' => '綠',
1066
- '菉' => '菉',
1067
- '錄' => '錄',
1068
- '鹿' => '鹿',
1069
- '論' => '論',
1070
- '壟' => '壟',
1071
- '弄' => '弄',
1072
- '籠' => '籠',
1073
- '聾' => '聾',
1074
- '牢' => '牢',
1075
- '磊' => '磊',
1076
- '賂' => '賂',
1077
- '雷' => '雷',
1078
- '壘' => '壘',
1079
- '屢' => '屢',
1080
- '樓' => '樓',
1081
- '淚' => '淚',
1082
- '漏' => '漏',
1083
- '累' => '累',
1084
- '縷' => '縷',
1085
- '陋' => '陋',
1086
- '勒' => '勒',
1087
- '肋' => '肋',
1088
- '凜' => '凜',
1089
- '凌' => '凌',
1090
- '稜' => '稜',
1091
- '綾' => '綾',
1092
- '菱' => '菱',
1093
- '陵' => '陵',
1094
- '讀' => '讀',
1095
- '拏' => '拏',
1096
- '樂' => '樂',
1097
- '諾' => '諾',
1098
- '丹' => '丹',
1099
- '寧' => '寧',
1100
- '怒' => '怒',
1101
- '率' => '率',
1102
- '異' => '異',
1103
- '北' => '北',
1104
- '磻' => '磻',
1105
- '便' => '便',
1106
- '復' => '復',
1107
- '不' => '不',
1108
- '泌' => '泌',
1109
- '數' => '數',
1110
- '索' => '索',
1111
- '參' => '參',
1112
- '塞' => '塞',
1113
- '省' => '省',
1114
- '葉' => '葉',
1115
- '說' => '說',
1116
- '殺' => '殺',
1117
- '辰' => '辰',
1118
- '沈' => '沈',
1119
- '拾' => '拾',
1120
- '若' => '若',
1121
- '掠' => '掠',
1122
- '略' => '略',
1123
- '亮' => '亮',
1124
- '兩' => '兩',
1125
- '凉' => '凉',
1126
- '梁' => '梁',
1127
- '糧' => '糧',
1128
- '良' => '良',
1129
- '諒' => '諒',
1130
- '量' => '量',
1131
- '勵' => '勵',
1132
- '呂' => '呂',
1133
- '女' => '女',
1134
- '廬' => '廬',
1135
- '旅' => '旅',
1136
- '濾' => '濾',
1137
- '礪' => '礪',
1138
- '閭' => '閭',
1139
- '驪' => '驪',
1140
- '麗' => '麗',
1141
- '黎' => '黎',
1142
- '力' => '力',
1143
- '曆' => '曆',
1144
- '歷' => '歷',
1145
- '轢' => '轢',
1146
- '年' => '年',
1147
- '憐' => '憐',
1148
- '戀' => '戀',
1149
- '撚' => '撚',
1150
- '漣' => '漣',
1151
- '煉' => '煉',
1152
- '璉' => '璉',
1153
- '秊' => '秊',
1154
- '練' => '練',
1155
- '聯' => '聯',
1156
- '輦' => '輦',
1157
- '蓮' => '蓮',
1158
- '連' => '連',
1159
- '鍊' => '鍊',
1160
- '列' => '列',
1161
- '劣' => '劣',
1162
- '咽' => '咽',
1163
- '烈' => '烈',
1164
- '裂' => '裂',
1165
- '說' => '說',
1166
- '廉' => '廉',
1167
- '念' => '念',
1168
- '捻' => '捻',
1169
- '殮' => '殮',
1170
- '簾' => '簾',
1171
- '獵' => '獵',
1172
- '令' => '令',
1173
- '囹' => '囹',
1174
- '寧' => '寧',
1175
- '嶺' => '嶺',
1176
- '怜' => '怜',
1177
- '玲' => '玲',
1178
- '瑩' => '瑩',
1179
- '羚' => '羚',
1180
- '聆' => '聆',
1181
- '鈴' => '鈴',
1182
- '零' => '零',
1183
- '靈' => '靈',
1184
- '領' => '領',
1185
- '例' => '例',
1186
- '禮' => '禮',
1187
- '醴' => '醴',
1188
- '隸' => '隸',
1189
- '惡' => '惡',
1190
- '了' => '了',
1191
- '僚' => '僚',
1192
- '寮' => '寮',
1193
- '尿' => '尿',
1194
- '料' => '料',
1195
- '樂' => '樂',
1196
- '燎' => '燎',
1197
- '療' => '療',
1198
- '蓼' => '蓼',
1199
- '遼' => '遼',
1200
- '龍' => '龍',
1201
- '暈' => '暈',
1202
- '阮' => '阮',
1203
- '劉' => '劉',
1204
- '杻' => '杻',
1205
- '柳' => '柳',
1206
- '流' => '流',
1207
- '溜' => '溜',
1208
- '琉' => '琉',
1209
- '留' => '留',
1210
- '硫' => '硫',
1211
- '紐' => '紐',
1212
- '類' => '類',
1213
- '六' => '六',
1214
- '戮' => '戮',
1215
- '陸' => '陸',
1216
- '倫' => '倫',
1217
- '崙' => '崙',
1218
- '淪' => '淪',
1219
- '輪' => '輪',
1220
- '律' => '律',
1221
- '慄' => '慄',
1222
- '栗' => '栗',
1223
- '率' => '率',
1224
- '隆' => '隆',
1225
- '利' => '利',
1226
- '吏' => '吏',
1227
- '履' => '履',
1228
- '易' => '易',
1229
- '李' => '李',
1230
- '梨' => '梨',
1231
- '泥' => '泥',
1232
- '理' => '理',
1233
- '痢' => '痢',
1234
- '罹' => '罹',
1235
- '裏' => '裏',
1236
- '裡' => '裡',
1237
- '里' => '里',
1238
- '離' => '離',
1239
- '匿' => '匿',
1240
- '溺' => '溺',
1241
- '吝' => '吝',
1242
- '燐' => '燐',
1243
- '璘' => '璘',
1244
- '藺' => '藺',
1245
- '隣' => '隣',
1246
- '鱗' => '鱗',
1247
- '麟' => '麟',
1248
- '林' => '林',
1249
- '淋' => '淋',
1250
- '臨' => '臨',
1251
- '立' => '立',
1252
- '笠' => '笠',
1253
- '粒' => '粒',
1254
- '狀' => '狀',
1255
- '炙' => '炙',
1256
- '識' => '識',
1257
- '什' => '什',
1258
- '茶' => '茶',
1259
- '刺' => '刺',
1260
- '切' => '切',
1261
- '度' => '度',
1262
- '拓' => '拓',
1263
- '糖' => '糖',
1264
- '宅' => '宅',
1265
- '洞' => '洞',
1266
- '暴' => '暴',
1267
- '輻' => '輻',
1268
- '行' => '行',
1269
- '降' => '降',
1270
- '見' => '見',
1271
- '廓' => '廓',
1272
- '兀' => '兀',
1273
- '嗀' => '嗀',
1274
- '塚' => '塚',
1275
- '晴' => '晴',
1276
- '凞' => '凞',
1277
- '猪' => '猪',
1278
- '益' => '益',
1279
- '礼' => '礼',
1280
- '神' => '神',
1281
- '祥' => '祥',
1282
- '福' => '福',
1283
- '靖' => '靖',
1284
- '精' => '精',
1285
- '羽' => '羽',
1286
- '蘒' => '蘒',
1287
- '諸' => '諸',
1288
- '逸' => '逸',
1289
- '都' => '都',
1290
- '飯' => '飯',
1291
- '飼' => '飼',
1292
- '館' => '館',
1293
- '鶴' => '鶴',
1294
- '郞' => '郞',
1295
- '隷' => '隷',
1296
- '侮' => '侮',
1297
- '僧' => '僧',
1298
- '免' => '免',
1299
- '勉' => '勉',
1300
- '勤' => '勤',
1301
- '卑' => '卑',
1302
- '喝' => '喝',
1303
- '嘆' => '嘆',
1304
- '器' => '器',
1305
- '塀' => '塀',
1306
- '墨' => '墨',
1307
- '層' => '層',
1308
- '屮' => '屮',
1309
- '悔' => '悔',
1310
- '慨' => '慨',
1311
- '憎' => '憎',
1312
- '懲' => '懲',
1313
- '敏' => '敏',
1314
- '既' => '既',
1315
- '暑' => '暑',
1316
- '梅' => '梅',
1317
- '海' => '海',
1318
- '渚' => '渚',
1319
- '漢' => '漢',
1320
- '煮' => '煮',
1321
- '爫' => '爫',
1322
- '琢' => '琢',
1323
- '碑' => '碑',
1324
- '社' => '社',
1325
- '祉' => '祉',
1326
- '祈' => '祈',
1327
- '祐' => '祐',
1328
- '祖' => '祖',
1329
- '祝' => '祝',
1330
- '禍' => '禍',
1331
- '禎' => '禎',
1332
- '穀' => '穀',
1333
- '突' => '突',
1334
- '節' => '節',
1335
- '練' => '練',
1336
- '縉' => '縉',
1337
- '繁' => '繁',
1338
- '署' => '署',
1339
- '者' => '者',
1340
- '臭' => '臭',
1341
- '艹' => '艹',
1342
- '艹' => '艹',
1343
- '著' => '著',
1344
- '褐' => '褐',
1345
- '視' => '視',
1346
- '謁' => '謁',
1347
- '謹' => '謹',
1348
- '賓' => '賓',
1349
- '贈' => '贈',
1350
- '辶' => '辶',
1351
- '逸' => '逸',
1352
- '難' => '難',
1353
- '響' => '響',
1354
- '頻' => '頻',
1355
- '恵' => '恵',
1356
- '𤋮' => '𤋮',
1357
- '舘' => '舘',
1358
- '並' => '並',
1359
- '况' => '况',
1360
- '全' => '全',
1361
- '侀' => '侀',
1362
- '充' => '充',
1363
- '冀' => '冀',
1364
- '勇' => '勇',
1365
- '勺' => '勺',
1366
- '喝' => '喝',
1367
- '啕' => '啕',
1368
- '喙' => '喙',
1369
- '嗢' => '嗢',
1370
- '塚' => '塚',
1371
- '墳' => '墳',
1372
- '奄' => '奄',
1373
- '奔' => '奔',
1374
- '婢' => '婢',
1375
- '嬨' => '嬨',
1376
- '廒' => '廒',
1377
- '廙' => '廙',
1378
- '彩' => '彩',
1379
- '徭' => '徭',
1380
- '惘' => '惘',
1381
- '慎' => '慎',
1382
- '愈' => '愈',
1383
- '憎' => '憎',
1384
- '慠' => '慠',
1385
- '懲' => '懲',
1386
- '戴' => '戴',
1387
- '揄' => '揄',
1388
- '搜' => '搜',
1389
- '���' => '摒',
1390
- '敖' => '敖',
1391
- '晴' => '晴',
1392
- '朗' => '朗',
1393
- '望' => '望',
1394
- '杖' => '杖',
1395
- '歹' => '歹',
1396
- '殺' => '殺',
1397
- '流' => '流',
1398
- '滛' => '滛',
1399
- '滋' => '滋',
1400
- '漢' => '漢',
1401
- '瀞' => '瀞',
1402
- '煮' => '煮',
1403
- '瞧' => '瞧',
1404
- '爵' => '爵',
1405
- '犯' => '犯',
1406
- '猪' => '猪',
1407
- '瑱' => '瑱',
1408
- '甆' => '甆',
1409
- '画' => '画',
1410
- '瘝' => '瘝',
1411
- '瘟' => '瘟',
1412
- '益' => '益',
1413
- '盛' => '盛',
1414
- '直' => '直',
1415
- '睊' => '睊',
1416
- '着' => '着',
1417
- '磌' => '磌',
1418
- '窱' => '窱',
1419
- '節' => '節',
1420
- '类' => '类',
1421
- '絛' => '絛',
1422
- '練' => '練',
1423
- '缾' => '缾',
1424
- '者' => '者',
1425
- '荒' => '荒',
1426
- '華' => '華',
1427
- '蝹' => '蝹',
1428
- '襁' => '襁',
1429
- '覆' => '覆',
1430
- '視' => '視',
1431
- '調' => '調',
1432
- '諸' => '諸',
1433
- '請' => '請',
1434
- '謁' => '謁',
1435
- '諾' => '諾',
1436
- '諭' => '諭',
1437
- '謹' => '謹',
1438
- '變' => '變',
1439
- '贈' => '贈',
1440
- '輸' => '輸',
1441
- '遲' => '遲',
1442
- '醙' => '醙',
1443
- '鉶' => '鉶',
1444
- '陼' => '陼',
1445
- '難' => '難',
1446
- '靖' => '靖',
1447
- '韛' => '韛',
1448
- '響' => '響',
1449
- '頋' => '頋',
1450
- '頻' => '頻',
1451
- '鬒' => '鬒',
1452
- '龜' => '龜',
1453
- '𢡊' => '𢡊',
1454
- '𢡄' => '𢡄',
1455
- '𣏕' => '𣏕',
1456
- '㮝' => '㮝',
1457
- '䀘' => '䀘',
1458
- '䀹' => '䀹',
1459
- '𥉉' => '𥉉',
1460
- '𥳐' => '𥳐',
1461
- '𧻓' => '𧻓',
1462
- '齃' => '齃',
1463
- '龎' => '龎',
1464
- 'יִ' => 'יִ',
1465
- 'ײַ' => 'ײַ',
1466
- 'שׁ' => 'שׁ',
1467
- 'שׂ' => 'שׂ',
1468
- 'שּׁ' => 'שּׁ',
1469
- 'שּׂ' => 'שּׂ',
1470
- 'אַ' => 'אַ',
1471
- 'אָ' => 'אָ',
1472
- 'אּ' => 'אּ',
1473
- 'בּ' => 'בּ',
1474
- 'גּ' => 'גּ',
1475
- 'דּ' => 'דּ',
1476
- 'הּ' => 'הּ',
1477
- 'וּ' => 'וּ',
1478
- 'זּ' => 'זּ',
1479
- 'טּ' => 'טּ',
1480
- 'יּ' => 'יּ',
1481
- 'ךּ' => 'ךּ',
1482
- 'כּ' => 'כּ',
1483
- 'לּ' => 'לּ',
1484
- 'מּ' => 'מּ',
1485
- 'נּ' => 'נּ',
1486
- 'סּ' => 'סּ',
1487
- 'ףּ' => 'ףּ',
1488
- 'פּ' => 'פּ',
1489
- 'צּ' => 'צּ',
1490
- 'קּ' => 'קּ',
1491
- 'רּ' => 'רּ',
1492
- 'שּ' => 'שּ',
1493
- 'תּ' => 'תּ',
1494
- 'וֹ' => 'וֹ',
1495
- 'בֿ' => 'בֿ',
1496
- 'כֿ' => 'כֿ',
1497
- 'פֿ' => 'פֿ',
1498
- '𑂚' => '𑂚',
1499
- '𑂜' => '𑂜',
1500
- '𑂫' => '𑂫',
1501
- '𑄮' => '𑄮',
1502
- '𑄯' => '𑄯',
1503
- '𑍋' => '𑍋',
1504
- '𑍌' => '𑍌',
1505
- '𑒻' => '𑒻',
1506
- '𑒼' => '𑒼',
1507
- '𑒾' => '𑒾',
1508
- '𑖺' => '𑖺',
1509
- '𑖻' => '𑖻',
1510
- '𑤸' => '𑤸',
1511
- '𝅗𝅥' => '𝅗𝅥',
1512
- '𝅘𝅥' => '𝅘𝅥',
1513
- '𝅘𝅥𝅮' => '𝅘𝅥𝅮',
1514
- '𝅘𝅥𝅯' => '𝅘𝅥𝅯',
1515
- '𝅘𝅥𝅰' => '𝅘𝅥𝅰',
1516
- '𝅘𝅥𝅱' => '𝅘𝅥𝅱',
1517
- '𝅘𝅥𝅲' => '𝅘𝅥𝅲',
1518
- '𝆹𝅥' => '𝆹𝅥',
1519
- '𝆺𝅥' => '𝆺𝅥',
1520
- '𝆹𝅥𝅮' => '𝆹𝅥𝅮',
1521
- '𝆺𝅥𝅮' => '𝆺𝅥𝅮',
1522
- '𝆹𝅥𝅯' => '𝆹𝅥𝅯',
1523
- '𝆺𝅥𝅯' => '𝆺𝅥𝅯',
1524
- '丽' => '丽',
1525
- '丸' => '丸',
1526
- '乁' => '乁',
1527
- '𠄢' => '𠄢',
1528
- '你' => '你',
1529
- '侮' => '侮',
1530
- '侻' => '侻',
1531
- '倂' => '倂',
1532
- '偺' => '偺',
1533
- '備' => '備',
1534
- '僧' => '僧',
1535
- '像' => '像',
1536
- '㒞' => '㒞',
1537
- '𠘺' => '𠘺',
1538
- '免' => '免',
1539
- '兔' => '兔',
1540
- '兤' => '兤',
1541
- '具' => '具',
1542
- '𠔜' => '𠔜',
1543
- '㒹' => '㒹',
1544
- '內' => '內',
1545
- '再' => '再',
1546
- '𠕋' => '𠕋',
1547
- '冗' => '冗',
1548
- '冤' => '冤',
1549
- '仌' => '仌',
1550
- '冬' => '冬',
1551
- '况' => '况',
1552
- '𩇟' => '𩇟',
1553
- '凵' => '凵',
1554
- '刃' => '刃',
1555
- '㓟' => '㓟',
1556
- '刻' => '刻',
1557
- '剆' => '剆',
1558
- '割' => '割',
1559
- '剷' => '剷',
1560
- '㔕' => '㔕',
1561
- '勇' => '勇',
1562
- '勉' => '勉',
1563
- '勤' => '勤',
1564
- '勺' => '勺',
1565
- '包' => '包',
1566
- '匆' => '匆',
1567
- '北' => '北',
1568
- '卉' => '卉',
1569
- '卑' => '卑',
1570
- '博' => '博',
1571
- '即' => '即',
1572
- '卽' => '卽',
1573
- '卿' => '卿',
1574
- '卿' => '卿',
1575
- '卿' => '卿',
1576
- '𠨬' => '𠨬',
1577
- '灰' => '灰',
1578
- '及' => '及',
1579
- '叟' => '叟',
1580
- '𠭣' => '𠭣',
1581
- '叫' => '叫',
1582
- '叱' => '叱',
1583
- '吆' => '吆',
1584
- '咞' => '咞',
1585
- '吸' => '吸',
1586
- '呈' => '呈',
1587
- '周' => '周',
1588
- '咢' => '咢',
1589
- '哶' => '哶',
1590
- '唐' => '唐',
1591
- '啓' => '啓',
1592
- '啣' => '啣',
1593
- '善' => '善',
1594
- '善' => '善',
1595
- '喙' => '喙',
1596
- '喫' => '喫',
1597
- '喳' => '喳',
1598
- '嗂' => '嗂',
1599
- '圖' => '圖',
1600
- '嘆' => '嘆',
1601
- '圗' => '圗',
1602
- '噑' => '噑',
1603
- '噴' => '噴',
1604
- '切' => '切',
1605
- '壮' => '壮',
1606
- '城' => '城',
1607
- '埴' => '埴',
1608
- '堍' => '堍',
1609
- '型' => '型',
1610
- '堲' => '堲',
1611
- '報' => '報',
1612
- '墬' => '墬',
1613
- '𡓤' => '𡓤',
1614
- '売' => '売',
1615
- '壷' => '壷',
1616
- '夆' => '夆',
1617
- '多' => '多',
1618
- '夢' => '夢',
1619
- '奢' => '奢',
1620
- '𡚨' => '𡚨',
1621
- '𡛪' => '𡛪',
1622
- '姬' => '姬',
1623
- '娛' => '娛',
1624
- '娧' => '娧',
1625
- '姘' => '姘',
1626
- '婦' => '婦',
1627
- '㛮' => '㛮',
1628
- '㛼' => '㛼',
1629
- '嬈' => '嬈',
1630
- '嬾' => '嬾',
1631
- '嬾' => '嬾',
1632
- '𡧈' => '𡧈',
1633
- '寃' => '寃',
1634
- '寘' => '寘',
1635
- '寧' => '寧',
1636
- '寳' => '寳',
1637
- '𡬘' => '𡬘',
1638
- '寿' => '寿',
1639
- '将' => '将',
1640
- '当' => '当',
1641
- '尢' => '尢',
1642
- '㞁' => '㞁',
1643
- '屠' => '屠',
1644
- '屮' => '屮',
1645
- '峀' => '峀',
1646
- '岍' => '岍',
1647
- '𡷤' => '𡷤',
1648
- '嵃' => '嵃',
1649
- '𡷦' => '𡷦',
1650
- '嵮' => '嵮',
1651
- '嵫' => '嵫',
1652
- '嵼' => '嵼',
1653
- '巡' => '巡',
1654
- '巢' => '巢',
1655
- '㠯' => '㠯',
1656
- '巽' => '巽',
1657
- '帨' => '帨',
1658
- '帽' => '帽',
1659
- '幩' => '幩',
1660
- '㡢' => '㡢',
1661
- '𢆃' => '𢆃',
1662
- '㡼' => '㡼',
1663
- '庰' => '庰',
1664
- '庳' => '庳',
1665
- '庶' => '庶',
1666
- '廊' => '廊',
1667
- '𪎒' => '𪎒',
1668
- '廾' => '廾',
1669
- '𢌱' => '𢌱',
1670
- '𢌱' => '𢌱',
1671
- '舁' => '舁',
1672
- '弢' => '弢',
1673
- '弢' => '弢',
1674
- '㣇' => '㣇',
1675
- '𣊸' => '𣊸',
1676
- '𦇚' => '𦇚',
1677
- '形' => '形',
1678
- '彫' => '彫',
1679
- '㣣' => '㣣',
1680
- '徚' => '徚',
1681
- '忍' => '忍',
1682
- '志' => '志',
1683
- '忹' => '忹',
1684
- '悁' => '悁',
1685
- '㤺' => '㤺',
1686
- '㤜' => '㤜',
1687
- '悔' => '悔',
1688
- '𢛔' => '𢛔',
1689
- '惇' => '惇',
1690
- '慈' => '慈',
1691
- '慌' => '慌',
1692
- '慎' => '慎',
1693
- '慌' => '慌',
1694
- '慺' => '慺',
1695
- '憎' => '憎',
1696
- '憲' => '憲',
1697
- '憤' => '憤',
1698
- '憯' => '憯',
1699
- '懞' => '懞',
1700
- '懲' => '懲',
1701
- '懶' => '懶',
1702
- '成' => '成',
1703
- '戛' => '戛',
1704
- '扝' => '扝',
1705
- '抱' => '抱',
1706
- '拔' => '拔',
1707
- '捐' => '捐',
1708
- '𢬌' => '𢬌',
1709
- '挽' => '挽',
1710
- '拼' => '拼',
1711
- '捨' => '捨',
1712
- '掃' => '掃',
1713
- '揤' => '揤',
1714
- '𢯱' => '𢯱',
1715
- '搢' => '搢',
1716
- '揅' => '揅',
1717
- '掩' => '掩',
1718
- '㨮' => '㨮',
1719
- '摩' => '摩',
1720
- '摾' => '摾',
1721
- '撝' => '撝',
1722
- '摷' => '摷',
1723
- '㩬' => '㩬',
1724
- '敏' => '敏',
1725
- '敬' => '敬',
1726
- '𣀊' => '𣀊',
1727
- '旣' => '旣',
1728
- '書' => '書',
1729
- '晉' => '晉',
1730
- '㬙' => '㬙',
1731
- '暑' => '暑',
1732
- '㬈' => '㬈',
1733
- '㫤' => '㫤',
1734
- '冒' => '冒',
1735
- '冕' => '冕',
1736
- '最' => '最',
1737
- '暜' => '暜',
1738
- '肭' => '肭',
1739
- '䏙' => '䏙',
1740
- '朗' => '朗',
1741
- '望' => '望',
1742
- '朡' => '朡',
1743
- '杞' => '杞',
1744
- '杓' => '杓',
1745
- '𣏃' => '𣏃',
1746
- '㭉' => '㭉',
1747
- '柺' => '柺',
1748
- '枅' => '枅',
1749
- '桒' => '桒',
1750
- '梅' => '梅',
1751
- '𣑭' => '𣑭',
1752
- '梎' => '梎',
1753
- '栟' => '栟',
1754
- '椔' => '椔',
1755
- '㮝' => '㮝',
1756
- '楂' => '楂',
1757
- '榣' => '榣',
1758
- '槪' => '槪',
1759
- '檨' => '檨',
1760
- '𣚣' => '𣚣',
1761
- '櫛' => '櫛',
1762
- '㰘' => '㰘',
1763
- '次' => '次',
1764
- '𣢧' => '𣢧',
1765
- '歔' => '歔',
1766
- '㱎' => '㱎',
1767
- '歲' => '歲',
1768
- '殟' => '殟',
1769
- '殺' => '殺',
1770
- '殻' => '殻',
1771
- '𣪍' => '𣪍',
1772
- '𡴋' => '𡴋',
1773
- '𣫺' => '𣫺',
1774
- '汎' => '汎',
1775
- '𣲼' => '𣲼',
1776
- '沿' => '沿',
1777
- '泍' => '泍',
1778
- '汧' => '汧',
1779
- '洖' => '洖',
1780
- '派' => '派',
1781
- '海' => '海',
1782
- '流' => '流',
1783
- '浩' => '浩',
1784
- '浸' => '浸',
1785
- '涅' => '涅',
1786
- '𣴞' => '𣴞',
1787
- '洴' => '洴',
1788
- '港' => '港',
1789
- '湮' => '湮',
1790
- '㴳' => '㴳',
1791
- '滋' => '滋',
1792
- '滇' => '滇',
1793
- '𣻑' => '𣻑',
1794
- '淹' => '淹',
1795
- '潮' => '潮',
1796
- '𣽞' => '𣽞',
1797
- '𣾎' => '𣾎',
1798
- '濆' => '濆',
1799
- '瀹' => '瀹',
1800
- '瀞' => '瀞',
1801
- '瀛' => '瀛',
1802
- '㶖' => '㶖',
1803
- '灊' => '灊',
1804
- '災' => '災',
1805
- '灷' => '灷',
1806
- '炭' => '炭',
1807
- '𠔥' => '𠔥',
1808
- '煅' => '煅',
1809
- '𤉣' => '𤉣',
1810
- '熜' => '熜',
1811
- '𤎫' => '𤎫',
1812
- '爨' => '爨',
1813
- '爵' => '爵',
1814
- '牐' => '牐',
1815
- '𤘈' => '𤘈',
1816
- '犀' => '犀',
1817
- '犕' => '犕',
1818
- '𤜵' => '𤜵',
1819
- '𤠔' => '𤠔',
1820
- '獺' => '獺',
1821
- '王' => '王',
1822
- '㺬' => '㺬',
1823
- '玥' => '玥',
1824
- '㺸' => '㺸',
1825
- '㺸' => '㺸',
1826
- '瑇' => '瑇',
1827
- '瑜' => '瑜',
1828
- '瑱' => '瑱',
1829
- '璅' => '璅',
1830
- '瓊' => '瓊',
1831
- '㼛' => '㼛',
1832
- '甤' => '甤',
1833
- '𤰶' => '𤰶',
1834
- '甾' => '甾',
1835
- '𤲒' => '𤲒',
1836
- '���' => '異',
1837
- '𢆟' => '𢆟',
1838
- '瘐' => '瘐',
1839
- '𤾡' => '𤾡',
1840
- '𤾸' => '𤾸',
1841
- '𥁄' => '𥁄',
1842
- '㿼' => '㿼',
1843
- '䀈' => '䀈',
1844
- '直' => '直',
1845
- '𥃳' => '𥃳',
1846
- '𥃲' => '𥃲',
1847
- '𥄙' => '𥄙',
1848
- '𥄳' => '𥄳',
1849
- '眞' => '眞',
1850
- '真' => '真',
1851
- '真' => '真',
1852
- '睊' => '睊',
1853
- '䀹' => '䀹',
1854
- '瞋' => '瞋',
1855
- '䁆' => '䁆',
1856
- '䂖' => '䂖',
1857
- '𥐝' => '𥐝',
1858
- '硎' => '硎',
1859
- '碌' => '碌',
1860
- '磌' => '磌',
1861
- '䃣' => '䃣',
1862
- '𥘦' => '𥘦',
1863
- '祖' => '祖',
1864
- '𥚚' => '𥚚',
1865
- '𥛅' => '𥛅',
1866
- '福' => '福',
1867
- '秫' => '秫',
1868
- '䄯' => '䄯',
1869
- '穀' => '穀',
1870
- '穊' => '穊',
1871
- '穏' => '穏',
1872
- '𥥼' => '𥥼',
1873
- '𥪧' => '𥪧',
1874
- '𥪧' => '𥪧',
1875
- '竮' => '竮',
1876
- '䈂' => '䈂',
1877
- '𥮫' => '𥮫',
1878
- '篆' => '篆',
1879
- '築' => '築',
1880
- '䈧' => '䈧',
1881
- '𥲀' => '𥲀',
1882
- '糒' => '糒',
1883
- '䊠' => '䊠',
1884
- '糨' => '糨',
1885
- '糣' => '糣',
1886
- '紀' => '紀',
1887
- '𥾆' => '𥾆',
1888
- '絣' => '絣',
1889
- '䌁' => '䌁',
1890
- '緇' => '緇',
1891
- '縂' => '縂',
1892
- '繅' => '繅',
1893
- '䌴' => '䌴',
1894
- '𦈨' => '𦈨',
1895
- '𦉇' => '𦉇',
1896
- '䍙' => '䍙',
1897
- '𦋙' => '𦋙',
1898
- '罺' => '罺',
1899
- '𦌾' => '𦌾',
1900
- '羕' => '羕',
1901
- '翺' => '翺',
1902
- '者' => '者',
1903
- '𦓚' => '𦓚',
1904
- '𦔣' => '𦔣',
1905
- '聠' => '聠',
1906
- '𦖨' => '𦖨',
1907
- '聰' => '聰',
1908
- '𣍟' => '𣍟',
1909
- '䏕' => '䏕',
1910
- '育' => '育',
1911
- '脃' => '脃',
1912
- '䐋' => '䐋',
1913
- '脾' => '脾',
1914
- '媵' => '媵',
1915
- '𦞧' => '𦞧',
1916
- '𦞵' => '𦞵',
1917
- '𣎓' => '𣎓',
1918
- '𣎜' => '𣎜',
1919
- '舁' => '舁',
1920
- '舄' => '舄',
1921
- '辞' => '辞',
1922
- '䑫' => '䑫',
1923
- '芑' => '芑',
1924
- '芋' => '芋',
1925
- '芝' => '芝',
1926
- '劳' => '劳',
1927
- '花' => '花',
1928
- '芳' => '芳',
1929
- '芽' => '芽',
1930
- '苦' => '苦',
1931
- '𦬼' => '𦬼',
1932
- '若' => '若',
1933
- '茝' => '茝',
1934
- '荣' => '荣',
1935
- '莭' => '莭',
1936
- '茣' => '茣',
1937
- '莽' => '莽',
1938
- '菧' => '菧',
1939
- '著' => '著',
1940
- '荓' => '荓',
1941
- '菊' => '菊',
1942
- '菌' => '菌',
1943
- '菜' => '菜',
1944
- '𦰶' => '𦰶',
1945
- '𦵫' => '𦵫',
1946
- '𦳕' => '𦳕',
1947
- '䔫' => '䔫',
1948
- '蓱' => '蓱',
1949
- '蓳' => '蓳',
1950
- '蔖' => '蔖',
1951
- '𧏊' => '𧏊',
1952
- '蕤' => '蕤',
1953
- '𦼬' => '𦼬',
1954
- '䕝' => '䕝',
1955
- '䕡' => '䕡',
1956
- '𦾱' => '𦾱',
1957
- '𧃒' => '𧃒',
1958
- '䕫' => '䕫',
1959
- '虐' => '虐',
1960
- '虜' => '虜',
1961
- '虧' => '虧',
1962
- '虩' => '虩',
1963
- '蚩' => '蚩',
1964
- '蚈' => '蚈',
1965
- '蜎' => '蜎',
1966
- '蛢' => '蛢',
1967
- '蝹' => '蝹',
1968
- '蜨' => '蜨',
1969
- '蝫' => '蝫',
1970
- '螆' => '螆',
1971
- '䗗' => '䗗',
1972
- '蟡' => '蟡',
1973
- '蠁' => '蠁',
1974
- '䗹' => '䗹',
1975
- '衠' => '衠',
1976
- '衣' => '衣',
1977
- '𧙧' => '𧙧',
1978
- '裗' => '裗',
1979
- '裞' => '裞',
1980
- '䘵' => '䘵',
1981
- '裺' => '裺',
1982
- '㒻' => '㒻',
1983
- '𧢮' => '𧢮',
1984
- '𧥦' => '𧥦',
1985
- '䚾' => '䚾',
1986
- '䛇' => '䛇',
1987
- '誠' => '誠',
1988
- '諭' => '諭',
1989
- '變' => '變',
1990
- '豕' => '豕',
1991
- '𧲨' => '𧲨',
1992
- '貫' => '貫',
1993
- '賁' => '賁',
1994
- '贛' => '贛',
1995
- '起' => '起',
1996
- '𧼯' => '𧼯',
1997
- '𠠄' => '𠠄',
1998
- '跋' => '跋',
1999
- '趼' => '趼',
2000
- '跰' => '跰',
2001
- '𠣞' => '𠣞',
2002
- '軔' => '軔',
2003
- '輸' => '輸',
2004
- '𨗒' => '𨗒',
2005
- '𨗭' => '𨗭',
2006
- '邔' => '邔',
2007
- '郱' => '郱',
2008
- '鄑' => '鄑',
2009
- '𨜮' => '𨜮',
2010
- '鄛' => '鄛',
2011
- '鈸' => '鈸',
2012
- '鋗' => '鋗',
2013
- '鋘' => '鋘',
2014
- '鉼' => '鉼',
2015
- '鏹' => '鏹',
2016
- '鐕' => '鐕',
2017
- '𨯺' => '𨯺',
2018
- '開' => '開',
2019
- '䦕' => '䦕',
2020
- '閷' => '閷',
2021
- '𨵷' => '𨵷',
2022
- '䧦' => '䧦',
2023
- '雃' => '雃',
2024
- '嶲' => '嶲',
2025
- '霣' => '霣',
2026
- '𩅅' => '𩅅',
2027
- '𩈚' => '𩈚',
2028
- '䩮' => '䩮',
2029
- '䩶' => '䩶',
2030
- '韠' => '韠',
2031
- '𩐊' => '𩐊',
2032
- '䪲' => '䪲',
2033
- '𩒖' => '𩒖',
2034
- '頋' => '頋',
2035
- '頋' => '頋',
2036
- '頩' => '頩',
2037
- '𩖶' => '𩖶',
2038
- '飢' => '飢',
2039
- '䬳' => '䬳',
2040
- '餩' => '餩',
2041
- '馧' => '馧',
2042
- '駂' => '駂',
2043
- '駾' => '駾',
2044
- '䯎' => '䯎',
2045
- '𩬰' => '𩬰',
2046
- '鬒' => '鬒',
2047
- '鱀' => '鱀',
2048
- '鳽' => '鳽',
2049
- '䳎' => '䳎',
2050
- '䳭' => '䳭',
2051
- '鵧' => '鵧',
2052
- '𪃎' => '𪃎',
2053
- '䳸' => '䳸',
2054
- '𪄅' => '𪄅',
2055
- '𪈎' => '𪈎',
2056
- '𪊑' => '𪊑',
2057
- '麻' => '麻',
2058
- '䵖' => '䵖',
2059
- '黹' => '黹',
2060
- '黾' => '黾',
2061
- '鼅' => '鼅',
2062
- '鼏' => '鼏',
2063
- '鼖' => '鼖',
2064
- '鼻' => '鼻',
2065
- '𪘀' => '𪘀',
2066
- ];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Polyfills/Resources/unidata/combiningClass.php DELETED
@@ -1,877 +0,0 @@
1
- <?php
2
- // phpcs:ignoreFile
3
-
4
- return [
5
- '̀' => 230,
6
- '́' => 230,
7
- '̂' => 230,
8
- '̃' => 230,
9
- '̄' => 230,
10
- '̅' => 230,
11
- '̆' => 230,
12
- '̇' => 230,
13
- '̈' => 230,
14
- '̉' => 230,
15
- '̊' => 230,
16
- '̋' => 230,
17
- '̌' => 230,
18
- '̍' => 230,
19
- '̎' => 230,
20
- '̏' => 230,
21
- '̐' => 230,
22
- '̑' => 230,
23
- '̒' => 230,
24
- '̓' => 230,
25
- '̔' => 230,
26
- '̕' => 232,
27
- '̖' => 220,
28
- '̗' => 220,
29
- '̘' => 220,
30
- '̙' => 220,
31
- '̚' => 232,
32
- '̛' => 216,
33
- '̜' => 220,
34
- '̝' => 220,
35
- '̞' => 220,
36
- '̟' => 220,
37
- '̠' => 220,
38
- '̡' => 202,
39
- '̢' => 202,
40
- '̣' => 220,
41
- '̤' => 220,
42
- '̥' => 220,
43
- '̦' => 220,
44
- '̧' => 202,
45
- '̨' => 202,
46
- '̩' => 220,
47
- '̪' => 220,
48
- '̫' => 220,
49
- '̬' => 220,
50
- '̭' => 220,
51
- '̮' => 220,
52
- '̯' => 220,
53
- '̰' => 220,
54
- '̱' => 220,
55
- '̲' => 220,
56
- '̳' => 220,
57
- '̴' => 1,
58
- '̵' => 1,
59
- '̶' => 1,
60
- '̷' => 1,
61
- '̸' => 1,
62
- '̹' => 220,
63
- '̺' => 220,
64
- '̻' => 220,
65
- '̼' => 220,
66
- '̽' => 230,
67
- '̾' => 230,
68
- '̿' => 230,
69
- '̀' => 230,
70
- '́' => 230,
71
- '͂' => 230,
72
- '̓' => 230,
73
- '̈́' => 230,
74
- 'ͅ' => 240,
75
- '͆' => 230,
76
- '͇' => 220,
77
- '͈' => 220,
78
- '͉' => 220,
79
- '͊' => 230,
80
- '͋' => 230,
81
- '͌' => 230,
82
- '͍' => 220,
83
- '͎' => 220,
84
- '͐' => 230,
85
- '͑' => 230,
86
- '͒' => 230,
87
- '͓' => 220,
88
- '͔' => 220,
89
- '͕' => 220,
90
- '͖' => 220,
91
- '͗' => 230,
92
- '͘' => 232,
93
- '͙' => 220,
94
- '͚' => 220,
95
- '͛' => 230,
96
- '͜' => 233,
97
- '͝' => 234,
98
- '͞' => 234,
99
- '͟' => 233,
100
- '͠' => 234,
101
- '͡' => 234,
102
- '͢' => 233,
103
- 'ͣ' => 230,
104
- 'ͤ' => 230,
105
- 'ͥ' => 230,
106
- 'ͦ' => 230,
107
- 'ͧ' => 230,
108
- 'ͨ' => 230,
109
- 'ͩ' => 230,
110
- 'ͪ' => 230,
111
- 'ͫ' => 230,
112
- 'ͬ' => 230,
113
- 'ͭ' => 230,
114
- 'ͮ' => 230,
115
- 'ͯ' => 230,
116
- '҃' => 230,
117
- '҄' => 230,
118
- '҅' => 230,
119
- '҆' => 230,
120
- '҇' => 230,
121
- '֑' => 220,
122
- '֒' => 230,
123
- '֓' => 230,
124
- '֔' => 230,
125
- '֕' => 230,
126
- '֖' => 220,
127
- '֗' => 230,
128
- '֘' => 230,
129
- '֙' => 230,
130
- '֚' => 222,
131
- '֛' => 220,
132
- '֜' => 230,
133
- '֝' => 230,
134
- '֞' => 230,
135
- '֟' => 230,
136
- '֠' => 230,
137
- '֡' => 230,
138
- '֢' => 220,
139
- '֣' => 220,
140
- '֤' => 220,
141
- '֥' => 220,
142
- '֦' => 220,
143
- '֧' => 220,
144
- '֨' => 230,
145
- '֩' => 230,
146
- '֪' => 220,
147
- '֫' => 230,
148
- '֬' => 230,
149
- '֭' => 222,
150
- '֮' => 228,
151
- '֯' => 230,
152
- 'ְ' => 10,
153
- 'ֱ' => 11,
154
- 'ֲ' => 12,
155
- 'ֳ' => 13,
156
- 'ִ' => 14,
157
- 'ֵ' => 15,
158
- 'ֶ' => 16,
159
- 'ַ' => 17,
160
- 'ָ' => 18,
161
- 'ֹ' => 19,
162
- 'ֺ' => 19,
163
- 'ֻ' => 20,
164
- 'ּ' => 21,
165
- 'ֽ' => 22,
166
- 'ֿ' => 23,
167
- 'ׁ' => 24,
168
- 'ׂ' => 25,
169
- 'ׄ' => 230,
170
- 'ׅ' => 220,
171
- 'ׇ' => 18,
172
- 'ؐ' => 230,
173
- 'ؑ' => 230,
174
- 'ؒ' => 230,
175
- 'ؓ' => 230,
176
- 'ؔ' => 230,
177
- 'ؕ' => 230,
178
- 'ؖ' => 230,
179
- 'ؗ' => 230,
180
- 'ؘ' => 30,
181
- 'ؙ' => 31,
182
- 'ؚ' => 32,
183
- 'ً' => 27,
184
- 'ٌ' => 28,
185
- 'ٍ' => 29,
186
- 'َ' => 30,
187
- 'ُ' => 31,
188
- 'ِ' => 32,
189
- 'ّ' => 33,
190
- 'ْ' => 34,
191
- 'ٓ' => 230,
192
- 'ٔ' => 230,
193
- 'ٕ' => 220,
194
- 'ٖ' => 220,
195
- 'ٗ' => 230,
196
- '٘' => 230,
197
- 'ٙ' => 230,
198
- 'ٚ' => 230,
199
- 'ٛ' => 230,
200
- 'ٜ' => 220,
201
- 'ٝ' => 230,
202
- 'ٞ' => 230,
203
- 'ٟ' => 220,
204
- 'ٰ' => 35,
205
- 'ۖ' => 230,
206
- 'ۗ' => 230,
207
- 'ۘ' => 230,
208
- 'ۙ' => 230,
209
- 'ۚ' => 230,
210
- 'ۛ' => 230,
211
- 'ۜ' => 230,
212
- '۟' => 230,
213
- '۠' => 230,
214
- 'ۡ' => 230,
215
- 'ۢ' => 230,
216
- 'ۣ' => 220,
217
- 'ۤ' => 230,
218
- 'ۧ' => 230,
219
- 'ۨ' => 230,
220
- '۪' => 220,
221
- '۫' => 230,
222
- '۬' => 230,
223
- 'ۭ' => 220,
224
- 'ܑ' => 36,
225
- 'ܰ' => 230,
226
- 'ܱ' => 220,
227
- 'ܲ' => 230,
228
- 'ܳ' => 230,
229
- 'ܴ' => 220,
230
- 'ܵ' => 230,
231
- 'ܶ' => 230,
232
- 'ܷ' => 220,
233
- 'ܸ' => 220,
234
- 'ܹ' => 220,
235
- 'ܺ' => 230,
236
- 'ܻ' => 220,
237
- 'ܼ' => 220,
238
- 'ܽ' => 230,
239
- 'ܾ' => 220,
240
- 'ܿ' => 230,
241
- '݀' => 230,
242
- '݁' => 230,
243
- '݂' => 220,
244
- '݃' => 230,
245
- '݄' => 220,
246
- '݅' => 230,
247
- '݆' => 220,
248
- '݇' => 230,
249
- '݈' => 220,
250
- '݉' => 230,
251
- '݊' => 230,
252
- '߫' => 230,
253
- '߬' => 230,
254
- '߭' => 230,
255
- '߮' => 230,
256
- '߯' => 230,
257
- '߰' => 230,
258
- '߱' => 230,
259
- '߲' => 220,
260
- '߳' => 230,
261
- '߽' => 220,
262
- 'ࠖ' => 230,
263
- 'ࠗ' => 230,
264
- '࠘' => 230,
265
- '࠙' => 230,
266
- 'ࠛ' => 230,
267
- 'ࠜ' => 230,
268
- 'ࠝ' => 230,
269
- 'ࠞ' => 230,
270
- 'ࠟ' => 230,
271
- 'ࠠ' => 230,
272
- 'ࠡ' => 230,
273
- 'ࠢ' => 230,
274
- 'ࠣ' => 230,
275
- 'ࠥ' => 230,
276
- 'ࠦ' => 230,
277
- 'ࠧ' => 230,
278
- 'ࠩ' => 230,
279
- 'ࠪ' => 230,
280
- 'ࠫ' => 230,
281
- 'ࠬ' => 230,
282
- '࠭' => 230,
283
- '࡙' => 220,
284
- '࡚' => 220,
285
- '࡛' => 220,
286
- '࣓' => 220,
287
- 'ࣔ' => 230,
288
- 'ࣕ' => 230,
289
- 'ࣖ' => 230,
290
- 'ࣗ' => 230,
291
- 'ࣘ' => 230,
292
- 'ࣙ' => 230,
293
- 'ࣚ' => 230,
294
- 'ࣛ' => 230,
295
- 'ࣜ' => 230,
296
- 'ࣝ' => 230,
297
- 'ࣞ' => 230,
298
- 'ࣟ' => 230,
299
- '࣠' => 230,
300
- '࣡' => 230,
301
- 'ࣣ' => 220,
302
- 'ࣤ' => 230,
303
- 'ࣥ' => 230,
304
- 'ࣦ' => 220,
305
- 'ࣧ' => 230,
306
- 'ࣨ' => 230,
307
- 'ࣩ' => 220,
308
- '࣪' => 230,
309
- '࣫' => 230,
310
- '࣬' => 230,
311
- '࣭' => 220,
312
- '࣮' => 220,
313
- '࣯' => 220,
314
- 'ࣰ' => 27,
315
- 'ࣱ' => 28,
316
- 'ࣲ' => 29,
317
- 'ࣳ' => 230,
318
- 'ࣴ' => 230,
319
- 'ࣵ' => 230,
320
- 'ࣶ' => 220,
321
- 'ࣷ' => 230,
322
- 'ࣸ' => 230,
323
- 'ࣹ' => 220,
324
- 'ࣺ' => 220,
325
- 'ࣻ' => 230,
326
- 'ࣼ' => 230,
327
- 'ࣽ' => 230,
328
- 'ࣾ' => 230,
329
- 'ࣿ' => 230,
330
- '़' => 7,
331
- '्' => 9,
332
- '॑' => 230,
333
- '॒' => 220,
334
- '॓' => 230,
335
- '॔' => 230,
336
- '়' => 7,
337
- '্' => 9,
338
- '৾' => 230,
339
- '਼' => 7,
340
- '੍' => 9,
341
- '઼' => 7,
342
- '્' => 9,
343
- '଼' => 7,
344
- '୍' => 9,
345
- '்' => 9,
346
- '్' => 9,
347
- 'ౕ' => 84,
348
- 'ౖ' => 91,
349
- '಼' => 7,
350
- '್' => 9,
351
- '഻' => 9,
352
- '഼' => 9,
353
- '്' => 9,
354
- '්' => 9,
355
- 'ุ' => 103,
356
- 'ู' => 103,
357
- 'ฺ' => 9,
358
- '่' => 107,
359
- '้' => 107,
360
- '๊' => 107,
361
- '๋' => 107,
362
- 'ຸ' => 118,
363
- 'ູ' => 118,
364
- '຺' => 9,
365
- '່' => 122,
366
- '້' => 122,
367
- '໊' => 122,
368
- '໋' => 122,
369
- '༘' => 220,
370
- '༙' => 220,
371
- '༵' => 220,
372
- '༷' => 220,
373
- '༹' => 216,
374
- 'ཱ' => 129,
375
- 'ི' => 130,
376
- 'ུ' => 132,
377
- 'ེ' => 130,
378
- 'ཻ' => 130,
379
- 'ོ' => 130,
380
- 'ཽ' => 130,
381
- 'ྀ' => 130,
382
- 'ྂ' => 230,
383
- 'ྃ' => 230,
384
- '྄' => 9,
385
- '྆' => 230,
386
- '྇' => 230,
387
- '࿆' => 220,
388
- '့' => 7,
389
- '္' => 9,
390
- '်' => 9,
391
- 'ႍ' => 220,
392
- '፝' => 230,
393
- '፞' => 230,
394
- '፟' => 230,
395
- '᜔' => 9,
396
- '᜴' => 9,
397
- '្' => 9,
398
- '៝' => 230,
399
- 'ᢩ' => 228,
400
- '᤹' => 222,
401
- '᤺' => 230,
402
- '᤻' => 220,
403
- 'ᨗ' => 230,
404
- 'ᨘ' => 220,
405
- '᩠' => 9,
406
- '᩵' => 230,
407
- '᩶' => 230,
408
- '᩷' => 230,
409
- '᩸' => 230,
410
- '᩹' => 230,
411
- '᩺' => 230,
412
- '᩻' => 230,
413
- '᩼' => 230,
414
- '᩿' => 220,
415
- '᪰' => 230,
416
- '᪱' => 230,
417
- '᪲' => 230,
418
- '᪳' => 230,
419
- '᪴' => 230,
420
- '᪵' => 220,
421
- '᪶' => 220,
422
- '᪷' => 220,
423
- '᪸' => 220,
424
- '᪹' => 220,
425
- '᪺' => 220,
426
- '᪻' => 230,
427
- '᪼' => 230,
428
- '᪽' => 220,
429
- 'ᪿ' => 220,
430
- 'ᫀ' => 220,
431
- '᬴' => 7,
432
- '᭄' => 9,
433
- '᭫' => 230,
434
- '᭬' => 220,
435
- '᭭' => 230,
436
- '᭮' => 230,
437
- '᭯' => 230,
438
- '᭰' => 230,
439
- '᭱' => 230,
440
- '᭲' => 230,
441
- '᭳' => 230,
442
- '᮪' => 9,
443
- '᮫' => 9,
444
- '᯦' => 7,
445
- '᯲' => 9,
446
- '᯳' => 9,
447
- '᰷' => 7,
448
- '᳐' => 230,
449
- '᳑' => 230,
450
- '᳒' => 230,
451
- '᳔' => 1,
452
- '᳕' => 220,
453
- '᳖' => 220,
454
- '᳗' => 220,
455
- '᳘' => 220,
456
- '᳙' => 220,
457
- '᳚' => 230,
458
- '᳛' => 230,
459
- '᳜' => 220,
460
- '᳝' => 220,
461
- '᳞' => 220,
462
- '᳟' => 220,
463
- '᳠' => 230,
464
- '᳢' => 1,
465
- '᳣' => 1,
466
- '᳤' => 1,
467
- '᳥' => 1,
468
- '᳦' => 1,
469
- '᳧' => 1,
470
- '᳨' => 1,
471
- '᳭' => 220,
472
- '᳴' => 230,
473
- '᳸' => 230,
474
- '᳹' => 230,
475
- '᷀' => 230,
476
- '᷁' => 230,
477
- '᷂' => 220,
478
- '᷃' => 230,
479
- '᷄' => 230,
480
- '᷅' => 230,
481
- '᷆' => 230,
482
- '᷇' => 230,
483
- '᷈' => 230,
484
- '᷉' => 230,
485
- '᷊' => 220,
486
- '᷋' => 230,
487
- '᷌' => 230,
488
- '᷍' => 234,
489
- '᷎' => 214,
490
- '᷏' => 220,
491
- '᷐' => 202,
492
- '᷑' => 230,
493
- '᷒' => 230,
494
- 'ᷓ' => 230,
495
- 'ᷔ' => 230,
496
- 'ᷕ' => 230,
497
- 'ᷖ' => 230,
498
- 'ᷗ' => 230,
499
- 'ᷘ' => 230,
500
- 'ᷙ' => 230,
501
- 'ᷚ' => 230,
502
- 'ᷛ' => 230,
503
- 'ᷜ' => 230,
504
- 'ᷝ' => 230,
505
- 'ᷞ' => 230,
506
- 'ᷟ' => 230,
507
- 'ᷠ' => 230,
508
- 'ᷡ' => 230,
509
- 'ᷢ' => 230,
510
- 'ᷣ' => 230,
511
- 'ᷤ' => 230,
512
- 'ᷥ' => 230,
513
- 'ᷦ' => 230,
514
- 'ᷧ' => 230,
515
- 'ᷨ' => 230,
516
- 'ᷩ' => 230,
517
- 'ᷪ' => 230,
518
- 'ᷫ' => 230,
519
- 'ᷬ' => 230,
520
- 'ᷭ' => 230,
521
- 'ᷮ' => 230,
522
- 'ᷯ' => 230,
523
- 'ᷰ' => 230,
524
- 'ᷱ' => 230,
525
- 'ᷲ' => 230,
526
- 'ᷳ' => 230,
527
- 'ᷴ' => 230,
528
- '᷵' => 230,
529
- '᷶' => 232,
530
- '᷷' => 228,
531
- '᷸' => 228,
532
- '᷹' => 220,
533
- '᷻' => 230,
534
- '᷼' => 233,
535
- '᷽' => 220,
536
- '᷾' => 230,
537
- '᷿' => 220,
538
- '⃐' => 230,
539
- '⃑' => 230,
540
- '⃒' => 1,
541
- '⃓' => 1,
542
- '⃔' => 230,
543
- '⃕' => 230,
544
- '⃖' => 230,
545
- '⃗' => 230,
546
- '⃘' => 1,
547
- '⃙' => 1,
548
- '⃚' => 1,
549
- '⃛' => 230,
550
- '⃜' => 230,
551
- '⃡' => 230,
552
- '⃥' => 1,
553
- '⃦' => 1,
554
- '⃧' => 230,
555
- '⃨' => 220,
556
- '⃩' => 230,
557
- '⃪' => 1,
558
- '⃫' => 1,
559
- '⃬' => 220,
560
- '⃭' => 220,
561
- '⃮' => 220,
562
- '⃯' => 220,
563
- '⃰' => 230,
564
- '⳯' => 230,
565
- '⳰' => 230,
566
- '⳱' => 230,
567
- '⵿' => 9,
568
- 'ⷠ' => 230,
569
- 'ⷡ' => 230,
570
- 'ⷢ' => 230,
571
- 'ⷣ' => 230,
572
- 'ⷤ' => 230,
573
- 'ⷥ' => 230,
574
- 'ⷦ' => 230,
575
- 'ⷧ' => 230,
576
- 'ⷨ' => 230,
577
- 'ⷩ' => 230,
578
- 'ⷪ' => 230,
579
- 'ⷫ' => 230,
580
- 'ⷬ' => 230,
581
- 'ⷭ' => 230,
582
- 'ⷮ' => 230,
583
- 'ⷯ' => 230,
584
- 'ⷰ' => 230,
585
- 'ⷱ' => 230,
586
- 'ⷲ' => 230,
587
- 'ⷳ' => 230,
588
- 'ⷴ' => 230,
589
- 'ⷵ' => 230,
590
- 'ⷶ' => 230,
591
- 'ⷷ' => 230,
592
- 'ⷸ' => 230,
593
- 'ⷹ' => 230,
594
- 'ⷺ' => 230,
595
- 'ⷻ' => 230,
596
- 'ⷼ' => 230,
597
- 'ⷽ' => 230,
598
- 'ⷾ' => 230,
599
- 'ⷿ' => 230,
600
- '〪' => 218,
601
- '〫' => 228,
602
- '〬' => 232,
603
- '〭' => 222,
604
- '〮' => 224,
605
- '〯' => 224,
606
- '゙' => 8,
607
- '゚' => 8,
608
- '꙯' => 230,
609
- 'ꙴ' => 230,
610
- 'ꙵ' => 230,
611
- 'ꙶ' => 230,
612
- 'ꙷ' => 230,
613
- 'ꙸ' => 230,
614
- 'ꙹ' => 230,
615
- 'ꙺ' => 230,
616
- 'ꙻ' => 230,
617
- '꙼' => 230,
618
- '꙽' => 230,
619
- 'ꚞ' => 230,
620
- 'ꚟ' => 230,
621
- '꛰' => 230,
622
- '꛱' => 230,
623
- '꠆' => 9,
624
- '꠬' => 9,
625
- '꣄' => 9,
626
- '꣠' => 230,
627
- '꣡' => 230,
628
- '꣢' => 230,
629
- '꣣' => 230,
630
- '꣤' => 230,
631
- '꣥' => 230,
632
- '꣦' => 230,
633
- '꣧' => 230,
634
- '꣨' => 230,
635
- '꣩' => 230,
636
- '꣪' => 230,
637
- '꣫' => 230,
638
- '꣬' => 230,
639
- '꣭' => 230,
640
- '꣮' => 230,
641
- '꣯' => 230,
642
- '꣰' => 230,
643
- '꣱' => 230,
644
- '꤫' => 220,
645
- '꤬' => 220,
646
- '꤭' => 220,
647
- '꥓' => 9,
648
- '꦳' => 7,
649
- '꧀' => 9,
650
- 'ꪰ' => 230,
651
- 'ꪲ' => 230,
652
- 'ꪳ' => 230,
653
- 'ꪴ' => 220,
654
- 'ꪷ' => 230,
655
- 'ꪸ' => 230,
656
- 'ꪾ' => 230,
657
- '꪿' => 230,
658
- '꫁' => 230,
659
- '꫶' => 9,
660
- '꯭' => 9,
661
- 'ﬞ' => 26,
662
- '︠' => 230,
663
- '︡' => 230,
664
- '︢' => 230,
665
- '︣' => 230,
666
- '︤' => 230,
667
- '︥' => 230,
668
- '︦' => 230,
669
- '︧' => 220,
670
- '︨' => 220,
671
- '︩' => 220,
672
- '︪' => 220,
673
- '︫' => 220,
674
- '︬' => 220,
675
- '︭' => 220,
676
- '︮' => 230,
677
- '︯' => 230,
678
- '𐇽' => 220,
679
- '𐋠' => 220,
680
- '𐍶' => 230,
681
- '𐍷' => 230,
682
- '𐍸' => 230,
683
- '𐍹' => 230,
684
- '𐍺' => 230,
685
- '𐨍' => 220,
686
- '𐨏' => 230,
687
- '𐨸' => 230,
688
- '𐨹' => 1,
689
- '𐨺' => 220,
690
- '𐨿' => 9,
691
- '𐫥' => 230,
692
- '𐫦' => 220,
693
- '𐴤' => 230,
694
- '𐴥' => 230,
695
- '𐴦' => 230,
696
- '𐴧' => 230,
697
- '𐺫' => 230,
698
- '𐺬' => 230,
699
- '𐽆' => 220,
700
- '𐽇' => 220,
701
- '𐽈' => 230,
702
- '𐽉' => 230,
703
- '𐽊' => 230,
704
- '𐽋' => 220,
705
- '𐽌' => 230,
706
- '𐽍' => 220,
707
- '𐽎' => 220,
708
- '𐽏' => 220,
709
- '𐽐' => 220,
710
- '𑁆' => 9,
711
- '𑁿' => 9,
712
- '𑂹' => 9,
713
- '𑂺' => 7,
714
- '𑄀' => 230,
715
- '𑄁' => 230,
716
- '𑄂' => 230,
717
- '𑄳' => 9,
718
- '𑄴' => 9,
719
- '𑅳' => 7,
720
- '𑇀' => 9,
721
- '𑇊' => 7,
722
- '𑈵' => 9,
723
- '𑈶' => 7,
724
- '𑋩' => 7,
725
- '𑋪' => 9,
726
- '𑌻' => 7,
727
- '𑌼' => 7,
728
- '𑍍' => 9,
729
- '𑍦' => 230,
730
- '𑍧' => 230,
731
- '𑍨' => 230,
732
- '𑍩' => 230,
733
- '𑍪' => 230,
734
- '𑍫' => 230,
735
- '𑍬' => 230,
736
- '𑍰' => 230,
737
- '𑍱' => 230,
738
- '𑍲' => 230,
739
- '𑍳' => 230,
740
- '𑍴' => 230,
741
- '𑑂' => 9,
742
- '𑑆' => 7,
743
- '𑑞' => 230,
744
- '𑓂' => 9,
745
- '𑓃' => 7,
746
- '𑖿' => 9,
747
- '𑗀' => 7,
748
- '𑘿' => 9,
749
- '𑚶' => 9,
750
- '𑚷' => 7,
751
- '𑜫' => 9,
752
- '𑠹' => 9,
753
- '𑠺' => 7,
754
- '𑤽' => 9,
755
- '𑤾' => 9,
756
- '𑥃' => 7,
757
- '𑧠' => 9,
758
- '𑨴' => 9,
759
- '𑩇' => 9,
760
- '𑪙' => 9,
761
- '𑰿' => 9,
762
- '𑵂' => 7,
763
- '𑵄' => 9,
764
- '𑵅' => 9,
765
- '𑶗' => 9,
766
- '𖫰' => 1,
767
- '𖫱' => 1,
768
- '𖫲' => 1,
769
- '𖫳' => 1,
770
- '𖫴' => 1,
771
- '𖬰' => 230,
772
- '𖬱' => 230,
773
- '𖬲' => 230,
774
- '𖬳' => 230,
775
- '𖬴' => 230,
776
- '𖬵' => 230,
777
- '𖬶' => 230,
778
- '𖿰' => 6,
779
- '𖿱' => 6,
780
- '𛲞' => 1,
781
- '𝅥' => 216,
782
- '𝅦' => 216,
783
- '𝅧' => 1,
784
- '𝅨' => 1,
785
- '𝅩' => 1,
786
- '𝅭' => 226,
787
- '𝅮' => 216,
788
- '𝅯' => 216,
789
- '𝅰' => 216,
790
- '𝅱' => 216,
791
- '𝅲' => 216,
792
- '𝅻' => 220,
793
- '𝅼' => 220,
794
- '𝅽' => 220,
795
- '𝅾' => 220,
796
- '𝅿' => 220,
797
- '𝆀' => 220,
798
- '𝆁' => 220,
799
- '𝆂' => 220,
800
- '𝆅' => 230,
801
- '𝆆' => 230,
802
- '𝆇' => 230,
803
- '𝆈' => 230,
804
- '𝆉' => 230,
805
- '𝆊' => 220,
806
- '𝆋' => 220,
807
- '𝆪' => 230,
808
- '𝆫' => 230,
809
- '𝆬' => 230,
810
- '𝆭' => 230,
811
- '𝉂' => 230,
812
- '𝉃' => 230,
813
- '𝉄' => 230,
814
- '𞀀' => 230,
815
- '𞀁' => 230,
816
- '𞀂' => 230,
817
- '𞀃' => 230,
818
- '𞀄' => 230,
819
- '𞀅' => 230,
820
- '𞀆' => 230,
821
- '𞀈' => 230,
822
- '𞀉' => 230,
823
- '𞀊' => 230,
824
- '𞀋' => 230,
825
- '𞀌' => 230,
826
- '𞀍' => 230,
827
- '𞀎' => 230,
828
- '𞀏' => 230,
829
- '𞀐' => 230,
830
- '𞀑' => 230,
831
- '𞀒' => 230,
832
- '𞀓' => 230,
833
- '𞀔' => 230,
834
- '𞀕' => 230,
835
- '𞀖' => 230,
836
- '𞀗' => 230,
837
- '𞀘' => 230,
838
- '𞀛' => 230,
839
- '𞀜' => 230,
840
- '𞀝' => 230,
841
- '𞀞' => 230,
842
- '𞀟' => 230,
843
- '𞀠' => 230,
844
- '𞀡' => 230,
845
- '𞀣' => 230,
846
- '𞀤' => 230,
847
- '𞀦' => 230,
848
- '𞀧' => 230,
849
- '𞀨' => 230,
850
- '𞀩' => 230,
851
- '𞀪' => 230,
852
- '𞄰' => 230,
853
- '𞄱' => 230,
854
- '𞄲' => 230,
855
- '𞄳' => 230,
856
- '𞄴' => 230,
857
- '𞄵' => 230,
858
- '𞄶' => 230,
859
- '𞋬' => 230,
860
- '𞋭' => 230,
861
- '𞋮' => 230,
862
- '𞋯' => 230,
863
- '𞣐' => 220,
864
- '𞣑' => 220,
865
- '𞣒' => 220,
866
- '𞣓' => 220,
867
- '𞣔' => 220,
868
- '𞣕' => 220,
869
- '𞣖' => 220,
870
- '𞥄' => 230,
871
- '𞥅' => 230,
872
- '𞥆' => 230,
873
- '𞥇' => 230,
874
- '𞥈' => 230,
875
- '𞥉' => 230,
876
- '𞥊' => 7,
877
- ];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Polyfills/Resources/unidata/compatibilityDecomposition.php DELETED
@@ -1,3696 +0,0 @@
1
- <?php
2
- // phpcs:ignoreFile
3
-
4
- return [
5
- ' ' => ' ',
6
- '¨' => ' ̈',
7
- 'ª' => 'a',
8
- '¯' => ' ̄',
9
- '²' => '2',
10
- '³' => '3',
11
- '´' => ' ́',
12
- 'µ' => 'μ',
13
- '¸' => ' ̧',
14
- '¹' => '1',
15
- 'º' => 'o',
16
- '¼' => '1⁄4',
17
- '½' => '1⁄2',
18
- '¾' => '3⁄4',
19
- 'IJ' => 'IJ',
20
- 'ij' => 'ij',
21
- 'Ŀ' => 'L·',
22
- 'ŀ' => 'l·',
23
- 'ʼn' => 'ʼn',
24
- 'ſ' => 's',
25
- 'DŽ' => 'DŽ',
26
- 'Dž' => 'Dž',
27
- 'dž' => 'dž',
28
- 'LJ' => 'LJ',
29
- 'Lj' => 'Lj',
30
- 'lj' => 'lj',
31
- 'NJ' => 'NJ',
32
- 'Nj' => 'Nj',
33
- 'nj' => 'nj',
34
- 'DZ' => 'DZ',
35
- 'Dz' => 'Dz',
36
- 'dz' => 'dz',
37
- 'ʰ' => 'h',
38
- 'ʱ' => 'ɦ',
39
- 'ʲ' => 'j',
40
- 'ʳ' => 'r',
41
- 'ʴ' => 'ɹ',
42
- 'ʵ' => 'ɻ',
43
- 'ʶ' => 'ʁ',
44
- 'ʷ' => 'w',
45
- 'ʸ' => 'y',
46
- '˘' => ' ̆',
47
- '˙' => ' ̇',
48
- '˚' => ' ̊',
49
- '˛' => ' ̨',
50
- '˜' => ' ̃',
51
- '˝' => ' ̋',
52
- 'ˠ' => 'ɣ',
53
- 'ˡ' => 'l',
54
- 'ˢ' => 's',
55
- 'ˣ' => 'x',
56
- 'ˤ' => 'ʕ',
57
- 'ͺ' => ' ͅ',
58
- '΄' => ' ́',
59
- '΅' => ' ̈́',
60
- 'ϐ' => 'β',
61
- 'ϑ' => 'θ',
62
- 'ϒ' => 'Υ',
63
- 'ϓ' => 'Ύ',
64
- 'ϔ' => 'Ϋ',
65
- 'ϕ' => 'φ',
66
- 'ϖ' => 'π',
67
- 'ϰ' => 'κ',
68
- 'ϱ' => 'ρ',
69
- 'ϲ' => 'ς',
70
- 'ϴ' => 'Θ',
71
- 'ϵ' => 'ε',
72
- 'Ϲ' => 'Σ',
73
- 'և' => 'եւ',
74
- 'ٵ' => 'اٴ',
75
- 'ٶ' => 'وٴ',
76
- 'ٷ' => 'ۇٴ',
77
- 'ٸ' => 'يٴ',
78
- 'ำ' => 'ํา',
79
- 'ຳ' => 'ໍາ',
80
- 'ໜ' => 'ຫນ',
81
- 'ໝ' => 'ຫມ',
82
- '༌' => '་',
83
- 'ཷ' => 'ྲཱྀ',
84
- 'ཹ' => 'ླཱྀ',
85
- 'ჼ' => 'ნ',
86
- 'ᴬ' => 'A',
87
- 'ᴭ' => 'Æ',
88
- 'ᴮ' => 'B',
89
- 'ᴰ' => 'D',
90
- 'ᴱ' => 'E',
91
- 'ᴲ' => 'Ǝ',
92
- 'ᴳ' => 'G',
93
- 'ᴴ' => 'H',
94
- 'ᴵ' => 'I',
95
- 'ᴶ' => 'J',
96
- 'ᴷ' => 'K',
97
- 'ᴸ' => 'L',
98
- 'ᴹ' => 'M',
99
- 'ᴺ' => 'N',
100
- 'ᴼ' => 'O',
101
- 'ᴽ' => 'Ȣ',
102
- 'ᴾ' => 'P',
103
- 'ᴿ' => 'R',
104
- 'ᵀ' => 'T',
105
- 'ᵁ' => 'U',
106
- 'ᵂ' => 'W',
107
- 'ᵃ' => 'a',
108
- 'ᵄ' => 'ɐ',
109
- 'ᵅ' => 'ɑ',
110
- 'ᵆ' => 'ᴂ',
111
- 'ᵇ' => 'b',
112
- 'ᵈ' => 'd',
113
- 'ᵉ' => 'e',
114
- 'ᵊ' => 'ə',
115
- 'ᵋ' => 'ɛ',
116
- 'ᵌ' => 'ɜ',
117
- 'ᵍ' => 'g',
118
- 'ᵏ' => 'k',
119
- 'ᵐ' => 'm',
120
- 'ᵑ' => 'ŋ',
121
- 'ᵒ' => 'o',
122
- 'ᵓ' => 'ɔ',
123
- 'ᵔ' => 'ᴖ',
124
- 'ᵕ' => 'ᴗ',
125
- 'ᵖ' => 'p',
126
- 'ᵗ' => 't',
127
- 'ᵘ' => 'u',
128
- 'ᵙ' => 'ᴝ',
129
- 'ᵚ' => 'ɯ',
130
- 'ᵛ' => 'v',
131
- 'ᵜ' => 'ᴥ',
132
- 'ᵝ' => 'β',
133
- 'ᵞ' => 'γ',
134
- 'ᵟ' => 'δ',
135
- 'ᵠ' => 'φ',
136
- 'ᵡ' => 'χ',
137
- 'ᵢ' => 'i',
138
- 'ᵣ' => 'r',
139
- 'ᵤ' => 'u',
140
- 'ᵥ' => 'v',
141
- 'ᵦ' => 'β',
142
- 'ᵧ' => 'γ',
143
- 'ᵨ' => 'ρ',
144
- 'ᵩ' => 'φ',
145
- 'ᵪ' => 'χ',
146
- 'ᵸ' => 'н',
147
- 'ᶛ' => 'ɒ',
148
- 'ᶜ' => 'c',
149
- 'ᶝ' => 'ɕ',
150
- 'ᶞ' => 'ð',
151
- 'ᶟ' => 'ɜ',
152
- 'ᶠ' => 'f',
153
- 'ᶡ' => 'ɟ',
154
- 'ᶢ' => 'ɡ',
155
- 'ᶣ' => 'ɥ',
156
- 'ᶤ' => 'ɨ',
157
- 'ᶥ' => 'ɩ',
158
- 'ᶦ' => 'ɪ',
159
- 'ᶧ' => 'ᵻ',
160
- 'ᶨ' => 'ʝ',
161
- 'ᶩ' => 'ɭ',
162
- 'ᶪ' => 'ᶅ',
163
- 'ᶫ' => 'ʟ',
164
- 'ᶬ' => 'ɱ',
165
- 'ᶭ' => 'ɰ',
166
- 'ᶮ' => 'ɲ',
167
- 'ᶯ' => 'ɳ',
168
- 'ᶰ' => 'ɴ',
169
- 'ᶱ' => 'ɵ',
170
- 'ᶲ' => 'ɸ',
171
- 'ᶳ' => 'ʂ',
172
- 'ᶴ' => 'ʃ',
173
- 'ᶵ' => 'ƫ',
174
- 'ᶶ' => 'ʉ',
175
- 'ᶷ' => 'ʊ',
176
- 'ᶸ' => 'ᴜ',
177
- 'ᶹ' => 'ʋ',
178
- 'ᶺ' => 'ʌ',
179
- 'ᶻ' => 'z',
180
- 'ᶼ' => 'ʐ',
181
- 'ᶽ' => 'ʑ',
182
- 'ᶾ' => 'ʒ',
183
- 'ᶿ' => 'θ',
184
- 'ẚ' => 'aʾ',
185
- 'ẛ' => 'ṡ',
186
- '᾽' => ' ̓',
187
- '᾿' => ' ̓',
188
- '῀' => ' ͂',
189
- '῁' => ' ̈͂',
190
- '῍' => ' ̓̀',
191
- '῎' => ' ̓́',
192
- '῏' => ' ̓͂',
193
- '῝' => ' ̔̀',
194
- '῞' => ' ̔́',
195
- '῟' => ' ̔͂',
196
- '῭' => ' ̈̀',
197
- '΅' => ' ̈́',
198
- '´' => ' ́',
199
- '῾' => ' ̔',
200
- ' ' => ' ',
201
- ' ' => ' ',
202
- ' ' => ' ',
203
- ' ' => ' ',
204
- ' ' => ' ',
205
- ' ' => ' ',
206
- ' ' => ' ',
207
- ' ' => ' ',
208
- ' ' => ' ',
209
- ' ' => ' ',
210
- ' ' => ' ',
211
- '‑' => '‐',
212
- '‗' => ' ̳',
213
- '․' => '.',
214
- '‥' => '..',
215
- '…' => '...',
216
- ' ' => ' ',
217
- '″' => '′′',
218
- '‴' => '′′′',
219
- '‶' => '‵‵',
220
- '‷' => '‵‵‵',
221
- '‼' => '!!',
222
- '‾' => ' ̅',
223
- '⁇' => '??',
224
- '⁈' => '?!',
225
- '⁉' => '!?',
226
- '⁗' => '′′′′',
227
- ' ' => ' ',
228
- '⁰' => '0',
229
- 'ⁱ' => 'i',
230
- '⁴' => '4',
231
- '⁵' => '5',
232
- '⁶' => '6',
233
- '⁷' => '7',
234
- '⁸' => '8',
235
- '⁹' => '9',
236
- '⁺' => '+',
237
- '⁻' => '−',
238
- '⁼' => '=',
239
- '⁽' => '(',
240
- '⁾' => ')',
241
- 'ⁿ' => 'n',
242
- '₀' => '0',
243
- '₁' => '1',
244
- '₂' => '2',
245
- '₃' => '3',
246
- '₄' => '4',
247
- '₅' => '5',
248
- '₆' => '6',
249
- '₇' => '7',
250
- '₈' => '8',
251
- '₉' => '9',
252
- '₊' => '+',
253
- '₋' => '−',
254
- '₌' => '=',
255
- '₍' => '(',
256
- '₎' => ')',
257
- 'ₐ' => 'a',
258
- 'ₑ' => 'e',
259
- 'ₒ' => 'o',
260
- 'ₓ' => 'x',
261
- 'ₔ' => 'ə',
262
- 'ₕ' => 'h',
263
- 'ₖ' => 'k',
264
- 'ₗ' => 'l',
265
- 'ₘ' => 'm',
266
- 'ₙ' => 'n',
267
- 'ₚ' => 'p',
268
- 'ₛ' => 's',
269
- 'ₜ' => 't',
270
- '₨' => 'Rs',
271
- '℀' => 'a/c',
272
- '℁' => 'a/s',
273
- 'ℂ' => 'C',
274
- '℃' => '°C',
275
- '℅' => 'c/o',
276
- '℆' => 'c/u',
277
- 'ℇ' => 'Ɛ',
278
- '℉' => '°F',
279
- 'ℊ' => 'g',
280
- 'ℋ' => 'H',
281
- 'ℌ' => 'H',
282
- 'ℍ' => 'H',
283
- 'ℎ' => 'h',
284
- 'ℏ' => 'ħ',
285
- 'ℐ' => 'I',
286
- 'ℑ' => 'I',
287
- 'ℒ' => 'L',
288
- 'ℓ' => 'l',
289
- 'ℕ' => 'N',
290
- '№' => 'No',
291
- 'ℙ' => 'P',
292
- 'ℚ' => 'Q',
293
- 'ℛ' => 'R',
294
- 'ℜ' => 'R',
295
- 'ℝ' => 'R',
296
- '℠' => 'SM',
297
- '℡' => 'TEL',
298
- '™' => 'TM',
299
- 'ℤ' => 'Z',
300
- 'ℨ' => 'Z',
301
- 'ℬ' => 'B',
302
- 'ℭ' => 'C',
303
- 'ℯ' => 'e',
304
- 'ℰ' => 'E',
305
- 'ℱ' => 'F',
306
- 'ℳ' => 'M',
307
- 'ℴ' => 'o',
308
- 'ℵ' => 'א',
309
- 'ℶ' => 'ב',
310
- 'ℷ' => 'ג',
311
- 'ℸ' => 'ד',
312
- 'ℹ' => 'i',
313
- '℻' => 'FAX',
314
- 'ℼ' => 'π',
315
- 'ℽ' => 'γ',
316
- 'ℾ' => 'Γ',
317
- 'ℿ' => 'Π',
318
- '⅀' => '∑',
319
- 'ⅅ' => 'D',
320
- 'ⅆ' => 'd',
321
- 'ⅇ' => 'e',
322
- 'ⅈ' => 'i',
323
- 'ⅉ' => 'j',
324
- '⅐' => '1⁄7',
325
- '⅑' => '1⁄9',
326
- '⅒' => '1⁄10',
327
- '⅓' => '1⁄3',
328
- '⅔' => '2⁄3',
329
- '⅕' => '1⁄5',
330
- '⅖' => '2⁄5',
331
- '⅗' => '3⁄5',
332
- '⅘' => '4⁄5',
333
- '⅙' => '1⁄6',
334
- '⅚' => '5⁄6',
335
- '⅛' => '1⁄8',
336
- '⅜' => '3⁄8',
337
- '⅝' => '5⁄8',
338
- '⅞' => '7⁄8',
339
- '⅟' => '1⁄',
340
- 'Ⅰ' => 'I',
341
- 'Ⅱ' => 'II',
342
- 'Ⅲ' => 'III',
343
- 'Ⅳ' => 'IV',
344
- 'Ⅴ' => 'V',
345
- 'Ⅵ' => 'VI',
346
- 'Ⅶ' => 'VII',
347
- 'Ⅷ' => 'VIII',
348
- 'Ⅸ' => 'IX',
349
- 'Ⅹ' => 'X',
350
- 'Ⅺ' => 'XI',
351
- 'Ⅻ' => 'XII',
352
- 'Ⅼ' => 'L',
353
- 'Ⅽ' => 'C',
354
- 'Ⅾ' => 'D',
355
- 'Ⅿ' => 'M',
356
- 'ⅰ' => 'i',
357
- 'ⅱ' => 'ii',
358
- 'ⅲ' => 'iii',
359
- 'ⅳ' => 'iv',
360
- 'ⅴ' => 'v',
361
- 'ⅵ' => 'vi',
362
- 'ⅶ' => 'vii',
363
- 'ⅷ' => 'viii',
364
- 'ⅸ' => 'ix',
365
- 'ⅹ' => 'x',
366
- 'ⅺ' => 'xi',
367
- 'ⅻ' => 'xii',
368
- 'ⅼ' => 'l',
369
- 'ⅽ' => 'c',
370
- 'ⅾ' => 'd',
371
- 'ⅿ' => 'm',
372
- '↉' => '0⁄3',
373
- '∬' => '∫∫',
374
- '∭' => '∫∫∫',
375
- '∯' => '∮∮',
376
- '∰' => '∮∮∮',
377
- '①' => '1',
378
- '②' => '2',
379
- '③' => '3',
380
- '④' => '4',
381
- '⑤' => '5',
382
- '⑥' => '6',
383
- '⑦' => '7',
384
- '⑧' => '8',
385
- '⑨' => '9',
386
- '⑩' => '10',
387
- '⑪' => '11',
388
- '⑫' => '12',
389
- '⑬' => '13',
390
- '⑭' => '14',
391
- '⑮' => '15',
392
- '⑯' => '16',
393
- '⑰' => '17',
394
- '⑱' => '18',
395
- '⑲' => '19',
396
- '⑳' => '20',
397
- '⑴' => '(1)',
398
- '⑵' => '(2)',
399
- '⑶' => '(3)',
400
- '⑷' => '(4)',
401
- '⑸' => '(5)',
402
- '⑹' => '(6)',
403
- '⑺' => '(7)',
404
- '⑻' => '(8)',
405
- '⑼' => '(9)',
406
- '⑽' => '(10)',
407
- '⑾' => '(11)',
408
- '⑿' => '(12)',
409
- '⒀' => '(13)',
410
- '⒁' => '(14)',
411
- '⒂' => '(15)',
412
- '⒃' => '(16)',
413
- '⒄' => '(17)',
414
- '⒅' => '(18)',
415
- '⒆' => '(19)',
416
- '⒇' => '(20)',
417
- '⒈' => '1.',
418
- '⒉' => '2.',
419
- '⒊' => '3.',
420
- '⒋' => '4.',
421
- '⒌' => '5.',
422
- '⒍' => '6.',
423
- '⒎' => '7.',
424
- '⒏' => '8.',
425
- '⒐' => '9.',
426
- '⒑' => '10.',
427
- '⒒' => '11.',
428
- '⒓' => '12.',
429
- '⒔' => '13.',
430
- '⒕' => '14.',
431
- '⒖' => '15.',
432
- '⒗' => '16.',
433
- '⒘' => '17.',
434
- '⒙' => '18.',
435
- '⒚' => '19.',
436
- '⒛' => '20.',
437
- '⒜' => '(a)',
438
- '⒝' => '(b)',
439
- '⒞' => '(c)',
440
- '⒟' => '(d)',
441
- '⒠' => '(e)',
442
- '⒡' => '(f)',
443
- '⒢' => '(g)',
444
- '⒣' => '(h)',
445
- '⒤' => '(i)',
446
- '⒥' => '(j)',
447
- '⒦' => '(k)',
448
- '⒧' => '(l)',
449
- '⒨' => '(m)',
450
- '⒩' => '(n)',
451
- '⒪' => '(o)',
452
- '⒫' => '(p)',
453
- '⒬' => '(q)',
454
- '⒭' => '(r)',
455
- '⒮' => '(s)',
456
- '⒯' => '(t)',
457
- '⒰' => '(u)',
458
- '⒱' => '(v)',
459
- '⒲' => '(w)',
460
- '⒳' => '(x)',
461
- '⒴' => '(y)',
462
- '⒵' => '(z)',
463
- 'Ⓐ' => 'A',
464
- 'Ⓑ' => 'B',
465
- 'Ⓒ' => 'C',
466
- 'Ⓓ' => 'D',
467
- 'Ⓔ' => 'E',
468
- 'Ⓕ' => 'F',
469
- 'Ⓖ' => 'G',
470
- 'Ⓗ' => 'H',
471
- 'Ⓘ' => 'I',
472
- 'Ⓙ' => 'J',
473
- 'Ⓚ' => 'K',
474
- 'Ⓛ' => 'L',
475
- 'Ⓜ' => 'M',
476
- 'Ⓝ' => 'N',
477
- 'Ⓞ' => 'O',
478
- 'Ⓟ' => 'P',
479
- 'Ⓠ' => 'Q',
480
- 'Ⓡ' => 'R',
481
- 'Ⓢ' => 'S',
482
- 'Ⓣ' => 'T',
483
- 'Ⓤ' => 'U',
484
- 'Ⓥ' => 'V',
485
- 'Ⓦ' => 'W',
486
- 'Ⓧ' => 'X',
487
- 'Ⓨ' => 'Y',
488
- 'Ⓩ' => 'Z',
489
- 'ⓐ' => 'a',
490
- 'ⓑ' => 'b',
491
- 'ⓒ' => 'c',
492
- 'ⓓ' => 'd',
493
- 'ⓔ' => 'e',
494
- 'ⓕ' => 'f',
495
- 'ⓖ' => 'g',
496
- 'ⓗ' => 'h',
497
- 'ⓘ' => 'i',
498
- 'ⓙ' => 'j',
499
- 'ⓚ' => 'k',
500
- 'ⓛ' => 'l',
501
- 'ⓜ' => 'm',
502
- 'ⓝ' => 'n',
503
- 'ⓞ' => 'o',
504
- 'ⓟ' => 'p',
505
- 'ⓠ' => 'q',
506
- 'ⓡ' => 'r',
507
- 'ⓢ' => 's',
508
- 'ⓣ' => 't',
509
- 'ⓤ' => 'u',
510
- 'ⓥ' => 'v',
511
- 'ⓦ' => 'w',
512
- 'ⓧ' => 'x',
513
- 'ⓨ' => 'y',
514
- 'ⓩ' => 'z',
515
- '⓪' => '0',
516
- '⨌' => '∫∫∫∫',
517
- '⩴' => '::=',
518
- '⩵' => '==',
519
- '⩶' => '===',
520
- 'ⱼ' => 'j',
521
- 'ⱽ' => 'V',
522
- 'ⵯ' => 'ⵡ',
523
- '⺟' => '母',
524
- '⻳' => '龟',
525
- '⼀' => '一',
526
- '⼁' => '丨',
527
- '⼂' => '丶',
528
- '⼃' => '丿',
529
- '⼄' => '乙',
530
- '⼅' => '亅',
531
- '⼆' => '二',
532
- '⼇' => '亠',
533
- '⼈' => '人',
534
- '⼉' => '儿',
535
- '⼊' => '入',
536
- '⼋' => '八',
537
- '⼌' => '冂',
538
- '⼍' => '冖',
539
- '⼎' => '冫',
540
- '⼏' => '几',
541
- '⼐' => '凵',
542
- '⼑' => '刀',
543
- '⼒' => '力',
544
- '⼓' => '勹',
545
- '⼔' => '匕',
546
- '⼕' => '匚',
547
- '⼖' => '匸',
548
- '⼗' => '十',
549
- '⼘' => '卜',
550
- '⼙' => '卩',
551
- '⼚' => '厂',
552
- '⼛' => '厶',
553
- '⼜' => '又',
554
- '⼝' => '口',
555
- '⼞' => '囗',
556
- '⼟' => '土',
557
- '⼠' => '士',
558
- '⼡' => '夂',
559
- '⼢' => '夊',
560
- '⼣' => '夕',
561
- '⼤' => '大',
562
- '⼥' => '女',
563
- '⼦' => '子',
564
- '⼧' => '宀',
565
- '⼨' => '寸',
566
- '⼩' => '小',
567
- '⼪' => '尢',
568
- '⼫' => '尸',
569
- '⼬' => '屮',
570
- '⼭' => '山',
571
- '⼮' => '巛',
572
- '⼯' => '工',
573
- '⼰' => '己',
574
- '⼱' => '巾',
575
- '⼲' => '干',
576
- '⼳' => '幺',
577
- '⼴' => '广',
578
- '⼵' => '廴',
579
- '⼶' => '廾',
580
- '⼷' => '弋',
581
- '⼸' => '弓',
582
- '⼹' => '彐',
583
- '⼺' => '彡',
584
- '⼻' => '彳',
585
- '⼼' => '心',
586
- '⼽' => '戈',
587
- '⼾' => '戶',
588
- '⼿' => '手',
589
- '⽀' => '支',
590
- '⽁' => '攴',
591
- '⽂' => '文',
592
- '⽃' => '斗',
593
- '⽄' => '斤',
594
- '⽅' => '方',
595
- '⽆' => '无',
596
- '⽇' => '日',
597
- '⽈' => '曰',
598
- '⽉' => '月',
599
- '⽊' => '木',
600
- '⽋' => '欠',
601
- '⽌' => '止',
602
- '⽍' => '歹',
603
- '⽎' => '殳',
604
- '⽏' => '毋',
605
- '⽐' => '比',
606
- '⽑' => '毛',
607
- '⽒' => '氏',
608
- '⽓' => '气',
609
- '⽔' => '水',
610
- '⽕' => '火',
611
- '⽖' => '爪',
612
- '⽗' => '父',
613
- '⽘' => '爻',
614
- '⽙' => '爿',
615
- '⽚' => '片',
616
- '⽛' => '牙',
617
- '⽜' => '牛',
618
- '⽝' => '犬',
619
- '⽞' => '玄',
620
- '⽟' => '玉',
621
- '⽠' => '瓜',
622
- '⽡' => '瓦',
623
- '⽢' => '甘',
624
- '⽣' => '生',
625
- '⽤' => '用',
626
- '⽥' => '田',
627
- '⽦' => '疋',
628
- '⽧' => '疒',
629
- '⽨' => '癶',
630
- '⽩' => '白',
631
- '⽪' => '皮',
632
- '⽫' => '皿',
633
- '⽬' => '目',
634
- '⽭' => '矛',
635
- '⽮' => '矢',
636
- '⽯' => '石',
637
- '⽰' => '示',
638
- '⽱' => '禸',
639
- '⽲' => '禾',
640
- '⽳' => '穴',
641
- '⽴' => '立',
642
- '⽵' => '竹',
643
- '⽶' => '米',
644
- '⽷' => '糸',
645
- '⽸' => '缶',
646
- '⽹' => '网',
647
- '⽺' => '羊',
648
- '⽻' => '羽',
649
- '⽼' => '老',
650
- '⽽' => '而',
651
- '⽾' => '耒',
652
- '⽿' => '耳',
653
- '⾀' => '聿',
654
- '⾁' => '肉',
655
- '⾂' => '臣',
656
- '⾃' => '自',
657
- '⾄' => '至',
658
- '⾅' => '臼',
659
- '⾆' => '舌',
660
- '⾇' => '舛',
661
- '⾈' => '舟',
662
- '⾉' => '艮',
663
- '⾊' => '色',
664
- '⾋' => '艸',
665
- '⾌' => '虍',
666
- '⾍' => '虫',
667
- '⾎' => '血',
668
- '⾏' => '行',
669
- '⾐' => '衣',
670
- '⾑' => '襾',
671
- '⾒' => '見',
672
- '⾓' => '角',
673
- '⾔' => '言',
674
- '⾕' => '谷',
675
- '⾖' => '豆',
676
- '⾗' => '豕',
677
- '⾘' => '豸',
678
- '⾙' => '貝',
679
- '⾚' => '赤',
680
- '⾛' => '走',
681
- '⾜' => '足',
682
- '⾝' => '身',
683
- '⾞' => '車',
684
- '⾟' => '辛',
685
- '⾠' => '辰',
686
- '⾡' => '辵',
687
- '⾢' => '邑',
688
- '⾣' => '酉',
689
- '⾤' => '釆',
690
- '⾥' => '里',
691
- '⾦' => '金',
692
- '⾧' => '長',
693
- '⾨' => '門',
694
- '⾩' => '阜',
695
- '⾪' => '隶',
696
- '⾫' => '隹',
697
- '⾬' => '雨',
698
- '⾭' => '靑',
699
- '⾮' => '非',
700
- '⾯' => '面',
701
- '⾰' => '革',
702
- '⾱' => '韋',
703
- '⾲' => '韭',
704
- '⾳' => '音',
705
- '⾴' => '頁',
706
- '⾵' => '風',
707
- '⾶' => '飛',
708
- '⾷' => '食',
709
- '⾸' => '首',
710
- '⾹' => '香',
711
- '⾺' => '馬',
712
- '⾻' => '骨',
713
- '⾼' => '高',
714
- '⾽' => '髟',
715
- '⾾' => '鬥',
716
- '⾿' => '鬯',
717
- '⿀' => '鬲',
718
- '⿁' => '鬼',
719
- '⿂' => '魚',
720
- '⿃' => '鳥',
721
- '⿄' => '鹵',
722
- '⿅' => '鹿',
723
- '⿆' => '麥',
724
- '⿇' => '麻',
725
- '⿈' => '黃',
726
- '⿉' => '黍',
727
- '⿊' => '黑',
728
- '⿋' => '黹',
729
- '⿌' => '黽',
730
- '⿍' => '鼎',
731
- '⿎' => '鼓',
732
- '⿏' => '鼠',
733
- '⿐' => '鼻',
734
- '⿑' => '齊',
735
- '⿒' => '齒',
736
- '⿓' => '龍',
737
- '⿔' => '龜',
738
- '⿕' => '龠',
739
- ' ' => ' ',
740
- '〶' => '〒',
741
- '〸' => '十',
742
- '〹' => '卄',
743
- '〺' => '卅',
744
- '゛' => ' ゙',
745
- '゜' => ' ゚',
746
- 'ゟ' => 'より',
747
- 'ヿ' => 'コト',
748
- 'ㄱ' => 'ᄀ',
749
- 'ㄲ' => 'ᄁ',
750
- 'ㄳ' => 'ᆪ',
751
- 'ㄴ' => 'ᄂ',
752
- 'ㄵ' => 'ᆬ',
753
- 'ㄶ' => 'ᆭ',
754
- 'ㄷ' => 'ᄃ',
755
- 'ㄸ' => 'ᄄ',
756
- 'ㄹ' => 'ᄅ',
757
- 'ㄺ' => 'ᆰ',
758
- 'ㄻ' => 'ᆱ',
759
- 'ㄼ' => 'ᆲ',
760
- 'ㄽ' => 'ᆳ',
761
- 'ㄾ' => 'ᆴ',
762
- 'ㄿ' => 'ᆵ',
763
- 'ㅀ' => 'ᄚ',
764
- 'ㅁ' => 'ᄆ',
765
- 'ㅂ' => 'ᄇ',
766
- 'ㅃ' => 'ᄈ',
767
- 'ㅄ' => 'ᄡ',
768
- 'ㅅ' => 'ᄉ',
769
- 'ㅆ' => 'ᄊ',
770
- 'ㅇ' => 'ᄋ',
771
- 'ㅈ' => 'ᄌ',
772
- 'ㅉ' => 'ᄍ',
773
- 'ㅊ' => 'ᄎ',
774
- 'ㅋ' => 'ᄏ',
775
- 'ㅌ' => 'ᄐ',
776
- 'ㅍ' => 'ᄑ',
777
- 'ㅎ' => 'ᄒ',
778
- 'ㅏ' => 'ᅡ',
779
- 'ㅐ' => 'ᅢ',
780
- 'ㅑ' => 'ᅣ',
781
- 'ㅒ' => 'ᅤ',
782
- 'ㅓ' => 'ᅥ',
783
- 'ㅔ' => 'ᅦ',
784
- 'ㅕ' => 'ᅧ',
785
- 'ㅖ' => 'ᅨ',
786
- 'ㅗ' => 'ᅩ',
787
- 'ㅘ' => 'ᅪ',
788
- 'ㅙ' => 'ᅫ',
789
- 'ㅚ' => 'ᅬ',
790
- 'ㅛ' => 'ᅭ',
791
- 'ㅜ' => 'ᅮ',
792
- 'ㅝ' => 'ᅯ',
793
- 'ㅞ' => 'ᅰ',
794
- 'ㅟ' => 'ᅱ',
795
- 'ㅠ' => 'ᅲ',
796
- 'ㅡ' => 'ᅳ',
797
- 'ㅢ' => 'ᅴ',
798
- 'ㅣ' => 'ᅵ',
799
- 'ㅤ' => 'ᅠ',
800
- 'ㅥ' => 'ᄔ',
801
- 'ㅦ' => 'ᄕ',
802
- 'ㅧ' => 'ᇇ',
803
- 'ㅨ' => 'ᇈ',
804
- 'ㅩ' => 'ᇌ',
805
- 'ㅪ' => 'ᇎ',
806
- 'ㅫ' => 'ᇓ',
807
- 'ㅬ' => 'ᇗ',
808
- 'ㅭ' => 'ᇙ',
809
- 'ㅮ' => 'ᄜ',
810
- 'ㅯ' => 'ᇝ',
811
- 'ㅰ' => 'ᇟ',
812
- 'ㅱ' => 'ᄝ',
813
- 'ㅲ' => 'ᄞ',
814
- 'ㅳ' => 'ᄠ',
815
- 'ㅴ' => 'ᄢ',
816
- 'ㅵ' => 'ᄣ',
817
- 'ㅶ' => 'ᄧ',
818
- 'ㅷ' => 'ᄩ',
819
- 'ㅸ' => 'ᄫ',
820
- 'ㅹ' => 'ᄬ',
821
- 'ㅺ' => 'ᄭ',
822
- 'ㅻ' => 'ᄮ',
823
- 'ㅼ' => 'ᄯ',
824
- 'ㅽ' => 'ᄲ',
825
- 'ㅾ' => 'ᄶ',
826
- 'ㅿ' => 'ᅀ',
827
- 'ㆀ' => 'ᅇ',
828
- 'ㆁ' => 'ᅌ',
829
- 'ㆂ' => 'ᇱ',
830
- 'ㆃ' => 'ᇲ',
831
- 'ㆄ' => 'ᅗ',
832
- 'ㆅ' => 'ᅘ',
833
- 'ㆆ' => 'ᅙ',
834
- 'ㆇ' => 'ᆄ',
835
- 'ㆈ' => 'ᆅ',
836
- 'ㆉ' => 'ᆈ',
837
- 'ㆊ' => 'ᆑ',
838
- 'ㆋ' => 'ᆒ',
839
- 'ㆌ' => 'ᆔ',
840
- 'ㆍ' => 'ᆞ',
841
- 'ㆎ' => 'ᆡ',
842
- '㆒' => '一',
843
- '㆓' => '二',
844
- '㆔' => '三',
845
- '㆕' => '四',
846
- '㆖' => '上',
847
- '㆗' => '中',
848
- '㆘' => '下',
849
- '㆙' => '甲',
850
- '㆚' => '乙',
851
- '㆛' => '丙',
852
- '㆜' => '丁',
853
- '㆝' => '天',
854
- '㆞' => '地',
855
- '㆟' => '人',
856
- '㈀' => '(ᄀ)',
857
- '㈁' => '(ᄂ)',
858
- '㈂' => '(ᄃ)',
859
- '㈃' => '(ᄅ)',
860
- '㈄' => '(ᄆ)',
861
- '㈅' => '(ᄇ)',
862
- '㈆' => '(ᄉ)',
863
- '㈇' => '(ᄋ)',
864
- '㈈' => '(ᄌ)',
865
- '㈉' => '(ᄎ)',
866
- '㈊' => '(ᄏ)',
867
- '㈋' => '(ᄐ)',
868
- '㈌' => '(ᄑ)',
869
- '㈍' => '(ᄒ)',
870
- '㈎' => '(가)',
871
- '㈏' => '(나)',
872
- '㈐' => '(다)',
873
- '㈑' => '(라)',
874
- '㈒' => '(마)',
875
- '㈓' => '(바)',
876
- '㈔' => '(사)',
877
- '㈕' => '(아)',
878
- '㈖' => '(자)',
879
- '㈗' => '(차)',
880
- '㈘' => '(카)',
881
- '㈙' => '(타)',
882
- '㈚' => '(파)',
883
- '㈛' => '(하)',
884
- '㈜' => '(주)',
885
- '㈝' => '(오전)',
886
- '㈞' => '(오후)',
887
- '㈠' => '(一)',
888
- '㈡' => '(二)',
889
- '㈢' => '(三)',
890
- '㈣' => '(四)',
891
- '㈤' => '(五)',
892
- '㈥' => '(六)',
893
- '㈦' => '(七)',
894
- '㈧' => '(八)',
895
- '㈨' => '(九)',
896
- '㈩' => '(十)',
897
- '㈪' => '(月)',
898
- '㈫' => '(火)',
899
- '㈬' => '(水)',
900
- '㈭' => '(木)',
901
- '㈮' => '(金)',
902
- '㈯' => '(土)',
903
- '㈰' => '(日)',
904
- '㈱' => '(株)',
905
- '㈲' => '(有)',
906
- '㈳' => '(社)',
907
- '㈴' => '(名)',
908
- '㈵' => '(特)',
909
- '㈶' => '(財)',
910
- '㈷' => '(祝)',
911
- '㈸' => '(労)',
912
- '㈹' => '(代)',
913
- '㈺' => '(呼)',
914
- '㈻' => '(学)',
915
- '㈼' => '(監)',
916
- '㈽' => '(企)',
917
- '㈾' => '(資)',
918
- '㈿' => '(協)',
919
- '㉀' => '(祭)',
920
- '㉁' => '(休)',
921
- '㉂' => '(自)',
922
- '㉃' => '(至)',
923
- '㉄' => '問',
924
- '㉅' => '幼',
925
- '㉆' => '文',
926
- '㉇' => '箏',
927
- '㉐' => 'PTE',
928
- '㉑' => '21',
929
- '㉒' => '22',
930
- '㉓' => '23',
931
- '㉔' => '24',
932
- '㉕' => '25',
933
- '㉖' => '26',
934
- '㉗' => '27',
935
- '㉘' => '28',
936
- '㉙' => '29',
937
- '㉚' => '30',
938
- '㉛' => '31',
939
- '㉜' => '32',
940
- '㉝' => '33',
941
- '㉞' => '34',
942
- '㉟' => '35',
943
- '㉠' => 'ᄀ',
944
- '㉡' => 'ᄂ',
945
- '㉢' => 'ᄃ',
946
- '㉣' => 'ᄅ',
947
- '㉤' => 'ᄆ',
948
- '㉥' => 'ᄇ',
949
- '㉦' => 'ᄉ',
950
- '㉧' => 'ᄋ',
951
- '㉨' => 'ᄌ',
952
- '㉩' => 'ᄎ',
953
- '㉪' => 'ᄏ',
954
- '㉫' => 'ᄐ',
955
- '㉬' => 'ᄑ',
956
- '㉭' => 'ᄒ',
957
- '㉮' => '가',
958
- '㉯' => '나',
959
- '㉰' => '다',
960
- '㉱' => '라',
961
- '㉲' => '마',
962
- '㉳' => '바',
963
- '㉴' => '사',
964
- '㉵' => '아',
965
- '㉶' => '자',
966
- '㉷' => '차',
967
- '㉸' => '카',
968
- '㉹' => '타',
969
- '㉺' => '파',
970
- '㉻' => '하',
971
- '㉼' => '참고',
972
- '㉽' => '주의',
973
- '㉾' => '우',
974
- '㊀' => '一',
975
- '㊁' => '二',
976
- '㊂' => '三',
977
- '㊃' => '四',
978
- '㊄' => '五',
979
- '㊅' => '六',
980
- '㊆' => '七',
981
- '㊇' => '八',
982
- '㊈' => '九',
983
- '㊉' => '十',
984
- '㊊' => '月',
985
- '㊋' => '火',
986
- '㊌' => '水',
987
- '㊍' => '木',
988
- '㊎' => '金',
989
- '㊏' => '土',
990
- '㊐' => '日',
991
- '㊑' => '株',
992
- '㊒' => '有',
993
- '㊓' => '社',
994
- '㊔' => '名',
995
- '㊕' => '特',
996
- '㊖' => '財',
997
- '㊗' => '祝',
998
- '㊘' => '労',
999
- '㊙' => '秘',
1000
- '㊚' => '男',
1001
- '㊛' => '女',
1002
- '㊜' => '適',
1003
- '㊝' => '優',
1004
- '㊞' => '印',
1005
- '㊟' => '注',
1006
- '㊠' => '項',
1007
- '㊡' => '休',
1008
- '㊢' => '写',
1009
- '㊣' => '正',
1010
- '㊤' => '上',
1011
- '㊥' => '中',
1012
- '㊦' => '下',
1013
- '㊧' => '左',
1014
- '㊨' => '右',
1015
- '㊩' => '医',
1016
- '㊪' => '宗',
1017
- '㊫' => '学',
1018
- '㊬' => '監',
1019
- '㊭' => '企',
1020
- '㊮' => '資',
1021
- '㊯' => '協',
1022
- '㊰' => '夜',
1023
- '㊱' => '36',
1024
- '㊲' => '37',
1025
- '㊳' => '38',
1026
- '㊴' => '39',
1027
- '㊵' => '40',
1028
- '㊶' => '41',
1029
- '㊷' => '42',
1030
- '㊸' => '43',
1031
- '㊹' => '44',
1032
- '㊺' => '45',
1033
- '㊻' => '46',
1034
- '㊼' => '47',
1035
- '㊽' => '48',
1036
- '㊾' => '49',
1037
- '㊿' => '50',
1038
- '㋀' => '1月',
1039
- '㋁' => '2月',
1040
- '㋂' => '3月',
1041
- '㋃' => '4月',
1042
- '㋄' => '5月',
1043
- '㋅' => '6月',
1044
- '㋆' => '7月',
1045
- '㋇' => '8月',
1046
- '㋈' => '9月',
1047
- '㋉' => '10月',
1048
- '㋊' => '11月',
1049
- '㋋' => '12月',
1050
- '㋌' => 'Hg',
1051
- '㋍' => 'erg',
1052
- '㋎' => 'eV',
1053
- '㋏' => 'LTD',
1054
- '㋐' => 'ア',
1055
- '㋑' => 'イ',
1056
- '㋒' => 'ウ',
1057
- '㋓' => 'エ',
1058
- '㋔' => 'オ',
1059
- '㋕' => 'カ',
1060
- '㋖' => 'キ',
1061
- '㋗' => 'ク',
1062
- '㋘' => 'ケ',
1063
- '㋙' => 'コ',
1064
- '㋚' => 'サ',
1065
- '㋛' => 'シ',
1066
- '㋜' => 'ス',
1067
- '㋝' => 'セ',
1068
- '㋞' => 'ソ',
1069
- '㋟' => 'タ',
1070
- '㋠' => 'チ',
1071
- '㋡' => 'ツ',
1072
- '㋢' => 'テ',
1073
- '㋣' => 'ト',
1074
- '㋤' => 'ナ',
1075
- '㋥' => 'ニ',
1076
- '㋦' => 'ヌ',
1077
- '㋧' => 'ネ',
1078
- '㋨' => 'ノ',
1079
- '㋩' => 'ハ',
1080
- '㋪' => 'ヒ',
1081
- '㋫' => 'フ',
1082
- '㋬' => 'ヘ',
1083
- '㋭' => 'ホ',
1084
- '㋮' => 'マ',
1085
- '㋯' => 'ミ',
1086
- '㋰' => 'ム',
1087
- '㋱' => 'メ',
1088
- '㋲' => 'モ',
1089
- '㋳' => 'ヤ',
1090
- '㋴' => 'ユ',
1091
- '㋵' => 'ヨ',
1092
- '㋶' => 'ラ',
1093
- '㋷' => 'リ',
1094
- '㋸' => 'ル',
1095
- '㋹' => 'レ',
1096
- '㋺' => 'ロ',
1097
- '㋻' => 'ワ',
1098
- '㋼' => 'ヰ',
1099
- '㋽' => 'ヱ',
1100
- '㋾' => 'ヲ',
1101
- '㋿' => '令和',
1102
- '㌀' => 'アパート',
1103
- '㌁' => 'アルファ',
1104
- '㌂' => 'アンペア',
1105
- '㌃' => 'アール',
1106
- '㌄' => 'イニング',
1107
- '㌅' => 'インチ',
1108
- '㌆' => 'ウォン',
1109
- '㌇' => 'エスクード',
1110
- '㌈' => 'エーカー',
1111
- '㌉' => 'オンス',
1112
- '㌊' => 'オーム',
1113
- '㌋' => 'カイリ',
1114
- '㌌' => 'カラット',
1115
- '㌍' => 'カロリー',
1116
- '㌎' => 'ガロン',
1117
- '㌏' => 'ガンマ',
1118
- '㌐' => 'ギガ',
1119
- '㌑' => 'ギニー',
1120
- '㌒' => 'キュリー',
1121
- '㌓' => 'ギルダー',
1122
- '㌔' => 'キロ',
1123
- '㌕' => 'キログラム',
1124
- '㌖' => 'キロメートル',
1125
- '㌗' => 'キロワット',
1126
- '㌘' => 'グラム',
1127
- '㌙' => 'グラムトン',
1128
- '㌚' => 'クルゼイロ',
1129
- '㌛' => 'クローネ',
1130
- '㌜' => 'ケース',
1131
- '㌝' => 'コルナ',
1132
- '㌞' => 'コーポ',
1133
- '㌟' => 'サイクル',
1134
- '㌠' => 'サンチーム',
1135
- '㌡' => 'シリング',
1136
- '㌢' => 'センチ',
1137
- '㌣' => 'セント',
1138
- '㌤' => 'ダース',
1139
- '㌥' => 'デシ',
1140
- '㌦' => 'ドル',
1141
- '㌧' => 'トン',
1142
- '㌨' => 'ナノ',
1143
- '㌩' => 'ノット',
1144
- '㌪' => 'ハイツ',
1145
- '㌫' => 'パーセント',
1146
- '㌬' => 'パーツ',
1147
- '㌭' => 'バーレル',
1148
- '㌮' => 'ピアストル',
1149
- '㌯' => 'ピクル',
1150
- '㌰' => 'ピコ',
1151
- '㌱' => 'ビル',
1152
- '㌲' => 'ファラッド',
1153
- '㌳' => 'フィート',
1154
- '㌴' => 'ブッシェル',
1155
- '㌵' => 'フラン',
1156
- '㌶' => 'ヘクタール',
1157
- '㌷' => 'ペソ',
1158
- '㌸' => 'ペニヒ',
1159
- '㌹' => 'ヘルツ',
1160
- '㌺' => 'ペンス',
1161
- '㌻' => 'ページ',
1162
- '㌼' => 'ベータ',
1163
- '㌽' => 'ポイント',
1164
- '㌾' => 'ボルト',
1165
- '㌿' => 'ホン',
1166
- '㍀' => 'ポンド',
1167
- '㍁' => 'ホール',
1168
- '㍂' => 'ホーン',
1169
- '㍃' => 'マイクロ',
1170
- '㍄' => 'マイル',
1171
- '㍅' => 'マッハ',
1172
- '㍆' => 'マルク',
1173
- '㍇' => 'マンション',
1174
- '㍈' => 'ミクロン',
1175
- '㍉' => 'ミリ',
1176
- '㍊' => 'ミリバール',
1177
- '㍋' => 'メガ',
1178
- '㍌' => 'メガトン',
1179
- '㍍' => 'メートル',
1180
- '㍎' => 'ヤード',
1181
- '㍏' => 'ヤール',
1182
- '㍐' => 'ユアン',
1183
- '㍑' => 'リットル',
1184
- '㍒' => 'リラ',
1185
- '㍓' => 'ルピー',
1186
- '㍔' => 'ルーブル',
1187
- '㍕' => 'レム',
1188
- '㍖' => 'レントゲン',
1189
- '㍗' => 'ワット',
1190
- '㍘' => '0点',
1191
- '㍙' => '1点',
1192
- '㍚' => '2点',
1193
- '㍛' => '3点',
1194
- '㍜' => '4点',
1195
- '㍝' => '5点',
1196
- '㍞' => '6点',
1197
- '㍟' => '7点',
1198
- '㍠' => '8点',
1199
- '㍡' => '9点',
1200
- '㍢' => '10点',
1201
- '㍣' => '11点',
1202
- '㍤' => '12点',
1203
- '㍥' => '13点',
1204
- '㍦' => '14点',
1205
- '㍧' => '15点',
1206
- '㍨' => '16点',
1207
- '㍩' => '17点',
1208
- '㍪' => '18点',
1209
- '㍫' => '19点',
1210
- '㍬' => '20点',
1211
- '㍭' => '21点',
1212
- '㍮' => '22点',
1213
- '㍯' => '23点',
1214
- '㍰' => '24点',
1215
- '㍱' => 'hPa',
1216
- '㍲' => 'da',
1217
- '㍳' => 'AU',
1218
- '㍴' => 'bar',
1219
- '㍵' => 'oV',
1220
- '㍶' => 'pc',
1221
- '㍷' => 'dm',
1222
- '㍸' => 'dm2',
1223
- '㍹' => 'dm3',
1224
- '㍺' => 'IU',
1225
- '㍻' => '平成',
1226
- '㍼' => '昭和',
1227
- '㍽' => '大正',
1228
- '㍾' => '明治',
1229
- '㍿' => '株式会社',
1230
- '㎀' => 'pA',
1231
- '㎁' => 'nA',
1232
- '㎂' => 'μA',
1233
- '㎃' => 'mA',
1234
- '㎄' => 'kA',
1235
- '㎅' => 'KB',
1236
- '㎆' => 'MB',
1237
- '㎇' => 'GB',
1238
- '㎈' => 'cal',
1239
- '㎉' => 'kcal',
1240
- '㎊' => 'pF',
1241
- '㎋' => 'nF',
1242
- '㎌' => 'μF',
1243
- '㎍' => 'μg',
1244
- '㎎' => 'mg',
1245
- '㎏' => 'kg',
1246
- '㎐' => 'Hz',
1247
- '㎑' => 'kHz',
1248
- '㎒' => 'MHz',
1249
- '㎓' => 'GHz',
1250
- '㎔' => 'THz',
1251
- '㎕' => 'μl',
1252
- '㎖' => 'ml',
1253
- '㎗' => 'dl',
1254
- '㎘' => 'kl',
1255
- '㎙' => 'fm',
1256
- '㎚' => 'nm',
1257
- '㎛' => 'μm',
1258
- '㎜' => 'mm',
1259
- '㎝' => 'cm',
1260
- '㎞' => 'km',
1261
- '㎟' => 'mm2',
1262
- '㎠' => 'cm2',
1263
- '㎡' => 'm2',
1264
- '㎢' => 'km2',
1265
- '㎣' => 'mm3',
1266
- '㎤' => 'cm3',
1267
- '㎥' => 'm3',
1268
- '㎦' => 'km3',
1269
- '㎧' => 'm∕s',
1270
- '㎨' => 'm∕s2',
1271
- '㎩' => 'Pa',
1272
- '㎪' => 'kPa',
1273
- '㎫' => 'MPa',
1274
- '㎬' => 'GPa',
1275
- '㎭' => 'rad',
1276
- '㎮' => 'rad∕s',
1277
- '㎯' => 'rad∕s2',
1278
- '㎰' => 'ps',
1279
- '㎱' => 'ns',
1280
- '㎲' => 'μs',
1281
- '㎳' => 'ms',
1282
- '㎴' => 'pV',
1283
- '㎵' => 'nV',
1284
- '㎶' => 'μV',
1285
- '㎷' => 'mV',
1286
- '㎸' => 'kV',
1287
- '㎹' => 'MV',
1288
- '㎺' => 'pW',
1289
- '㎻' => 'nW',
1290
- '㎼' => 'μW',
1291
- '㎽' => 'mW',
1292
- '㎾' => 'kW',
1293
- '㎿' => 'MW',
1294
- '㏀' => 'kΩ',
1295
- '㏁' => 'MΩ',
1296
- '㏂' => 'a.m.',
1297
- '㏃' => 'Bq',
1298
- '㏄' => 'cc',
1299
- '㏅' => 'cd',
1300
- '㏆' => 'C∕kg',
1301
- '㏇' => 'Co.',
1302
- '㏈' => 'dB',
1303
- '㏉' => 'Gy',
1304
- '㏊' => 'ha',
1305
- '㏋' => 'HP',
1306
- '㏌' => 'in',
1307
- '㏍' => 'KK',
1308
- '㏎' => 'KM',
1309
- '㏏' => 'kt',
1310
- '㏐' => 'lm',
1311
- '㏑' => 'ln',
1312
- '㏒' => 'log',
1313
- '㏓' => 'lx',
1314
- '㏔' => 'mb',
1315
- '㏕' => 'mil',
1316
- '㏖' => 'mol',
1317
- '㏗' => 'PH',
1318
- '㏘' => 'p.m.',
1319
- '㏙' => 'PPM',
1320
- '㏚' => 'PR',
1321
- '㏛' => 'sr',
1322
- '㏜' => 'Sv',
1323
- '㏝' => 'Wb',
1324
- '㏞' => 'V∕m',
1325
- '㏟' => 'A∕m',
1326
- '㏠' => '1日',
1327
- '㏡' => '2日',
1328
- '㏢' => '3日',
1329
- '㏣' => '4日',
1330
- '㏤' => '5日',
1331
- '㏥' => '6日',
1332
- '㏦' => '7日',
1333
- '㏧' => '8日',
1334
- '㏨' => '9日',
1335
- '㏩' => '10日',
1336
- '㏪' => '11日',
1337
- '㏫' => '12日',
1338
- '㏬' => '13日',
1339
- '㏭' => '14日',
1340
- '㏮' => '15日',
1341
- '㏯' => '16日',
1342
- '㏰' => '17日',
1343
- '㏱' => '18日',
1344
- '㏲' => '19日',
1345
- '㏳' => '20日',
1346
- '㏴' => '21日',
1347
- '㏵' => '22日',
1348
- '㏶' => '23日',
1349
- '㏷' => '24日',
1350
- '㏸' => '25日',
1351
- '㏹' => '26日',
1352
- '㏺' => '27日',
1353
- '㏻' => '28日',
1354
- '㏼' => '29日',
1355
- '㏽' => '30日',
1356
- '㏾' => '31日',
1357
- '㏿' => 'gal',
1358
- 'ꚜ' => 'ъ',
1359
- 'ꚝ' => 'ь',
1360
- 'ꝰ' => 'ꝯ',
1361
- 'ꟸ' => 'Ħ',
1362
- 'ꟹ' => 'œ',
1363
- 'ꭜ' => 'ꜧ',
1364
- 'ꭝ' => 'ꬷ',
1365
- 'ꭞ' => 'ɫ',
1366
- 'ꭟ' => 'ꭒ',
1367
- 'ꭩ' => 'ʍ',
1368
- 'ff' => 'ff',
1369
- 'fi' => 'fi',
1370
- 'fl' => 'fl',
1371
- 'ffi' => 'ffi',
1372
- 'ffl' => 'ffl',
1373
- 'ſt' => 'st',
1374
- 'st' => 'st',
1375
- 'ﬓ' => 'մն',
1376
- 'ﬔ' => 'մե',
1377
- 'ﬕ' => 'մի',
1378
- 'ﬖ' => 'վն',
1379
- 'ﬗ' => 'մխ',
1380
- 'ﬠ' => 'ע',
1381
- 'ﬡ' => 'א',
1382
- 'ﬢ' => 'ד',
1383
- 'ﬣ' => 'ה',
1384
- 'ﬤ' => 'כ',
1385
- 'ﬥ' => 'ל',
1386
- 'ﬦ' => 'ם',
1387
- 'ﬧ' => 'ר',
1388
- 'ﬨ' => 'ת',
1389
- '﬩' => '+',
1390
- 'ﭏ' => 'אל',
1391
- 'ﭐ' => 'ٱ',
1392
- 'ﭑ' => 'ٱ',
1393
- 'ﭒ' => 'ٻ',
1394
- 'ﭓ' => 'ٻ',
1395
- 'ﭔ' => 'ٻ',
1396
- 'ﭕ' => 'ٻ',
1397
- 'ﭖ' => 'پ',
1398
- 'ﭗ' => 'پ',
1399
- 'ﭘ' => 'پ',
1400
- 'ﭙ' => 'پ',
1401
- 'ﭚ' => 'ڀ',
1402
- 'ﭛ' => 'ڀ',
1403
- 'ﭜ' => 'ڀ',
1404
- 'ﭝ' => 'ڀ',
1405
- 'ﭞ' => 'ٺ',
1406
- 'ﭟ' => 'ٺ',
1407
- 'ﭠ' => 'ٺ',
1408
- 'ﭡ' => 'ٺ',
1409
- 'ﭢ' => 'ٿ',
1410
- 'ﭣ' => 'ٿ',
1411
- 'ﭤ' => 'ٿ',
1412
- 'ﭥ' => 'ٿ',
1413
- 'ﭦ' => 'ٹ',
1414
- 'ﭧ' => 'ٹ',
1415
- 'ﭨ' => 'ٹ',
1416
- 'ﭩ' => 'ٹ',
1417
- 'ﭪ' => 'ڤ',
1418
- 'ﭫ' => 'ڤ',
1419
- 'ﭬ' => 'ڤ',
1420
- 'ﭭ' => 'ڤ',
1421
- 'ﭮ' => 'ڦ',
1422
- 'ﭯ' => 'ڦ',
1423
- 'ﭰ' => 'ڦ',
1424
- 'ﭱ' => 'ڦ',
1425
- 'ﭲ' => 'ڄ',
1426
- 'ﭳ' => 'ڄ',
1427
- 'ﭴ' => 'ڄ',
1428
- 'ﭵ' => 'ڄ',
1429
- 'ﭶ' => 'ڃ',
1430
- 'ﭷ' => 'ڃ',
1431
- 'ﭸ' => 'ڃ',
1432
- 'ﭹ' => 'ڃ',
1433
- 'ﭺ' => 'چ',
1434
- 'ﭻ' => 'چ',
1435
- 'ﭼ' => 'چ',
1436
- 'ﭽ' => 'چ',
1437
- 'ﭾ' => 'ڇ',
1438
- 'ﭿ' => 'ڇ',
1439
- 'ﮀ' => 'ڇ',
1440
- 'ﮁ' => 'ڇ',
1441
- 'ﮂ' => 'ڍ',
1442
- 'ﮃ' => 'ڍ',
1443
- 'ﮄ' => 'ڌ',
1444
- 'ﮅ' => 'ڌ',
1445
- 'ﮆ' => 'ڎ',
1446
- 'ﮇ' => 'ڎ',
1447
- 'ﮈ' => 'ڈ',
1448
- 'ﮉ' => 'ڈ',
1449
- 'ﮊ' => 'ژ',
1450
- 'ﮋ' => 'ژ',
1451
- 'ﮌ' => 'ڑ',
1452
- 'ﮍ' => 'ڑ',
1453
- 'ﮎ' => 'ک',
1454
- 'ﮏ' => 'ک',
1455
- 'ﮐ' => 'ک',
1456
- 'ﮑ' => 'ک',
1457
- 'ﮒ' => 'گ',
1458
- 'ﮓ' => 'گ',
1459
- 'ﮔ' => 'گ',
1460
- 'ﮕ' => 'گ',
1461
- 'ﮖ' => 'ڳ',
1462
- 'ﮗ' => 'ڳ',
1463
- 'ﮘ' => 'ڳ',
1464
- 'ﮙ' => 'ڳ',
1465
- 'ﮚ' => 'ڱ',
1466
- 'ﮛ' => 'ڱ',
1467
- 'ﮜ' => 'ڱ',
1468
- 'ﮝ' => 'ڱ',
1469
- 'ﮞ' => 'ں',
1470
- 'ﮟ' => 'ں',
1471
- 'ﮠ' => 'ڻ',
1472
- 'ﮡ' => 'ڻ',
1473
- 'ﮢ' => 'ڻ',
1474
- 'ﮣ' => 'ڻ',
1475
- 'ﮤ' => 'ۀ',
1476
- 'ﮥ' => 'ۀ',
1477
- 'ﮦ' => 'ہ',
1478
- 'ﮧ' => 'ہ',
1479
- 'ﮨ' => 'ہ',
1480
- 'ﮩ' => 'ہ',
1481
- 'ﮪ' => 'ھ',
1482
- 'ﮫ' => 'ھ',
1483
- 'ﮬ' => 'ھ',
1484
- 'ﮭ' => 'ھ',
1485
- 'ﮮ' => 'ے',
1486
- 'ﮯ' => 'ے',
1487
- 'ﮰ' => 'ۓ',
1488
- 'ﮱ' => 'ۓ',
1489
- 'ﯓ' => 'ڭ',
1490
- 'ﯔ' => 'ڭ',
1491
- 'ﯕ' => 'ڭ',
1492
- 'ﯖ' => 'ڭ',
1493
- 'ﯗ' => 'ۇ',
1494
- 'ﯘ' => 'ۇ',
1495
- 'ﯙ' => 'ۆ',
1496
- 'ﯚ' => 'ۆ',
1497
- 'ﯛ' => 'ۈ',
1498
- 'ﯜ' => 'ۈ',
1499
- 'ﯝ' => 'ۇٴ',
1500
- 'ﯞ' => 'ۋ',
1501
- 'ﯟ' => 'ۋ',
1502
- 'ﯠ' => 'ۅ',
1503
- 'ﯡ' => 'ۅ',
1504
- 'ﯢ' => 'ۉ',
1505
- 'ﯣ' => 'ۉ',
1506
- 'ﯤ' => 'ې',
1507
- 'ﯥ' => 'ې',
1508
- 'ﯦ' => 'ې',
1509
- 'ﯧ' => 'ې',
1510
- 'ﯨ' => 'ى',
1511
- 'ﯩ' => 'ى',
1512
- 'ﯪ' => 'ئا',
1513
- 'ﯫ' => 'ئا',
1514
- 'ﯬ' => 'ئە',
1515
- 'ﯭ' => 'ئە',
1516
- 'ﯮ' => 'ئو',
1517
- 'ﯯ' => 'ئو',
1518
- 'ﯰ' => 'ئۇ',
1519
- 'ﯱ' => 'ئۇ',
1520
- 'ﯲ' => 'ئۆ',
1521
- 'ﯳ' => 'ئۆ',
1522
- 'ﯴ' => 'ئۈ',
1523
- 'ﯵ' => 'ئۈ',
1524
- 'ﯶ' => 'ئې',
1525
- 'ﯷ' => 'ئې',
1526
- 'ﯸ' => 'ئې',
1527
- 'ﯹ' => 'ئى',
1528
- 'ﯺ' => 'ئى',
1529
- 'ﯻ' => 'ئى',
1530
- 'ﯼ' => 'ی',
1531
- 'ﯽ' => 'ی',
1532
- 'ﯾ' => 'ی',
1533
- 'ﯿ' => 'ی',
1534
- 'ﰀ' => 'ئج',
1535
- 'ﰁ' => 'ئح',
1536
- 'ﰂ' => 'ئم',
1537
- 'ﰃ' => 'ئى',
1538
- 'ﰄ' => 'ئي',
1539
- 'ﰅ' => 'بج',
1540
- 'ﰆ' => 'بح',
1541
- 'ﰇ' => 'بخ',
1542
- 'ﰈ' => 'بم',
1543
- 'ﰉ' => 'بى',
1544
- 'ﰊ' => 'بي',
1545
- 'ﰋ' => 'تج',
1546
- 'ﰌ' => 'تح',
1547
- 'ﰍ' => 'تخ',
1548
- 'ﰎ' => 'تم',
1549
- 'ﰏ' => 'تى',
1550
- 'ﰐ' => 'تي',
1551
- 'ﰑ' => 'ثج',
1552
- 'ﰒ' => 'ثم',
1553
- 'ﰓ' => 'ثى',
1554
- 'ﰔ' => 'ثي',
1555
- 'ﰕ' => 'جح',
1556
- 'ﰖ' => 'جم',
1557
- 'ﰗ' => 'حج',
1558
- 'ﰘ' => 'حم',
1559
- 'ﰙ' => 'خج',
1560
- 'ﰚ' => 'خح',
1561
- 'ﰛ' => 'خم',
1562
- 'ﰜ' => 'سج',
1563
- 'ﰝ' => 'سح',
1564
- 'ﰞ' => 'سخ',
1565
- 'ﰟ' => 'سم',
1566
- 'ﰠ' => 'صح',
1567
- 'ﰡ' => 'صم',
1568
- 'ﰢ' => 'ضج',
1569
- 'ﰣ' => 'ضح',
1570
- 'ﰤ' => 'ضخ',
1571
- 'ﰥ' => 'ضم',
1572
- 'ﰦ' => 'طح',
1573
- 'ﰧ' => 'طم',
1574
- 'ﰨ' => 'ظم',
1575
- 'ﰩ' => 'عج',
1576
- 'ﰪ' => 'عم',
1577
- 'ﰫ' => 'غج',
1578
- 'ﰬ' => 'غم',
1579
- 'ﰭ' => 'فج',
1580
- 'ﰮ' => 'فح',
1581
- 'ﰯ' => 'فخ',
1582
- 'ﰰ' => 'فم',
1583
- 'ﰱ' => 'فى',
1584
- 'ﰲ' => 'في',
1585
- 'ﰳ' => 'قح',
1586
- 'ﰴ' => 'قم',
1587
- 'ﰵ' => 'قى',
1588
- 'ﰶ' => 'قي',
1589
- 'ﰷ' => 'كا',
1590
- 'ﰸ' => 'كج',
1591
- 'ﰹ' => 'كح',
1592
- 'ﰺ' => 'كخ',
1593
- 'ﰻ' => 'كل',
1594
- 'ﰼ' => 'كم',
1595
- 'ﰽ' => 'كى',
1596
- 'ﰾ' => 'كي',
1597
- 'ﰿ' => 'لج',
1598
- 'ﱀ' => 'لح',
1599
- 'ﱁ' => 'لخ',
1600
- 'ﱂ' => 'لم',
1601
- 'ﱃ' => 'لى',
1602
- 'ﱄ' => 'لي',
1603
- 'ﱅ' => 'مج',
1604
- 'ﱆ' => 'مح',
1605
- 'ﱇ' => 'مخ',
1606
- 'ﱈ' => 'مم',
1607
- 'ﱉ' => 'مى',
1608
- 'ﱊ' => 'مي',
1609
- 'ﱋ' => 'نج',
1610
- 'ﱌ' => 'نح',
1611
- 'ﱍ' => 'نخ',
1612
- 'ﱎ' => 'نم',
1613
- 'ﱏ' => 'نى',
1614
- 'ﱐ' => 'ني',
1615
- 'ﱑ' => 'هج',
1616
- 'ﱒ' => 'هم',
1617
- 'ﱓ' => 'هى',
1618
- 'ﱔ' => 'هي',
1619
- 'ﱕ' => 'يج',
1620
- 'ﱖ' => 'يح',
1621
- 'ﱗ' => 'يخ',
1622
- 'ﱘ' => 'يم',
1623
- 'ﱙ' => 'يى',
1624
- 'ﱚ' => 'يي',
1625
- 'ﱛ' => 'ذٰ',
1626
- 'ﱜ' => 'رٰ',
1627
- 'ﱝ' => 'ىٰ',
1628
- 'ﱞ' => ' ٌّ',
1629
- 'ﱟ' => ' ٍّ',
1630
- 'ﱠ' => ' َّ',
1631
- 'ﱡ' => ' ُّ',
1632
- 'ﱢ' => ' ِّ',
1633
- 'ﱣ' => ' ّٰ',
1634
- 'ﱤ' => 'ئر',
1635
- 'ﱥ' => 'ئز',
1636
- 'ﱦ' => 'ئم',
1637
- 'ﱧ' => 'ئن',
1638
- 'ﱨ' => 'ئى',
1639
- 'ﱩ' => 'ئي',
1640
- 'ﱪ' => 'بر',
1641
- 'ﱫ' => 'بز',
1642
- 'ﱬ' => 'بم',
1643
- 'ﱭ' => 'بن',
1644
- 'ﱮ' => 'بى',
1645
- 'ﱯ' => 'بي',
1646
- 'ﱰ' => 'تر',
1647
- 'ﱱ' => 'تز',
1648
- 'ﱲ' => 'تم',
1649
- 'ﱳ' => 'تن',
1650
- 'ﱴ' => 'تى',
1651
- 'ﱵ' => 'تي',
1652
- 'ﱶ' => 'ثر',
1653
- 'ﱷ' => 'ثز',
1654
- 'ﱸ' => 'ثم',
1655
- 'ﱹ' => 'ثن',
1656
- 'ﱺ' => 'ثى',
1657
- 'ﱻ' => 'ثي',
1658
- 'ﱼ' => 'فى',
1659
- 'ﱽ' => 'في',
1660
- 'ﱾ' => 'قى',
1661
- 'ﱿ' => 'قي',
1662
- 'ﲀ' => 'كا',
1663
- 'ﲁ' => 'كل',
1664
- 'ﲂ' => 'كم',
1665
- 'ﲃ' => 'كى',
1666
- 'ﲄ' => 'كي',
1667
- 'ﲅ' => 'لم',
1668
- 'ﲆ' => 'لى',
1669
- 'ﲇ' => 'لي',
1670
- 'ﲈ' => 'ما',
1671
- 'ﲉ' => 'مم',
1672
- 'ﲊ' => 'نر',
1673
- 'ﲋ' => 'نز',
1674
- 'ﲌ' => 'نم',
1675
- 'ﲍ' => 'نن',
1676
- 'ﲎ' => 'نى',
1677
- 'ﲏ' => 'ني',
1678
- 'ﲐ' => 'ىٰ',
1679
- 'ﲑ' => 'ير',
1680
- 'ﲒ' => 'يز',
1681
- 'ﲓ' => 'يم',
1682
- 'ﲔ' => 'ين',
1683
- 'ﲕ' => 'يى',
1684
- 'ﲖ' => 'يي',
1685
- 'ﲗ' => 'ئج',
1686
- 'ﲘ' => 'ئح',
1687
- 'ﲙ' => 'ئخ',
1688
- 'ﲚ' => 'ئم',
1689
- 'ﲛ' => 'ئه',
1690
- 'ﲜ' => 'بج',
1691
- 'ﲝ' => 'بح',
1692
- 'ﲞ' => 'بخ',
1693
- 'ﲟ' => 'بم',
1694
- 'ﲠ' => 'به',
1695
- 'ﲡ' => 'تج',
1696
- 'ﲢ' => 'تح',
1697
- 'ﲣ' => 'تخ',
1698
- 'ﲤ' => 'تم',
1699
- 'ﲥ' => 'ته',
1700
- 'ﲦ' => 'ثم',
1701
- 'ﲧ' => 'جح',
1702
- 'ﲨ' => 'جم',
1703
- 'ﲩ' => 'حج',
1704
- 'ﲪ' => 'حم',
1705
- 'ﲫ' => 'خج',
1706
- 'ﲬ' => 'خم',
1707
- 'ﲭ' => 'سج',
1708
- 'ﲮ' => 'سح',
1709
- 'ﲯ' => 'سخ',
1710
- 'ﲰ' => 'سم',
1711
- 'ﲱ' => 'صح',
1712
- 'ﲲ' => 'صخ',
1713
- 'ﲳ' => 'صم',
1714
- 'ﲴ' => 'ضج',
1715
- 'ﲵ' => 'ضح',
1716
- 'ﲶ' => 'ضخ',
1717
- 'ﲷ' => 'ضم',
1718
- 'ﲸ' => 'طح',
1719
- 'ﲹ' => 'ظم',
1720
- 'ﲺ' => 'عج',
1721
- 'ﲻ' => 'عم',
1722
- 'ﲼ' => 'غج',
1723
- 'ﲽ' => 'غم',
1724
- 'ﲾ' => 'فج',
1725
- 'ﲿ' => 'فح',
1726
- 'ﳀ' => 'فخ',
1727
- 'ﳁ' => 'فم',
1728
- 'ﳂ' => 'قح',
1729
- 'ﳃ' => 'قم',
1730
- 'ﳄ' => 'كج',
1731
- 'ﳅ' => 'كح',
1732
- 'ﳆ' => 'كخ',
1733
- 'ﳇ' => 'كل',
1734
- 'ﳈ' => 'كم',
1735
- 'ﳉ' => 'لج',
1736
- 'ﳊ' => 'لح',
1737
- 'ﳋ' => 'لخ',
1738
- 'ﳌ' => 'لم',
1739
- 'ﳍ' => 'له',
1740
- 'ﳎ' => 'مج',
1741
- 'ﳏ' => 'مح',
1742
- 'ﳐ' => 'مخ',
1743
- 'ﳑ' => 'مم',
1744
- 'ﳒ' => 'نج',
1745
- 'ﳓ' => 'نح',
1746
- 'ﳔ' => 'نخ',
1747
- 'ﳕ' => 'نم',
1748
- 'ﳖ' => 'نه',
1749
- 'ﳗ' => 'هج',
1750
- 'ﳘ' => 'هم',
1751
- 'ﳙ' => 'هٰ',
1752
- 'ﳚ' => 'يج',
1753
- 'ﳛ' => 'يح',
1754
- 'ﳜ' => 'يخ',
1755
- 'ﳝ' => 'يم',
1756
- 'ﳞ' => 'يه',
1757
- 'ﳟ' => 'ئم',
1758
- 'ﳠ' => 'ئه',
1759
- 'ﳡ' => 'بم',
1760
- 'ﳢ' => 'به',
1761
- 'ﳣ' => 'تم',
1762
- 'ﳤ' => 'ته',
1763
- 'ﳥ' => 'ثم',
1764
- 'ﳦ' => 'ثه',
1765
- 'ﳧ' => 'سم',
1766
- 'ﳨ' => 'سه',
1767
- 'ﳩ' => 'شم',
1768
- 'ﳪ' => 'شه',
1769
- 'ﳫ' => 'كل',
1770
- 'ﳬ' => 'كم',
1771
- 'ﳭ' => 'لم',
1772
- 'ﳮ' => 'نم',
1773
- 'ﳯ' => 'نه',
1774
- 'ﳰ' => 'يم',
1775
- 'ﳱ' => 'يه',
1776
- 'ﳲ' => 'ـَّ',
1777
- 'ﳳ' => 'ـُّ',
1778
- 'ﳴ' => 'ـِّ',
1779
- 'ﳵ' => 'طى',
1780
- 'ﳶ' => 'طي',
1781
- 'ﳷ' => 'عى',
1782
- 'ﳸ' => 'عي',
1783
- 'ﳹ' => 'غى',
1784
- 'ﳺ' => 'غي',
1785
- 'ﳻ' => 'سى',
1786
- 'ﳼ' => 'سي',
1787
- 'ﳽ' => 'شى',
1788
- 'ﳾ' => 'شي',
1789
- 'ﳿ' => 'حى',
1790
- 'ﴀ' => 'حي',
1791
- 'ﴁ' => 'جى',
1792
- 'ﴂ' => 'جي',
1793
- 'ﴃ' => 'خى',
1794
- 'ﴄ' => 'خي',
1795
- 'ﴅ' => 'صى',
1796
- 'ﴆ' => 'صي',
1797
- 'ﴇ' => 'ضى',
1798
- 'ﴈ' => 'ضي',
1799
- 'ﴉ' => 'شج',
1800
- 'ﴊ' => 'شح',
1801
- 'ﴋ' => 'شخ',
1802
- 'ﴌ' => 'شم',
1803
- 'ﴍ' => 'شر',
1804
- 'ﴎ' => 'سر',
1805
- 'ﴏ' => 'صر',
1806
- 'ﴐ' => 'ضر',
1807
- 'ﴑ' => 'طى',
1808
- 'ﴒ' => 'طي',
1809
- 'ﴓ' => 'عى',
1810
- 'ﴔ' => 'عي',
1811
- 'ﴕ' => 'غى',
1812
- 'ﴖ' => 'غي',
1813
- 'ﴗ' => 'سى',
1814
- 'ﴘ' => 'سي',
1815
- 'ﴙ' => 'شى',
1816
- 'ﴚ' => 'شي',
1817
- 'ﴛ' => 'حى',
1818
- 'ﴜ' => 'حي',
1819
- 'ﴝ' => 'جى',
1820
- 'ﴞ' => 'جي',
1821
- 'ﴟ' => 'خى',
1822
- 'ﴠ' => 'خي',
1823
- 'ﴡ' => 'صى',
1824
- 'ﴢ' => 'صي',
1825
- 'ﴣ' => 'ضى',
1826
- 'ﴤ' => 'ضي',
1827
- 'ﴥ' => 'شج',
1828
- 'ﴦ' => 'شح',
1829
- 'ﴧ' => 'شخ',
1830
- 'ﴨ' => 'شم',
1831
- 'ﴩ' => 'شر',
1832
- 'ﴪ' => 'سر',
1833
- 'ﴫ' => 'صر',
1834
- 'ﴬ' => 'ضر',
1835
- 'ﴭ' => 'شج',
1836
- 'ﴮ' => 'شح',
1837
- 'ﴯ' => 'شخ',
1838
- 'ﴰ' => 'شم',
1839
- 'ﴱ' => 'سه',
1840
- 'ﴲ' => 'شه',
1841
- 'ﴳ' => 'طم',
1842
- 'ﴴ' => 'سج',
1843
- 'ﴵ' => 'سح',
1844
- 'ﴶ' => 'سخ',
1845
- 'ﴷ' => 'شج',
1846
- 'ﴸ' => 'شح',
1847
- 'ﴹ' => 'شخ',
1848
- 'ﴺ' => 'طم',
1849
- 'ﴻ' => 'ظم',
1850
- 'ﴼ' => 'اً',
1851
- 'ﴽ' => 'اً',
1852
- 'ﵐ' => 'تجم',
1853
- 'ﵑ' => 'تحج',
1854
- 'ﵒ' => 'تحج',
1855
- 'ﵓ' => 'تحم',
1856
- 'ﵔ' => 'تخم',
1857
- 'ﵕ' => 'تمج',
1858
- 'ﵖ' => 'تمح',
1859
- 'ﵗ' => 'تمخ',
1860
- 'ﵘ' => 'جمح',
1861
- 'ﵙ' => 'جمح',
1862
- 'ﵚ' => 'حمي',
1863
- 'ﵛ' => 'حمى',
1864
- 'ﵜ' => 'سحج',
1865
- 'ﵝ' => 'سجح',
1866
- 'ﵞ' => 'سجى',
1867
- 'ﵟ' => 'سمح',
1868
- 'ﵠ' => 'سمح',
1869
- 'ﵡ' => 'سمج',
1870
- 'ﵢ' => 'سمم',
1871
- 'ﵣ' => 'سمم',
1872
- 'ﵤ' => 'صحح',
1873
- '���' => 'صحح',
1874
- 'ﵦ' => 'صمم',
1875
- 'ﵧ' => 'شحم',
1876
- 'ﵨ' => 'شحم',
1877
- 'ﵩ' => 'شجي',
1878
- 'ﵪ' => 'شمخ',
1879
- 'ﵫ' => 'شمخ',
1880
- 'ﵬ' => 'شمم',
1881
- 'ﵭ' => 'شمم',
1882
- 'ﵮ' => 'ضحى',
1883
- 'ﵯ' => 'ضخم',
1884
- 'ﵰ' => 'ضخم',
1885
- 'ﵱ' => 'طمح',
1886
- 'ﵲ' => 'طمح',
1887
- 'ﵳ' => 'طمم',
1888
- 'ﵴ' => 'طمي',
1889
- 'ﵵ' => 'عجم',
1890
- 'ﵶ' => 'عمم',
1891
- 'ﵷ' => 'عمم',
1892
- 'ﵸ' => 'عمى',
1893
- 'ﵹ' => 'غمم',
1894
- 'ﵺ' => 'غمي',
1895
- 'ﵻ' => 'غمى',
1896
- 'ﵼ' => 'فخم',
1897
- 'ﵽ' => 'فخم',
1898
- 'ﵾ' => 'قمح',
1899
- 'ﵿ' => 'قمم',
1900
- 'ﶀ' => 'لحم',
1901
- 'ﶁ' => 'لحي',
1902
- 'ﶂ' => 'لحى',
1903
- 'ﶃ' => 'لجج',
1904
- 'ﶄ' => 'لجج',
1905
- 'ﶅ' => 'لخم',
1906
- 'ﶆ' => 'لخم',
1907
- 'ﶇ' => 'لمح',
1908
- 'ﶈ' => 'لمح',
1909
- 'ﶉ' => 'محج',
1910
- 'ﶊ' => 'محم',
1911
- 'ﶋ' => 'محي',
1912
- 'ﶌ' => 'مجح',
1913
- 'ﶍ' => 'مجم',
1914
- 'ﶎ' => 'مخج',
1915
- 'ﶏ' => 'مخم',
1916
- 'ﶒ' => 'مجخ',
1917
- 'ﶓ' => 'همج',
1918
- 'ﶔ' => 'همم',
1919
- 'ﶕ' => 'نحم',
1920
- 'ﶖ' => 'نحى',
1921
- 'ﶗ' => 'نجم',
1922
- 'ﶘ' => 'نجم',
1923
- 'ﶙ' => 'نجى',
1924
- 'ﶚ' => 'نمي',
1925
- 'ﶛ' => 'نمى',
1926
- 'ﶜ' => 'يمم',
1927
- 'ﶝ' => 'يمم',
1928
- 'ﶞ' => 'بخي',
1929
- 'ﶟ' => 'تجي',
1930
- 'ﶠ' => 'تجى',
1931
- 'ﶡ' => 'تخي',
1932
- 'ﶢ' => 'تخى',
1933
- 'ﶣ' => 'تمي',
1934
- 'ﶤ' => 'تمى',
1935
- 'ﶥ' => 'جمي',
1936
- 'ﶦ' => 'جحى',
1937
- 'ﶧ' => 'جمى',
1938
- 'ﶨ' => 'سخى',
1939
- 'ﶩ' => 'صحي',
1940
- 'ﶪ' => 'شحي',
1941
- 'ﶫ' => 'ضحي',
1942
- 'ﶬ' => 'لجي',
1943
- 'ﶭ' => 'لمي',
1944
- 'ﶮ' => 'يحي',
1945
- 'ﶯ' => 'يجي',
1946
- 'ﶰ' => 'يمي',
1947
- 'ﶱ' => 'ممي',
1948
- 'ﶲ' => 'قمي',
1949
- 'ﶳ' => 'نحي',
1950
- 'ﶴ' => 'قمح',
1951
- 'ﶵ' => 'لحم',
1952
- 'ﶶ' => 'عمي',
1953
- 'ﶷ' => 'كمي',
1954
- 'ﶸ' => 'نجح',
1955
- 'ﶹ' => 'مخي',
1956
- 'ﶺ' => 'لجم',
1957
- 'ﶻ' => 'كمم',
1958
- 'ﶼ' => 'لجم',
1959
- 'ﶽ' => 'نجح',
1960
- 'ﶾ' => 'جحي',
1961
- 'ﶿ' => 'حجي',
1962
- 'ﷀ' => 'مجي',
1963
- 'ﷁ' => 'فمي',
1964
- 'ﷂ' => 'بحي',
1965
- 'ﷃ' => 'كمم',
1966
- 'ﷄ' => 'عجم',
1967
- 'ﷅ' => 'صمم',
1968
- 'ﷆ' => 'سخي',
1969
- 'ﷇ' => 'نجي',
1970
- 'ﷰ' => 'صلے',
1971
- 'ﷱ' => 'قلے',
1972
- 'ﷲ' => 'الله',
1973
- 'ﷳ' => 'اكبر',
1974
- 'ﷴ' => 'محمد',
1975
- 'ﷵ' => 'صلعم',
1976
- 'ﷶ' => 'رسول',
1977
- 'ﷷ' => 'عليه',
1978
- 'ﷸ' => 'وسلم',
1979
- 'ﷹ' => 'صلى',
1980
- 'ﷺ' => 'صلى الله عليه وسلم',
1981
- 'ﷻ' => 'جل جلاله',
1982
- '﷼' => 'ریال',
1983
- '︐' => ',',
1984
- '︑' => '、',
1985
- '︒' => '。',
1986
- '︓' => ':',
1987
- '︔' => ';',
1988
- '︕' => '!',
1989
- '︖' => '?',
1990
- '︗' => '〖',
1991
- '︘' => '〗',
1992
- '︙' => '...',
1993
- '︰' => '..',
1994
- '︱' => '—',
1995
- '︲' => '–',
1996
- '︳' => '_',
1997
- '︴' => '_',
1998
- '︵' => '(',
1999
- '︶' => ')',
2000
- '︷' => '{',
2001
- '︸' => '}',
2002
- '︹' => '〔',
2003
- '︺' => '〕',
2004
- '︻' => '【',
2005
- '︼' => '】',
2006
- '︽' => '《',
2007
- '︾' => '》',
2008
- '︿' => '〈',
2009
- '﹀' => '〉',
2010
- '﹁' => '「',
2011
- '﹂' => '」',
2012
- '﹃' => '『',
2013
- '﹄' => '』',
2014
- '﹇' => '[',
2015
- '﹈' => ']',
2016
- '﹉' => ' ̅',
2017
- '﹊' => ' ̅',
2018
- '﹋' => ' ̅',
2019
- '﹌' => ' ̅',
2020
- '﹍' => '_',
2021
- '﹎' => '_',
2022
- '﹏' => '_',
2023
- '﹐' => ',',
2024
- '﹑' => '、',
2025
- '﹒' => '.',
2026
- '﹔' => ';',
2027
- '﹕' => ':',
2028
- '﹖' => '?',
2029
- '﹗' => '!',
2030
- '﹘' => '—',
2031
- '﹙' => '(',
2032
- '﹚' => ')',
2033
- '﹛' => '{',
2034
- '﹜' => '}',
2035
- '﹝' => '〔',
2036
- '﹞' => '〕',
2037
- '﹟' => '#',
2038
- '﹠' => '&',
2039
- '﹡' => '*',
2040
- '﹢' => '+',
2041
- '﹣' => '-',
2042
- '﹤' => '<',
2043
- '﹥' => '>',
2044
- '﹦' => '=',
2045
- '﹨' => '\\',
2046
- '﹩' => '$',
2047
- '﹪' => '%',
2048
- '﹫' => '@',
2049
- 'ﹰ' => ' ً',
2050
- 'ﹱ' => 'ـً',
2051
- 'ﹲ' => ' ٌ',
2052
- 'ﹴ' => ' ٍ',
2053
- 'ﹶ' => ' َ',
2054
- 'ﹷ' => 'ـَ',
2055
- 'ﹸ' => ' ُ',
2056
- 'ﹹ' => 'ـُ',
2057
- 'ﹺ' => ' ِ',
2058
- 'ﹻ' => 'ـِ',
2059
- 'ﹼ' => ' ّ',
2060
- 'ﹽ' => 'ـّ',
2061
- 'ﹾ' => ' ْ',
2062
- 'ﹿ' => 'ـْ',
2063
- 'ﺀ' => 'ء',
2064
- 'ﺁ' => 'آ',
2065
- 'ﺂ' => 'آ',
2066
- 'ﺃ' => 'أ',
2067
- 'ﺄ' => 'أ',
2068
- 'ﺅ' => 'ؤ',
2069
- 'ﺆ' => 'ؤ',
2070
- 'ﺇ' => 'إ',
2071
- 'ﺈ' => 'إ',
2072
- 'ﺉ' => 'ئ',
2073
- 'ﺊ' => 'ئ',
2074
- 'ﺋ' => 'ئ',
2075
- 'ﺌ' => 'ئ',
2076
- 'ﺍ' => 'ا',
2077
- 'ﺎ' => 'ا',
2078
- 'ﺏ' => 'ب',
2079
- 'ﺐ' => 'ب',
2080
- 'ﺑ' => 'ب',
2081
- 'ﺒ' => 'ب',
2082
- 'ﺓ' => 'ة',
2083
- 'ﺔ' => 'ة',
2084
- 'ﺕ' => 'ت',
2085
- 'ﺖ' => 'ت',
2086
- 'ﺗ' => 'ت',
2087
- 'ﺘ' => 'ت',
2088
- 'ﺙ' => 'ث',
2089
- 'ﺚ' => 'ث',
2090
- 'ﺛ' => 'ث',
2091
- 'ﺜ' => 'ث',
2092
- 'ﺝ' => 'ج',
2093
- 'ﺞ' => 'ج',
2094
- 'ﺟ' => 'ج',
2095
- 'ﺠ' => 'ج',
2096
- 'ﺡ' => 'ح',
2097
- 'ﺢ' => 'ح',
2098
- 'ﺣ' => 'ح',
2099
- 'ﺤ' => 'ح',
2100
- 'ﺥ' => 'خ',
2101
- 'ﺦ' => 'خ',
2102
- 'ﺧ' => 'خ',
2103
- 'ﺨ' => 'خ',
2104
- 'ﺩ' => 'د',
2105
- 'ﺪ' => 'د',
2106
- 'ﺫ' => 'ذ',
2107
- 'ﺬ' => 'ذ',
2108
- 'ﺭ' => 'ر',
2109
- 'ﺮ' => 'ر',
2110
- 'ﺯ' => 'ز',
2111
- 'ﺰ' => 'ز',
2112
- 'ﺱ' => 'س',
2113
- 'ﺲ' => 'س',
2114
- 'ﺳ' => 'س',
2115
- 'ﺴ' => 'س',
2116
- 'ﺵ' => 'ش',
2117
- 'ﺶ' => 'ش',
2118
- 'ﺷ' => 'ش',
2119
- 'ﺸ' => 'ش',
2120
- 'ﺹ' => 'ص',
2121
- 'ﺺ' => 'ص',
2122
- 'ﺻ' => 'ص',
2123
- 'ﺼ' => 'ص',
2124
- 'ﺽ' => 'ض',
2125
- 'ﺾ' => 'ض',
2126
- 'ﺿ' => 'ض',
2127
- 'ﻀ' => 'ض',
2128
- 'ﻁ' => 'ط',
2129
- 'ﻂ' => 'ط',
2130
- 'ﻃ' => 'ط',
2131
- 'ﻄ' => 'ط',
2132
- 'ﻅ' => 'ظ',
2133
- 'ﻆ' => 'ظ',
2134
- 'ﻇ' => 'ظ',
2135
- 'ﻈ' => 'ظ',
2136
- 'ﻉ' => 'ع',
2137
- 'ﻊ' => 'ع',
2138
- 'ﻋ' => 'ع',
2139
- 'ﻌ' => 'ع',
2140
- 'ﻍ' => 'غ',
2141
- 'ﻎ' => 'غ',
2142
- 'ﻏ' => 'غ',
2143
- 'ﻐ' => 'غ',
2144
- 'ﻑ' => 'ف',
2145
- 'ﻒ' => 'ف',
2146
- 'ﻓ' => 'ف',
2147
- 'ﻔ' => 'ف',
2148
- 'ﻕ' => 'ق',
2149
- 'ﻖ' => 'ق',
2150
- 'ﻗ' => 'ق',
2151
- 'ﻘ' => 'ق',
2152
- 'ﻙ' => 'ك',
2153
- 'ﻚ' => 'ك',
2154
- 'ﻛ' => 'ك',
2155
- 'ﻜ' => 'ك',
2156
- 'ﻝ' => 'ل',
2157
- 'ﻞ' => 'ل',
2158
- 'ﻟ' => 'ل',
2159
- 'ﻠ' => 'ل',
2160
- 'ﻡ' => 'م',
2161
- 'ﻢ' => 'م',
2162
- 'ﻣ' => 'م',
2163
- 'ﻤ' => 'م',
2164
- 'ﻥ' => 'ن',
2165
- 'ﻦ' => 'ن',
2166
- 'ﻧ' => 'ن',
2167
- 'ﻨ' => 'ن',
2168
- 'ﻩ' => 'ه',
2169
- 'ﻪ' => 'ه',
2170
- 'ﻫ' => 'ه',
2171
- 'ﻬ' => 'ه',
2172
- 'ﻭ' => 'و',
2173
- 'ﻮ' => 'و',
2174
- 'ﻯ' => 'ى',
2175
- 'ﻰ' => 'ى',
2176
- 'ﻱ' => 'ي',
2177
- 'ﻲ' => 'ي',
2178
- 'ﻳ' => 'ي',
2179
- 'ﻴ' => 'ي',
2180
- 'ﻵ' => 'لآ',
2181
- 'ﻶ' => 'لآ',
2182
- 'ﻷ' => 'لأ',
2183
- 'ﻸ' => 'لأ',
2184
- 'ﻹ' => 'لإ',
2185
- 'ﻺ' => 'لإ',
2186
- 'ﻻ' => 'لا',
2187
- 'ﻼ' => 'لا',
2188
- '!' => '!',
2189
- '"' => '"',
2190
- '#' => '#',
2191
- '$' => '$',
2192
- '%' => '%',
2193
- '&' => '&',
2194
- ''' => '\'',
2195
- '(' => '(',
2196
- ')' => ')',
2197
- '*' => '*',
2198
- '+' => '+',
2199
- ',' => ',',
2200
- '-' => '-',
2201
- '.' => '.',
2202
- '/' => '/',
2203
- '0' => '0',
2204
- '1' => '1',
2205
- '2' => '2',
2206
- '3' => '3',
2207
- '4' => '4',
2208
- '5' => '5',
2209
- '6' => '6',
2210
- '7' => '7',
2211
- '8' => '8',
2212
- '9' => '9',
2213
- ':' => ':',
2214
- ';' => ';',
2215
- '<' => '<',
2216
- '=' => '=',
2217
- '>' => '>',
2218
- '?' => '?',
2219
- '@' => '@',
2220
- 'A' => 'A',
2221
- 'B' => 'B',
2222
- 'C' => 'C',
2223
- 'D' => 'D',
2224
- 'E' => 'E',
2225
- 'F' => 'F',
2226
- 'G' => 'G',
2227
- 'H' => 'H',
2228
- 'I' => 'I',
2229
- 'J' => 'J',
2230
- 'K' => 'K',
2231
- 'L' => 'L',
2232
- 'M' => 'M',
2233
- 'N' => 'N',
2234
- 'O' => 'O',
2235
- 'P' => 'P',
2236
- 'Q' => 'Q',
2237
- 'R' => 'R',
2238
- 'S' => 'S',
2239
- 'T' => 'T',
2240
- 'U' => 'U',
2241
- 'V' => 'V',
2242
- 'W' => 'W',
2243
- 'X' => 'X',
2244
- 'Y' => 'Y',
2245
- 'Z' => 'Z',
2246
- '[' => '[',
2247
- '\' => '\\',
2248
- ']' => ']',
2249
- '^' => '^',
2250
- '_' => '_',
2251
- '`' => '`',
2252
- 'a' => 'a',
2253
- 'b' => 'b',
2254
- 'c' => 'c',
2255
- 'd' => 'd',
2256
- 'e' => 'e',
2257
- 'f' => 'f',
2258
- 'g' => 'g',
2259
- 'h' => 'h',
2260
- 'i' => 'i',
2261
- 'j' => 'j',
2262
- 'k' => 'k',
2263
- 'l' => 'l',
2264
- 'm' => 'm',
2265
- 'n' => 'n',
2266
- 'o' => 'o',
2267
- 'p' => 'p',
2268
- 'q' => 'q',
2269
- 'r' => 'r',
2270
- 's' => 's',
2271
- 't' => 't',
2272
- 'u' => 'u',
2273
- 'v' => 'v',
2274
- 'w' => 'w',
2275
- 'x' => 'x',
2276
- 'y' => 'y',
2277
- 'z' => 'z',
2278
- '{' => '{',
2279
- '|' => '|',
2280
- '}' => '}',
2281
- '~' => '~',
2282
- '⦅' => '⦅',
2283
- '⦆' => '⦆',
2284
- '。' => '。',
2285
- '「' => '「',
2286
- '」' => '」',
2287
- '、' => '、',
2288
- '・' => '・',
2289
- 'ヲ' => 'ヲ',
2290
- 'ァ' => 'ァ',
2291
- 'ィ' => 'ィ',
2292
- 'ゥ' => 'ゥ',
2293
- 'ェ' => 'ェ',
2294
- 'ォ' => 'ォ',
2295
- 'ャ' => 'ャ',
2296
- 'ュ' => 'ュ',
2297
- 'ョ' => 'ョ',
2298
- 'ッ' => 'ッ',
2299
- 'ー' => 'ー',
2300
- 'ア' => 'ア',
2301
- 'イ' => 'イ',
2302
- 'ウ' => 'ウ',
2303
- 'エ' => 'エ',
2304
- 'オ' => 'オ',
2305
- 'カ' => 'カ',
2306
- 'キ' => 'キ',
2307
- 'ク' => 'ク',
2308
- 'ケ' => 'ケ',
2309
- 'コ' => 'コ',
2310
- 'サ' => 'サ',
2311
- 'シ' => 'シ',
2312
- 'ス' => 'ス',
2313
- 'セ' => 'セ',
2314
- 'ソ' => 'ソ',
2315
- 'タ' => 'タ',
2316
- 'チ' => 'チ',
2317
- 'ツ' => 'ツ',
2318
- 'テ' => 'テ',
2319
- 'ト' => 'ト',
2320
- 'ナ' => 'ナ',
2321
- 'ニ' => 'ニ',
2322
- 'ヌ' => 'ヌ',
2323
- 'ネ' => 'ネ',
2324
- 'ノ' => 'ノ',
2325
- 'ハ' => 'ハ',
2326
- 'ヒ' => 'ヒ',
2327
- 'フ' => 'フ',
2328
- 'ヘ' => 'ヘ',
2329
- 'ホ' => 'ホ',
2330
- 'マ' => 'マ',
2331
- 'ミ' => 'ミ',
2332
- 'ム' => 'ム',
2333
- 'メ' => 'メ',
2334
- 'モ' => 'モ',
2335
- 'ヤ' => 'ヤ',
2336
- 'ユ' => 'ユ',
2337
- 'ヨ' => 'ヨ',
2338
- 'ラ' => 'ラ',
2339
- 'リ' => 'リ',
2340
- 'ル' => 'ル',
2341
- 'レ' => 'レ',
2342
- 'ロ' => 'ロ',
2343
- 'ワ' => 'ワ',
2344
- 'ン' => 'ン',
2345
- '゙' => '゙',
2346
- '゚' => '゚',
2347
- 'ᅠ' => 'ᅠ',
2348
- 'ᄀ' => 'ᄀ',
2349
- 'ᄁ' => 'ᄁ',
2350
- 'ᆪ' => 'ᆪ',
2351
- 'ᄂ' => 'ᄂ',
2352
- 'ᆬ' => 'ᆬ',
2353
- 'ᆭ' => 'ᆭ',
2354
- 'ᄃ' => 'ᄃ',
2355
- 'ᄄ' => 'ᄄ',
2356
- 'ᄅ' => 'ᄅ',
2357
- 'ᆰ' => 'ᆰ',
2358
- 'ᆱ' => 'ᆱ',
2359
- 'ᆲ' => 'ᆲ',
2360
- 'ᆳ' => 'ᆳ',
2361
- 'ᆴ' => 'ᆴ',
2362
- 'ᆵ' => 'ᆵ',
2363
- 'ᄚ' => 'ᄚ',
2364
- 'ᄆ' => 'ᄆ',
2365
- 'ᄇ' => 'ᄇ',
2366
- 'ᄈ' => 'ᄈ',
2367
- 'ᄡ' => 'ᄡ',
2368
- 'ᄉ' => 'ᄉ',
2369
- 'ᄊ' => 'ᄊ',
2370
- 'ᄋ' => 'ᄋ',
2371
- 'ᄌ' => 'ᄌ',
2372
- 'ᄍ' => 'ᄍ',
2373
- 'ᄎ' => 'ᄎ',
2374
- 'ᄏ' => 'ᄏ',
2375
- 'ᄐ' => 'ᄐ',
2376
- 'ᄑ' => 'ᄑ',
2377
- 'ᄒ' => 'ᄒ',
2378
- 'ᅡ' => 'ᅡ',
2379
- 'ᅢ' => 'ᅢ',
2380
- 'ᅣ' => 'ᅣ',
2381
- 'ᅤ' => 'ᅤ',
2382
- 'ᅥ' => 'ᅥ',
2383
- 'ᅦ' => 'ᅦ',
2384
- 'ᅧ' => 'ᅧ',
2385
- 'ᅨ' => 'ᅨ',
2386
- 'ᅩ' => 'ᅩ',
2387
- 'ᅪ' => 'ᅪ',
2388
- 'ᅫ' => 'ᅫ',
2389
- 'ᅬ' => 'ᅬ',
2390
- 'ᅭ' => 'ᅭ',
2391
- 'ᅮ' => 'ᅮ',
2392
- 'ᅯ' => 'ᅯ',
2393
- 'ᅰ' => 'ᅰ',
2394
- 'ᅱ' => 'ᅱ',
2395
- 'ᅲ' => 'ᅲ',
2396
- 'ᅳ' => 'ᅳ',
2397
- 'ᅴ' => 'ᅴ',
2398
- 'ᅵ' => 'ᅵ',
2399
- '¢' => '¢',
2400
- '£' => '£',
2401
- '¬' => '¬',
2402
- ' ̄' => ' ̄',
2403
- '¦' => '¦',
2404
- '¥' => '¥',
2405
- '₩' => '₩',
2406
- '│' => '│',
2407
- '←' => '←',
2408
- '↑' => '↑',
2409
- '→' => '→',
2410
- '↓' => '↓',
2411
- '■' => '■',
2412
- '○' => '○',
2413
- '𝐀' => 'A',
2414
- '𝐁' => 'B',
2415
- '𝐂' => 'C',
2416
- '𝐃' => 'D',
2417
- '𝐄' => 'E',
2418
- '𝐅' => 'F',
2419
- '𝐆' => 'G',
2420
- '𝐇' => 'H',
2421
- '𝐈' => 'I',
2422
- '𝐉' => 'J',
2423
- '𝐊' => 'K',
2424
- '𝐋' => 'L',
2425
- '𝐌' => 'M',
2426
- '𝐍' => 'N',
2427
- '𝐎' => 'O',
2428
- '𝐏' => 'P',
2429
- '𝐐' => 'Q',
2430
- '𝐑' => 'R',
2431
- '𝐒' => 'S',
2432
- '𝐓' => 'T',
2433
- '𝐔' => 'U',
2434
- '𝐕' => 'V',
2435
- '𝐖' => 'W',
2436
- '𝐗' => 'X',
2437
- '𝐘' => 'Y',
2438
- '𝐙' => 'Z',
2439
- '𝐚' => 'a',
2440
- '𝐛' => 'b',
2441
- '𝐜' => 'c',
2442
- '𝐝' => 'd',
2443
- '𝐞' => 'e',
2444
- '𝐟' => 'f',
2445
- '𝐠' => 'g',
2446
- '𝐡' => 'h',
2447
- '𝐢' => 'i',
2448
- '𝐣' => 'j',
2449
- '𝐤' => 'k',
2450
- '𝐥' => 'l',
2451
- '𝐦' => 'm',
2452
- '𝐧' => 'n',
2453
- '𝐨' => 'o',
2454
- '𝐩' => 'p',
2455
- '𝐪' => 'q',
2456
- '𝐫' => 'r',
2457
- '𝐬' => 's',
2458
- '𝐭' => 't',
2459
- '𝐮' => 'u',
2460
- '𝐯' => 'v',
2461
- '𝐰' => 'w',
2462
- '𝐱' => 'x',
2463
- '𝐲' => 'y',
2464
- '𝐳' => 'z',
2465
- '𝐴' => 'A',
2466
- '𝐵' => 'B',
2467
- '𝐶' => 'C',
2468
- '𝐷' => 'D',
2469
- '𝐸' => 'E',
2470
- '𝐹' => 'F',
2471
- '𝐺' => 'G',
2472
- '𝐻' => 'H',
2473
- '𝐼' => 'I',
2474
- '𝐽' => 'J',
2475
- '𝐾' => 'K',
2476
- '𝐿' => 'L',
2477
- '𝑀' => 'M',
2478
- '𝑁' => 'N',
2479
- '𝑂' => 'O',
2480
- '𝑃' => 'P',
2481
- '𝑄' => 'Q',
2482
- '𝑅' => 'R',
2483
- '𝑆' => 'S',
2484
- '𝑇' => 'T',
2485
- '𝑈' => 'U',
2486
- '𝑉' => 'V',
2487
- '𝑊' => 'W',
2488
- '𝑋' => 'X',
2489
- '𝑌' => 'Y',
2490
- '𝑍' => 'Z',
2491
- '𝑎' => 'a',
2492
- '𝑏' => 'b',
2493
- '𝑐' => 'c',
2494
- '𝑑' => 'd',
2495
- '𝑒' => 'e',
2496
- '𝑓' => 'f',
2497
- '𝑔' => 'g',
2498
- '𝑖' => 'i',
2499
- '𝑗' => 'j',
2500
- '𝑘' => 'k',
2501
- '𝑙' => 'l',
2502
- '𝑚' => 'm',
2503
- '𝑛' => 'n',
2504
- '𝑜' => 'o',
2505
- '𝑝' => 'p',
2506
- '𝑞' => 'q',
2507
- '𝑟' => 'r',
2508
- '𝑠' => 's',
2509
- '𝑡' => 't',
2510
- '𝑢' => 'u',
2511
- '𝑣' => 'v',
2512
- '𝑤' => 'w',
2513
- '𝑥' => 'x',
2514
- '𝑦' => 'y',
2515
- '𝑧' => 'z',
2516
- '𝑨' => 'A',
2517
- '𝑩' => 'B',
2518
- '𝑪' => 'C',
2519
- '𝑫' => 'D',
2520
- '𝑬' => 'E',
2521
- '𝑭' => 'F',
2522
- '𝑮' => 'G',
2523
- '𝑯' => 'H',
2524
- '𝑰' => 'I',
2525
- '𝑱' => 'J',
2526
- '𝑲' => 'K',
2527
- '𝑳' => 'L',
2528
- '𝑴' => 'M',
2529
- '𝑵' => 'N',
2530
- '𝑶' => 'O',
2531
- '𝑷' => 'P',
2532
- '𝑸' => 'Q',
2533
- '𝑹' => 'R',
2534
- '𝑺' => 'S',
2535
- '𝑻' => 'T',
2536
- '𝑼' => 'U',
2537
- '𝑽' => 'V',
2538
- '𝑾' => 'W',
2539
- '𝑿' => 'X',
2540
- '𝒀' => 'Y',
2541
- '𝒁' => 'Z',
2542
- '𝒂' => 'a',
2543
- '𝒃' => 'b',
2544
- '𝒄' => 'c',
2545
- '𝒅' => 'd',
2546
- '𝒆' => 'e',
2547
- '𝒇' => 'f',
2548
- '𝒈' => 'g',
2549
- '𝒉' => 'h',
2550
- '𝒊' => 'i',
2551
- '𝒋' => 'j',
2552
- '𝒌' => 'k',
2553
- '𝒍' => 'l',
2554
- '𝒎' => 'm',
2555
- '𝒏' => 'n',
2556
- '𝒐' => 'o',
2557
- '𝒑' => 'p',
2558
- '𝒒' => 'q',
2559
- '𝒓' => 'r',
2560
- '𝒔' => 's',
2561
- '𝒕' => 't',
2562
- '𝒖' => 'u',
2563
- '𝒗' => 'v',
2564
- '𝒘' => 'w',
2565
- '𝒙' => 'x',
2566
- '𝒚' => 'y',
2567
- '𝒛' => 'z',
2568
- '𝒜' => 'A',
2569
- '𝒞' => 'C',
2570
- '𝒟' => 'D',
2571
- '𝒢' => 'G',
2572
- '𝒥' => 'J',
2573
- '𝒦' => 'K',
2574
- '𝒩' => 'N',
2575
- '𝒪' => 'O',
2576
- '𝒫' => 'P',
2577
- '𝒬' => 'Q',
2578
- '𝒮' => 'S',
2579
- '𝒯' => 'T',
2580
- '𝒰' => 'U',
2581
- '𝒱' => 'V',
2582
- '𝒲' => 'W',
2583
- '𝒳' => 'X',
2584
- '𝒴' => 'Y',
2585
- '𝒵' => 'Z',
2586
- '𝒶' => 'a',
2587
- '𝒷' => 'b',
2588
- '𝒸' => 'c',
2589
- '𝒹' => 'd',
2590
- '𝒻' => 'f',
2591
- '𝒽' => 'h',
2592
- '𝒾' => 'i',
2593
- '𝒿' => 'j',
2594
- '𝓀' => 'k',
2595
- '𝓁' => 'l',
2596
- '𝓂' => 'm',
2597
- '𝓃' => 'n',
2598
- '𝓅' => 'p',
2599
- '𝓆' => 'q',
2600
- '𝓇' => 'r',
2601
- '𝓈' => 's',
2602
- '𝓉' => 't',
2603
- '𝓊' => 'u',
2604
- '𝓋' => 'v',
2605
- '𝓌' => 'w',
2606
- '𝓍' => 'x',
2607
- '𝓎' => 'y',
2608
- '𝓏' => 'z',
2609
- '𝓐' => 'A',
2610
- '𝓑' => 'B',
2611
- '𝓒' => 'C',
2612
- '𝓓' => 'D',
2613
- '𝓔' => 'E',
2614
- '𝓕' => 'F',
2615
- '𝓖' => 'G',
2616
- '𝓗' => 'H',
2617
- '𝓘' => 'I',
2618
- '𝓙' => 'J',
2619
- '𝓚' => 'K',
2620
- '𝓛' => 'L',
2621
- '𝓜' => 'M',
2622
- '𝓝' => 'N',
2623
- '𝓞' => 'O',
2624
- '𝓟' => 'P',
2625
- '𝓠' => 'Q',
2626
- '𝓡' => 'R',
2627
- '𝓢' => 'S',
2628
- '𝓣' => 'T',
2629
- '𝓤' => 'U',
2630
- '𝓥' => 'V',
2631
- '𝓦' => 'W',
2632
- '𝓧' => 'X',
2633
- '𝓨' => 'Y',
2634
- '𝓩' => 'Z',
2635
- '𝓪' => 'a',
2636
- '𝓫' => 'b',
2637
- '𝓬' => 'c',
2638
- '𝓭' => 'd',
2639
- '𝓮' => 'e',
2640
- '𝓯' => 'f',
2641
- '𝓰' => 'g',
2642
- '𝓱' => 'h',
2643
- '𝓲' => 'i',
2644
- '𝓳' => 'j',
2645
- '𝓴' => 'k',
2646
- '𝓵' => 'l',
2647
- '𝓶' => 'm',
2648
- '𝓷' => 'n',
2649
- '𝓸' => 'o',
2650
- '𝓹' => 'p',
2651
- '𝓺' => 'q',
2652
- '𝓻' => 'r',
2653
- '𝓼' => 's',
2654
- '𝓽' => 't',
2655
- '𝓾' => 'u',
2656
- '𝓿' => 'v',
2657
- '𝔀' => 'w',
2658
- '𝔁' => 'x',
2659
- '𝔂' => 'y',
2660
- '𝔃' => 'z',
2661
- '𝔄' => 'A',
2662
- '𝔅' => 'B',
2663
- '𝔇' => 'D',
2664
- '𝔈' => 'E',
2665
- '𝔉' => 'F',
2666
- '𝔊' => 'G',
2667
- '𝔍' => 'J',
2668
- '𝔎' => 'K',
2669
- '𝔏' => 'L',
2670
- '𝔐' => 'M',
2671
- '𝔑' => 'N',
2672
- '𝔒' => 'O',
2673
- '𝔓' => 'P',
2674
- '𝔔' => 'Q',
2675
- '𝔖' => 'S',
2676
- '𝔗' => 'T',
2677
- '𝔘' => 'U',
2678
- '𝔙' => 'V',
2679
- '𝔚' => 'W',
2680
- '𝔛' => 'X',
2681
- '𝔜' => 'Y',
2682
- '𝔞' => 'a',
2683
- '𝔟' => 'b',
2684
- '𝔠' => 'c',
2685
- '𝔡' => 'd',
2686
- '𝔢' => 'e',
2687
- '𝔣' => 'f',
2688
- '𝔤' => 'g',
2689
- '𝔥' => 'h',
2690
- '𝔦' => 'i',
2691
- '𝔧' => 'j',
2692
- '𝔨' => 'k',
2693
- '𝔩' => 'l',
2694
- '𝔪' => 'm',
2695
- '𝔫' => 'n',
2696
- '𝔬' => 'o',
2697
- '𝔭' => 'p',
2698
- '𝔮' => 'q',
2699
- '𝔯' => 'r',
2700
- '𝔰' => 's',
2701
- '𝔱' => 't',
2702
- '𝔲' => 'u',
2703
- '𝔳' => 'v',
2704
- '𝔴' => 'w',
2705
- '𝔵' => 'x',
2706
- '𝔶' => 'y',
2707
- '𝔷' => 'z',
2708
- '𝔸' => 'A',
2709
- '𝔹' => 'B',
2710
- '𝔻' => 'D',
2711
- '𝔼' => 'E',
2712
- '𝔽' => 'F',
2713
- '𝔾' => 'G',
2714
- '𝕀' => 'I',
2715
- '𝕁' => 'J',
2716
- '𝕂' => 'K',
2717
- '𝕃' => 'L',
2718
- '𝕄' => 'M',
2719
- '𝕆' => 'O',
2720
- '𝕊' => 'S',
2721
- '𝕋' => 'T',
2722
- '𝕌' => 'U',
2723
- '𝕍' => 'V',
2724
- '𝕎' => 'W',
2725
- '𝕏' => 'X',
2726
- '𝕐' => 'Y',
2727
- '𝕒' => 'a',
2728
- '𝕓' => 'b',
2729
- '𝕔' => 'c',
2730
- '𝕕' => 'd',
2731
- '𝕖' => 'e',
2732
- '𝕗' => 'f',
2733
- '𝕘' => 'g',
2734
- '𝕙' => 'h',
2735
- '𝕚' => 'i',
2736
- '𝕛' => 'j',
2737
- '𝕜' => 'k',
2738
- '𝕝' => 'l',
2739
- '𝕞' => 'm',
2740
- '𝕟' => 'n',
2741
- '𝕠' => 'o',
2742
- '𝕡' => 'p',
2743
- '𝕢' => 'q',
2744
- '𝕣' => 'r',
2745
- '𝕤' => 's',
2746
- '𝕥' => 't',
2747
- '𝕦' => 'u',
2748
- '𝕧' => 'v',
2749
- '𝕨' => 'w',
2750
- '𝕩' => 'x',
2751
- '𝕪' => 'y',
2752
- '𝕫' => 'z',
2753
- '𝕬' => 'A',
2754
- '𝕭' => 'B',
2755
- '𝕮' => 'C',
2756
- '𝕯' => 'D',
2757
- '𝕰' => 'E',
2758
- '𝕱' => 'F',
2759
- '𝕲' => 'G',
2760
- '𝕳' => 'H',
2761
- '𝕴' => 'I',
2762
- '𝕵' => 'J',
2763
- '𝕶' => 'K',
2764
- '𝕷' => 'L',
2765
- '𝕸' => 'M',
2766
- '𝕹' => 'N',
2767
- '𝕺' => 'O',
2768
- '𝕻' => 'P',
2769
- '𝕼' => 'Q',
2770
- '𝕽' => 'R',
2771
- '𝕾' => 'S',
2772
- '𝕿' => 'T',
2773
- '𝖀' => 'U',
2774
- '𝖁' => 'V',
2775
- '𝖂' => 'W',
2776
- '𝖃' => 'X',
2777
- '𝖄' => 'Y',
2778
- '𝖅' => 'Z',
2779
- '𝖆' => 'a',
2780
- '𝖇' => 'b',
2781
- '𝖈' => 'c',
2782
- '𝖉' => 'd',
2783
- '𝖊' => 'e',
2784
- '𝖋' => 'f',
2785
- '𝖌' => 'g',
2786
- '𝖍' => 'h',
2787
- '𝖎' => 'i',
2788
- '𝖏' => 'j',
2789
- '𝖐' => 'k',
2790
- '𝖑' => 'l',
2791
- '𝖒' => 'm',
2792
- '𝖓' => 'n',
2793
- '𝖔' => 'o',
2794
- '𝖕' => 'p',
2795
- '𝖖' => 'q',
2796
- '𝖗' => 'r',
2797
- '𝖘' => 's',
2798
- '𝖙' => 't',
2799
- '𝖚' => 'u',
2800
- '𝖛' => 'v',
2801
- '𝖜' => 'w',
2802
- '𝖝' => 'x',
2803
- '𝖞' => 'y',
2804
- '𝖟' => 'z',
2805
- '𝖠' => 'A',
2806
- '𝖡' => 'B',
2807
- '𝖢' => 'C',
2808
- '𝖣' => 'D',
2809
- '𝖤' => 'E',
2810
- '𝖥' => 'F',
2811
- '𝖦' => 'G',
2812
- '𝖧' => 'H',
2813
- '𝖨' => 'I',
2814
- '𝖩' => 'J',
2815
- '𝖪' => 'K',
2816
- '𝖫' => 'L',
2817
- '𝖬' => 'M',
2818
- '𝖭' => 'N',
2819
- '𝖮' => 'O',
2820
- '𝖯' => 'P',
2821
- '𝖰' => 'Q',
2822
- '𝖱' => 'R',
2823
- '𝖲' => 'S',
2824
- '𝖳' => 'T',
2825
- '𝖴' => 'U',
2826
- '𝖵' => 'V',
2827
- '𝖶' => 'W',
2828
- '𝖷' => 'X',
2829
- '𝖸' => 'Y',
2830
- '𝖹' => 'Z',
2831
- '𝖺' => 'a',
2832
- '𝖻' => 'b',
2833
- '𝖼' => 'c',
2834
- '𝖽' => 'd',
2835
- '𝖾' => 'e',
2836
- '𝖿' => 'f',
2837
- '𝗀' => 'g',
2838
- '𝗁' => 'h',
2839
- '𝗂' => 'i',
2840
- '𝗃' => 'j',
2841
- '𝗄' => 'k',
2842
- '𝗅' => 'l',
2843
- '𝗆' => 'm',
2844
- '𝗇' => 'n',
2845
- '𝗈' => 'o',
2846
- '𝗉' => 'p',
2847
- '𝗊' => 'q',
2848
- '𝗋' => 'r',
2849
- '𝗌' => 's',
2850
- '𝗍' => 't',
2851
- '𝗎' => 'u',
2852
- '𝗏' => 'v',
2853
- '𝗐' => 'w',
2854
- '𝗑' => 'x',
2855
- '𝗒' => 'y',
2856
- '𝗓' => 'z',
2857
- '𝗔' => 'A',
2858
- '𝗕' => 'B',
2859
- '𝗖' => 'C',
2860
- '𝗗' => 'D',
2861
- '𝗘' => 'E',
2862
- '𝗙' => 'F',
2863
- '𝗚' => 'G',
2864
- '𝗛' => 'H',
2865
- '𝗜' => 'I',
2866
- '𝗝' => 'J',
2867
- '𝗞' => 'K',
2868
- '𝗟' => 'L',
2869
- '𝗠' => 'M',
2870
- '𝗡' => 'N',
2871
- '𝗢' => 'O',
2872
- '𝗣' => 'P',
2873
- '𝗤' => 'Q',
2874
- '𝗥' => 'R',
2875
- '𝗦' => 'S',
2876
- '𝗧' => 'T',
2877
- '𝗨' => 'U',
2878
- '𝗩' => 'V',
2879
- '𝗪' => 'W',
2880
- '𝗫' => 'X',
2881
- '𝗬' => 'Y',
2882
- '𝗭' => 'Z',
2883
- '𝗮' => 'a',
2884
- '𝗯' => 'b',
2885
- '𝗰' => 'c',
2886
- '𝗱' => 'd',
2887
- '𝗲' => 'e',
2888
- '𝗳' => 'f',
2889
- '𝗴' => 'g',
2890
- '𝗵' => 'h',
2891
- '𝗶' => 'i',
2892
- '𝗷' => 'j',
2893
- '𝗸' => 'k',
2894
- '𝗹' => 'l',
2895
- '𝗺' => 'm',
2896
- '𝗻' => 'n',
2897
- '𝗼' => 'o',
2898
- '𝗽' => 'p',
2899
- '𝗾' => 'q',
2900
- '𝗿' => 'r',
2901
- '𝘀' => 's',
2902
- '𝘁' => 't',
2903
- '𝘂' => 'u',
2904
- '𝘃' => 'v',
2905
- '𝘄' => 'w',
2906
- '𝘅' => 'x',
2907
- '𝘆' => 'y',
2908
- '𝘇' => 'z',
2909
- '𝘈' => 'A',
2910
- '𝘉' => 'B',
2911
- '𝘊' => 'C',
2912
- '𝘋' => 'D',
2913
- '𝘌' => 'E',
2914
- '𝘍' => 'F',
2915
- '𝘎' => 'G',
2916
- '𝘏' => 'H',
2917
- '𝘐' => 'I',
2918
- '𝘑' => 'J',
2919
- '𝘒' => 'K',
2920
- '𝘓' => 'L',
2921
- '𝘔' => 'M',
2922
- '𝘕' => 'N',
2923
- '𝘖' => 'O',
2924
- '𝘗' => 'P',
2925
- '𝘘' => 'Q',
2926
- '𝘙' => 'R',
2927
- '𝘚' => 'S',
2928
- '𝘛' => 'T',
2929
- '𝘜' => 'U',
2930
- '𝘝' => 'V',
2931
- '𝘞' => 'W',
2932
- '𝘟' => 'X',
2933
- '𝘠' => 'Y',
2934
- '𝘡' => 'Z',
2935
- '𝘢' => 'a',
2936
- '𝘣' => 'b',
2937
- '𝘤' => 'c',
2938
- '𝘥' => 'd',
2939
- '𝘦' => 'e',
2940
- '𝘧' => 'f',
2941
- '𝘨' => 'g',
2942
- '𝘩' => 'h',
2943
- '𝘪' => 'i',
2944
- '𝘫' => 'j',
2945
- '𝘬' => 'k',
2946
- '𝘭' => 'l',
2947
- '𝘮' => 'm',
2948
- '𝘯' => 'n',
2949
- '𝘰' => 'o',
2950
- '𝘱' => 'p',
2951
- '𝘲' => 'q',
2952
- '𝘳' => 'r',
2953
- '𝘴' => 's',
2954
- '𝘵' => 't',
2955
- '𝘶' => 'u',
2956
- '𝘷' => 'v',
2957
- '𝘸' => 'w',
2958
- '𝘹' => 'x',
2959
- '𝘺' => 'y',
2960
- '𝘻' => 'z',
2961
- '𝘼' => 'A',
2962
- '𝘽' => 'B',
2963
- '𝘾' => 'C',
2964
- '𝘿' => 'D',
2965
- '𝙀' => 'E',
2966
- '𝙁' => 'F',
2967
- '𝙂' => 'G',
2968
- '𝙃' => 'H',
2969
- '𝙄' => 'I',
2970
- '𝙅' => 'J',
2971
- '𝙆' => 'K',
2972
- '𝙇' => 'L',
2973
- '𝙈' => 'M',
2974
- '𝙉' => 'N',
2975
- '𝙊' => 'O',
2976
- '𝙋' => 'P',
2977
- '𝙌' => 'Q',
2978
- '𝙍' => 'R',
2979
- '𝙎' => 'S',
2980
- '𝙏' => 'T',
2981
- '𝙐' => 'U',
2982
- '𝙑' => 'V',
2983
- '𝙒' => 'W',
2984
- '𝙓' => 'X',
2985
- '𝙔' => 'Y',
2986
- '𝙕' => 'Z',
2987
- '𝙖' => 'a',
2988
- '𝙗' => 'b',
2989
- '𝙘' => 'c',
2990
- '𝙙' => 'd',
2991
- '𝙚' => 'e',
2992
- '𝙛' => 'f',
2993
- '𝙜' => 'g',
2994
- '𝙝' => 'h',
2995
- '𝙞' => 'i',
2996
- '𝙟' => 'j',
2997
- '𝙠' => 'k',
2998
- '𝙡' => 'l',
2999
- '𝙢' => 'm',
3000
- '𝙣' => 'n',
3001
- '𝙤' => 'o',
3002
- '𝙥' => 'p',
3003
- '𝙦' => 'q',
3004
- '𝙧' => 'r',
3005
- '𝙨' => 's',
3006
- '𝙩' => 't',
3007
- '𝙪' => 'u',
3008
- '𝙫' => 'v',
3009
- '𝙬' => 'w',
3010
- '𝙭' => 'x',
3011
- '𝙮' => 'y',
3012
- '𝙯' => 'z',
3013
- '𝙰' => 'A',
3014
- '𝙱' => 'B',
3015
- '𝙲' => 'C',
3016
- '𝙳' => 'D',
3017
- '𝙴' => 'E',
3018
- '𝙵' => 'F',
3019
- '𝙶' => 'G',
3020
- '𝙷' => 'H',
3021
- '𝙸' => 'I',
3022
- '𝙹' => 'J',
3023
- '𝙺' => 'K',
3024
- '𝙻' => 'L',
3025
- '𝙼' => 'M',
3026
- '𝙽' => 'N',
3027
- '𝙾' => 'O',
3028
- '𝙿' => 'P',
3029
- '𝚀' => 'Q',
3030
- '𝚁' => 'R',
3031
- '𝚂' => 'S',
3032
- '𝚃' => 'T',
3033
- '𝚄' => 'U',
3034
- '𝚅' => 'V',
3035
- '𝚆' => 'W',
3036
- '𝚇' => 'X',
3037
- '𝚈' => 'Y',
3038
- '𝚉' => 'Z',
3039
- '𝚊' => 'a',
3040
- '𝚋' => 'b',
3041
- '𝚌' => 'c',
3042
- '𝚍' => 'd',
3043
- '𝚎' => 'e',
3044
- '𝚏' => 'f',
3045
- '𝚐' => 'g',
3046
- '𝚑' => 'h',
3047
- '𝚒' => 'i',
3048
- '𝚓' => 'j',
3049
- '𝚔' => 'k',
3050
- '𝚕' => 'l',
3051
- '𝚖' => 'm',
3052
- '𝚗' => 'n',
3053
- '𝚘' => 'o',
3054
- '𝚙' => 'p',
3055
- '𝚚' => 'q',
3056
- '𝚛' => 'r',
3057
- '𝚜' => 's',
3058
- '𝚝' => 't',
3059
- '𝚞' => 'u',
3060
- '𝚟' => 'v',
3061
- '𝚠' => 'w',
3062
- '𝚡' => 'x',
3063
- '𝚢' => 'y',
3064
- '𝚣' => 'z',
3065
- '𝚤' => 'ı',
3066
- '𝚥' => 'ȷ',
3067
- '𝚨' => 'Α',
3068
- '𝚩' => 'Β',
3069
- '𝚪' => 'Γ',
3070
- '𝚫' => 'Δ',
3071
- '𝚬' => 'Ε',
3072
- '𝚭' => 'Ζ',
3073
- '𝚮' => 'Η',
3074
- '𝚯' => 'Θ',
3075
- '𝚰' => 'Ι',
3076
- '𝚱' => 'Κ',
3077
- '𝚲' => 'Λ',
3078
- '𝚳' => 'Μ',
3079
- '𝚴' => 'Ν',
3080
- '𝚵' => 'Ξ',
3081
- '𝚶' => 'Ο',
3082
- '𝚷' => 'Π',
3083
- '𝚸' => 'Ρ',
3084
- '𝚹' => 'Θ',
3085
- '𝚺' => 'Σ',
3086
- '𝚻' => 'Τ',
3087
- '𝚼' => 'Υ',
3088
- '𝚽' => 'Φ',
3089
- '𝚾' => 'Χ',
3090
- '𝚿' => 'Ψ',
3091
- '𝛀' => 'Ω',
3092
- '𝛁' => '∇',
3093
- '𝛂' => 'α',
3094
- '𝛃' => 'β',
3095
- '𝛄' => 'γ',
3096
- '𝛅' => 'δ',
3097
- '𝛆' => 'ε',
3098
- '𝛇' => 'ζ',
3099
- '𝛈' => 'η',
3100
- '𝛉' => 'θ',
3101
- '𝛊' => 'ι',
3102
- '𝛋' => 'κ',
3103
- '𝛌' => 'λ',
3104
- '𝛍' => 'μ',
3105
- '𝛎' => 'ν',
3106
- '𝛏' => 'ξ',
3107
- '𝛐' => 'ο',
3108
- '𝛑' => 'π',
3109
- '𝛒' => 'ρ',
3110
- '𝛓' => 'ς',
3111
- '𝛔' => 'σ',
3112
- '𝛕' => 'τ',
3113
- '𝛖' => 'υ',
3114
- '𝛗' => 'φ',
3115
- '𝛘' => 'χ',
3116
- '𝛙' => 'ψ',
3117
- '𝛚' => 'ω',
3118
- '𝛛' => '∂',
3119
- '𝛜' => 'ε',
3120
- '𝛝' => 'θ',
3121
- '𝛞' => 'κ',
3122
- '𝛟' => 'φ',
3123
- '𝛠' => 'ρ',
3124
- '𝛡' => 'π',
3125
- '𝛢' => 'Α',
3126
- '𝛣' => 'Β',
3127
- '𝛤' => 'Γ',
3128
- '𝛥' => 'Δ',
3129
- '𝛦' => 'Ε',
3130
- '𝛧' => 'Ζ',
3131
- '𝛨' => 'Η',
3132
- '𝛩' => 'Θ',
3133
- '𝛪' => 'Ι',
3134
- '𝛫' => 'Κ',
3135
- '𝛬' => 'Λ',
3136
- '𝛭' => 'Μ',
3137
- '𝛮' => 'Ν',
3138
- '𝛯' => 'Ξ',
3139
- '𝛰' => 'Ο',
3140
- '𝛱' => 'Π',
3141
- '𝛲' => 'Ρ',
3142
- '𝛳' => 'Θ',
3143
- '𝛴' => 'Σ',
3144
- '𝛵' => 'Τ',
3145
- '𝛶' => 'Υ',
3146
- '𝛷' => 'Φ',
3147
- '𝛸' => 'Χ',
3148
- '𝛹' => 'Ψ',
3149
- '𝛺' => 'Ω',
3150
- '𝛻' => '∇',
3151
- '𝛼' => 'α',
3152
- '𝛽' => 'β',
3153
- '𝛾' => 'γ',
3154
- '𝛿' => 'δ',
3155
- '𝜀' => 'ε',
3156
- '𝜁' => 'ζ',
3157
- '𝜂' => 'η',
3158
- '𝜃' => 'θ',
3159
- '𝜄' => 'ι',
3160
- '𝜅' => 'κ',
3161
- '𝜆' => 'λ',
3162
- '𝜇' => 'μ',
3163
- '𝜈' => 'ν',
3164
- '𝜉' => 'ξ',
3165
- '𝜊' => 'ο',
3166
- '𝜋' => 'π',
3167
- '𝜌' => 'ρ',
3168
- '𝜍' => 'ς',
3169
- '𝜎' => 'σ',
3170
- '𝜏' => 'τ',
3171
- '𝜐' => 'υ',
3172
- '𝜑' => 'φ',
3173
- '𝜒' => 'χ',
3174
- '𝜓' => 'ψ',
3175
- '𝜔' => 'ω',
3176
- '𝜕' => '∂',
3177
- '𝜖' => 'ε',
3178
- '𝜗' => 'θ',
3179
- '𝜘' => 'κ',
3180
- '𝜙' => 'φ',
3181
- '𝜚' => 'ρ',
3182
- '𝜛' => 'π',
3183
- '𝜜' => 'Α',
3184
- '𝜝' => 'Β',
3185
- '𝜞' => 'Γ',
3186
- '𝜟' => 'Δ',
3187
- '𝜠' => 'Ε',
3188
- '𝜡' => 'Ζ',
3189
- '𝜢' => 'Η',
3190
- '𝜣' => 'Θ',
3191
- '𝜤' => 'Ι',
3192
- '𝜥' => 'Κ',
3193
- '𝜦' => 'Λ',
3194
- '𝜧' => 'Μ',
3195
- '𝜨' => 'Ν',
3196
- '𝜩' => 'Ξ',
3197
- '𝜪' => 'Ο',
3198
- '𝜫' => 'Π',
3199
- '𝜬' => 'Ρ',
3200
- '𝜭' => 'Θ',
3201
- '𝜮' => 'Σ',
3202
- '𝜯' => 'Τ',
3203
- '𝜰' => 'Υ',
3204
- '𝜱' => 'Φ',
3205
- '𝜲' => 'Χ',
3206
- '𝜳' => 'Ψ',
3207
- '𝜴' => 'Ω',
3208
- '𝜵' => '∇',
3209
- '𝜶' => 'α',
3210
- '𝜷' => 'β',
3211
- '𝜸' => 'γ',
3212
- '𝜹' => 'δ',
3213
- '𝜺' => 'ε',
3214
- '𝜻' => 'ζ',
3215
- '𝜼' => 'η',
3216
- '𝜽' => 'θ',
3217
- '𝜾' => 'ι',
3218
- '𝜿' => 'κ',
3219
- '𝝀' => 'λ',
3220
- '𝝁' => 'μ',
3221
- '𝝂' => 'ν',
3222
- '𝝃' => 'ξ',
3223
- '𝝄' => 'ο',
3224
- '𝝅' => 'π',
3225
- '𝝆' => 'ρ',
3226
- '𝝇' => 'ς',
3227
- '𝝈' => 'σ',
3228
- '𝝉' => 'τ',
3229
- '𝝊' => 'υ',
3230
- '𝝋' => 'φ',
3231
- '𝝌' => 'χ',
3232
- '𝝍' => 'ψ',
3233
- '𝝎' => 'ω',
3234
- '𝝏' => '∂',
3235
- '𝝐' => 'ε',
3236
- '𝝑' => 'θ',
3237
- '𝝒' => 'κ',
3238
- '𝝓' => 'φ',
3239
- '𝝔' => 'ρ',
3240
- '𝝕' => 'π',
3241
- '𝝖' => 'Α',
3242
- '𝝗' => 'Β',
3243
- '𝝘' => 'Γ',
3244
- '𝝙' => 'Δ',
3245
- '𝝚' => 'Ε',
3246
- '𝝛' => 'Ζ',
3247
- '𝝜' => 'Η',
3248
- '𝝝' => 'Θ',
3249
- '𝝞' => 'Ι',
3250
- '𝝟' => 'Κ',
3251
- '𝝠' => 'Λ',
3252
- '𝝡' => 'Μ',
3253
- '𝝢' => 'Ν',
3254
- '𝝣' => 'Ξ',
3255
- '𝝤' => 'Ο',
3256
- '𝝥' => 'Π',
3257
- '𝝦' => 'Ρ',
3258
- '𝝧' => 'Θ',
3259
- '𝝨' => 'Σ',
3260
- '𝝩' => 'Τ',
3261
- '𝝪' => 'Υ',
3262
- '𝝫' => 'Φ',
3263
- '𝝬' => 'Χ',
3264
- '𝝭' => 'Ψ',
3265
- '𝝮' => 'Ω',
3266
- '𝝯' => '∇',
3267
- '𝝰' => 'α',
3268
- '𝝱' => 'β',
3269
- '𝝲' => 'γ',
3270
- '𝝳' => 'δ',
3271
- '𝝴' => 'ε',
3272
- '𝝵' => 'ζ',
3273
- '𝝶' => 'η',
3274
- '𝝷' => 'θ',
3275
- '𝝸' => 'ι',
3276
- '𝝹' => 'κ',
3277
- '𝝺' => 'λ',
3278
- '𝝻' => 'μ',
3279
- '𝝼' => 'ν',
3280
- '𝝽' => 'ξ',
3281
- '𝝾' => 'ο',
3282
- '𝝿' => 'π',
3283
- '𝞀' => 'ρ',
3284
- '𝞁' => 'ς',
3285
- '𝞂' => 'σ',
3286
- '𝞃' => 'τ',
3287
- '𝞄' => 'υ',
3288
- '𝞅' => 'φ',
3289
- '𝞆' => 'χ',
3290
- '𝞇' => 'ψ',
3291
- '𝞈' => 'ω',
3292
- '𝞉' => '∂',
3293
- '𝞊' => 'ε',
3294
- '𝞋' => 'θ',
3295
- '𝞌' => 'κ',
3296
- '𝞍' => 'φ',
3297
- '𝞎' => 'ρ',
3298
- '𝞏' => 'π',
3299
- '𝞐' => 'Α',
3300
- '𝞑' => 'Β',
3301
- '𝞒' => 'Γ',
3302
- '𝞓' => 'Δ',
3303
- '𝞔' => 'Ε',
3304
- '𝞕' => 'Ζ',
3305
- '𝞖' => 'Η',
3306
- '𝞗' => 'Θ',
3307
- '𝞘' => 'Ι',
3308
- '𝞙' => 'Κ',
3309
- '𝞚' => 'Λ',
3310
- '𝞛' => 'Μ',
3311
- '𝞜' => 'Ν',
3312
- '𝞝' => 'Ξ',
3313
- '𝞞' => 'Ο',
3314
- '𝞟' => 'Π',
3315
- '𝞠' => 'Ρ',
3316
- '𝞡' => 'Θ',
3317
- '𝞢' => 'Σ',
3318
- '𝞣' => 'Τ',
3319
- '𝞤' => 'Υ',
3320
- '𝞥' => 'Φ',
3321
- '𝞦' => 'Χ',
3322
- '𝞧' => 'Ψ',
3323
- '𝞨' => 'Ω',
3324
- '𝞩' => '∇',
3325
- '𝞪' => 'α',
3326
- '𝞫' => 'β',
3327
- '𝞬' => 'γ',
3328
- '𝞭' => 'δ',
3329
- '𝞮' => 'ε',
3330
- '𝞯' => 'ζ',
3331
- '𝞰' => 'η',
3332
- '𝞱' => 'θ',
3333
- '𝞲' => 'ι',
3334
- '𝞳' => 'κ',
3335
- '𝞴' => 'λ',
3336
- '𝞵' => 'μ',
3337
- '𝞶' => 'ν',
3338
- '𝞷' => 'ξ',
3339
- '𝞸' => 'ο',
3340
- '𝞹' => 'π',
3341
- '𝞺' => 'ρ',
3342
- '𝞻' => 'ς',
3343
- '𝞼' => 'σ',
3344
- '𝞽' => 'τ',
3345
- '𝞾' => 'υ',
3346
- '𝞿' => 'φ',
3347
- '𝟀' => 'χ',
3348
- '𝟁' => 'ψ',
3349
- '𝟂' => 'ω',
3350
- '𝟃' => '∂',
3351
- '𝟄' => 'ε',
3352
- '𝟅' => 'θ',
3353
- '𝟆' => '��',
3354
- '𝟇' => 'φ',
3355
- '𝟈' => 'ρ',
3356
- '𝟉' => 'π',
3357
- '𝟊' => 'Ϝ',
3358
- '𝟋' => 'ϝ',
3359
- '𝟎' => '0',
3360
- '𝟏' => '1',
3361
- '𝟐' => '2',
3362
- '𝟑' => '3',
3363
- '𝟒' => '4',
3364
- '𝟓' => '5',
3365
- '𝟔' => '6',
3366
- '𝟕' => '7',
3367
- '𝟖' => '8',
3368
- '𝟗' => '9',
3369
- '𝟘' => '0',
3370
- '𝟙' => '1',
3371
- '𝟚' => '2',
3372
- '𝟛' => '3',
3373
- '𝟜' => '4',
3374
- '𝟝' => '5',
3375
- '𝟞' => '6',
3376
- '𝟟' => '7',
3377
- '𝟠' => '8',
3378
- '𝟡' => '9',
3379
- '𝟢' => '0',
3380
- '𝟣' => '1',
3381
- '𝟤' => '2',
3382
- '𝟥' => '3',
3383
- '𝟦' => '4',
3384
- '𝟧' => '5',
3385
- '𝟨' => '6',
3386
- '𝟩' => '7',
3387
- '𝟪' => '8',
3388
- '𝟫' => '9',
3389
- '𝟬' => '0',
3390
- '𝟭' => '1',
3391
- '𝟮' => '2',
3392
- '𝟯' => '3',
3393
- '𝟰' => '4',
3394
- '𝟱' => '5',
3395
- '𝟲' => '6',
3396
- '𝟳' => '7',
3397
- '𝟴' => '8',
3398
- '𝟵' => '9',
3399
- '𝟶' => '0',
3400
- '𝟷' => '1',
3401
- '𝟸' => '2',
3402
- '𝟹' => '3',
3403
- '𝟺' => '4',
3404
- '𝟻' => '5',
3405
- '𝟼' => '6',
3406
- '𝟽' => '7',
3407
- '𝟾' => '8',
3408
- '𝟿' => '9',
3409
- '𞸀' => 'ا',
3410
- '𞸁' => 'ب',
3411
- '𞸂' => 'ج',
3412
- '𞸃' => 'د',
3413
- '𞸅' => 'و',
3414
- '𞸆' => 'ز',
3415
- '𞸇' => 'ح',
3416
- '𞸈' => 'ط',
3417
- '𞸉' => 'ي',
3418
- '𞸊' => 'ك',
3419
- '𞸋' => 'ل',
3420
- '𞸌' => 'م',
3421
- '𞸍' => 'ن',
3422
- '𞸎' => 'س',
3423
- '𞸏' => 'ع',
3424
- '𞸐' => 'ف',
3425
- '𞸑' => 'ص',
3426
- '𞸒' => 'ق',
3427
- '𞸓' => 'ر',
3428
- '𞸔' => 'ش',
3429
- '𞸕' => 'ت',
3430
- '𞸖' => 'ث',
3431
- '𞸗' => 'خ',
3432
- '𞸘' => 'ذ',
3433
- '𞸙' => 'ض',
3434
- '𞸚' => 'ظ',
3435
- '𞸛' => 'غ',
3436
- '𞸜' => 'ٮ',
3437
- '𞸝' => 'ں',
3438
- '𞸞' => 'ڡ',
3439
- '𞸟' => 'ٯ',
3440
- '𞸡' => 'ب',
3441
- '𞸢' => 'ج',
3442
- '𞸤' => 'ه',
3443
- '𞸧' => 'ح',
3444
- '𞸩' => 'ي',
3445
- '𞸪' => 'ك',
3446
- '𞸫' => 'ل',
3447
- '𞸬' => 'م',
3448
- '𞸭' => 'ن',
3449
- '𞸮' => 'س',
3450
- '𞸯' => 'ع',
3451
- '𞸰' => 'ف',
3452
- '𞸱' => 'ص',
3453
- '𞸲' => 'ق',
3454
- '𞸴' => 'ش',
3455
- '𞸵' => 'ت',
3456
- '𞸶' => 'ث',
3457
- '𞸷' => 'خ',
3458
- '𞸹' => 'ض',
3459
- '𞸻' => 'غ',
3460
- '𞹂' => 'ج',
3461
- '𞹇' => 'ح',
3462
- '𞹉' => 'ي',
3463
- '𞹋' => 'ل',
3464
- '𞹍' => 'ن',
3465
- '𞹎' => 'س',
3466
- '𞹏' => 'ع',
3467
- '𞹑' => 'ص',
3468
- '𞹒' => 'ق',
3469
- '𞹔' => 'ش',
3470
- '𞹗' => 'خ',
3471
- '𞹙' => 'ض',
3472
- '𞹛' => 'غ',
3473
- '𞹝' => 'ں',
3474
- '𞹟' => 'ٯ',
3475
- '𞹡' => 'ب',
3476
- '𞹢' => 'ج',
3477
- '𞹤' => 'ه',
3478
- '𞹧' => 'ح',
3479
- '𞹨' => 'ط',
3480
- '𞹩' => 'ي',
3481
- '𞹪' => 'ك',
3482
- '𞹬' => 'م',
3483
- '𞹭' => 'ن',
3484
- '𞹮' => 'س',
3485
- '𞹯' => 'ع',
3486
- '𞹰' => 'ف',
3487
- '𞹱' => 'ص',
3488
- '𞹲' => 'ق',
3489
- '𞹴' => 'ش',
3490
- '𞹵' => 'ت',
3491
- '𞹶' => 'ث',
3492
- '𞹷' => 'خ',
3493
- '𞹹' => 'ض',
3494
- '𞹺' => 'ظ',
3495
- '𞹻' => 'غ',
3496
- '𞹼' => 'ٮ',
3497
- '𞹾' => 'ڡ',
3498
- '𞺀' => 'ا',
3499
- '𞺁' => 'ب',
3500
- '𞺂' => 'ج',
3501
- '𞺃' => 'د',
3502
- '𞺄' => 'ه',
3503
- '𞺅' => 'و',
3504
- '𞺆' => 'ز',
3505
- '𞺇' => 'ح',
3506
- '𞺈' => 'ط',
3507
- '𞺉' => 'ي',
3508
- '𞺋' => 'ل',
3509
- '𞺌' => 'م',
3510
- '𞺍' => 'ن',
3511
- '𞺎' => 'س',
3512
- '𞺏' => 'ع',
3513
- '𞺐' => 'ف',
3514
- '𞺑' => 'ص',
3515
- '𞺒' => 'ق',
3516
- '𞺓' => 'ر',
3517
- '𞺔' => 'ش',
3518
- '𞺕' => 'ت',
3519
- '𞺖' => 'ث',
3520
- '𞺗' => 'خ',
3521
- '𞺘' => 'ذ',
3522
- '𞺙' => 'ض',
3523
- '𞺚' => 'ظ',
3524
- '𞺛' => 'غ',
3525
- '𞺡' => 'ب',
3526
- '𞺢' => 'ج',
3527
- '𞺣' => 'د',
3528
- '𞺥' => 'و',
3529
- '𞺦' => 'ز',
3530
- '𞺧' => 'ح',
3531
- '𞺨' => 'ط',
3532
- '𞺩' => 'ي',
3533
- '𞺫' => 'ل',
3534
- '𞺬' => 'م',
3535
- '𞺭' => 'ن',
3536
- '𞺮' => 'س',
3537
- '𞺯' => 'ع',
3538
- '𞺰' => 'ف',
3539
- '𞺱' => 'ص',
3540
- '𞺲' => 'ق',
3541
- '𞺳' => 'ر',
3542
- '𞺴' => 'ش',
3543
- '𞺵' => 'ت',
3544
- '𞺶' => 'ث',
3545
- '𞺷' => 'خ',
3546
- '𞺸' => 'ذ',
3547
- '𞺹' => 'ض',
3548
- '𞺺' => 'ظ',
3549
- '𞺻' => 'غ',
3550
- '🄀' => '0.',
3551
- '🄁' => '0,',
3552
- '🄂' => '1,',
3553
- '🄃' => '2,',
3554
- '🄄' => '3,',
3555
- '🄅' => '4,',
3556
- '🄆' => '5,',
3557
- '🄇' => '6,',
3558
- '🄈' => '7,',
3559
- '🄉' => '8,',
3560
- '🄊' => '9,',
3561
- '🄐' => '(A)',
3562
- '🄑' => '(B)',
3563
- '🄒' => '(C)',
3564
- '🄓' => '(D)',
3565
- '🄔' => '(E)',
3566
- '🄕' => '(F)',
3567
- '🄖' => '(G)',
3568
- '🄗' => '(H)',
3569
- '🄘' => '(I)',
3570
- '🄙' => '(J)',
3571
- '🄚' => '(K)',
3572
- '🄛' => '(L)',
3573
- '🄜' => '(M)',
3574
- '🄝' => '(N)',
3575
- '🄞' => '(O)',
3576
- '🄟' => '(P)',
3577
- '🄠' => '(Q)',
3578
- '🄡' => '(R)',
3579
- '🄢' => '(S)',
3580
- '🄣' => '(T)',
3581
- '🄤' => '(U)',
3582
- '🄥' => '(V)',
3583
- '🄦' => '(W)',
3584
- '🄧' => '(X)',
3585
- '🄨' => '(Y)',
3586
- '🄩' => '(Z)',
3587
- '🄪' => '〔S〕',
3588
- '🄫' => 'C',
3589
- '🄬' => 'R',
3590
- '🄭' => 'CD',
3591
- '🄮' => 'WZ',
3592
- '🄰' => 'A',
3593
- '🄱' => 'B',
3594
- '🄲' => 'C',
3595
- '🄳' => 'D',
3596
- '🄴' => 'E',
3597
- '🄵' => 'F',
3598
- '🄶' => 'G',
3599
- '🄷' => 'H',
3600
- '🄸' => 'I',
3601
- '🄹' => 'J',
3602
- '🄺' => 'K',
3603
- '🄻' => 'L',
3604
- '🄼' => 'M',
3605
- '🄽' => 'N',
3606
- '🄾' => 'O',
3607
- '🄿' => 'P',
3608
- '🅀' => 'Q',
3609
- '🅁' => 'R',
3610
- '🅂' => 'S',
3611
- '🅃' => 'T',
3612
- '🅄' => 'U',
3613
- '🅅' => 'V',
3614
- '🅆' => 'W',
3615
- '🅇' => 'X',
3616
- '🅈' => 'Y',
3617
- '🅉' => 'Z',
3618
- '🅊' => 'HV',
3619
- '🅋' => 'MV',
3620
- '🅌' => 'SD',
3621
- '🅍' => 'SS',
3622
- '🅎' => 'PPV',
3623
- '🅏' => 'WC',
3624
- '🅪' => 'MC',
3625
- '🅫' => 'MD',
3626
- '🅬' => 'MR',
3627
- '🆐' => 'DJ',
3628
- '🈀' => 'ほか',
3629
- '🈁' => 'ココ',
3630
- '🈂' => 'サ',
3631
- '🈐' => '手',
3632
- '🈑' => '字',
3633
- '🈒' => '双',
3634
- '🈓' => 'デ',
3635
- '🈔' => '二',
3636
- '🈕' => '多',
3637
- '🈖' => '解',
3638
- '🈗' => '天',
3639
- '🈘' => '交',
3640
- '🈙' => '映',
3641
- '🈚' => '無',
3642
- '🈛' => '料',
3643
- '🈜' => '前',
3644
- '🈝' => '後',
3645
- '🈞' => '再',
3646
- '🈟' => '新',
3647
- '🈠' => '初',
3648
- '🈡' => '終',
3649
- '🈢' => '生',
3650
- '🈣' => '販',
3651
- '🈤' => '声',
3652
- '🈥' => '吹',
3653
- '🈦' => '演',
3654
- '🈧' => '投',
3655
- '🈨' => '捕',
3656
- '🈩' => '一',
3657
- '🈪' => '三',
3658
- '🈫' => '遊',
3659
- '🈬' => '左',
3660
- '🈭' => '中',
3661
- '🈮' => '右',
3662
- '🈯' => '指',
3663
- '🈰' => '走',
3664
- '🈱' => '打',
3665
- '🈲' => '禁',
3666
- '🈳' => '空',
3667
- '🈴' => '合',
3668
- '🈵' => '満',
3669
- '🈶' => '有',
3670
- '🈷' => '月',
3671
- '🈸' => '申',
3672
- '🈹' => '割',
3673
- '🈺' => '営',
3674
- '🈻' => '配',
3675
- '🉀' => '〔本〕',
3676
- '🉁' => '〔三〕',
3677
- '🉂' => '〔二〕',
3678
- '🉃' => '〔安〕',
3679
- '🉄' => '〔点〕',
3680
- '🉅' => '〔打〕',
3681
- '🉆' => '〔盗〕',
3682
- '🉇' => '〔勝〕',
3683
- '🉈' => '〔敗〕',
3684
- '🉐' => '得',
3685
- '🉑' => '可',
3686
- '🯰' => '0',
3687
- '🯱' => '1',
3688
- '🯲' => '2',
3689
- '🯳' => '3',
3690
- '🯴' => '4',
3691
- '🯵' => '5',
3692
- '🯶' => '6',
3693
- '🯷' => '7',
3694
- '🯸' => '8',
3695
- '🯹' => '9',
3696
- ];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Polyfills/bootstrap.php DELETED
@@ -1,75 +0,0 @@
1
- <?php
2
- declare( strict_types=1 );
3
-
4
- use Automattic\WooCommerce\GoogleListingsAndAds\Polyfills\MBString;
5
-
6
- if ( ! function_exists( 'mb_convert_encoding' ) ) {
7
- /**
8
- * Convert encoding.
9
- *
10
- * @param array|string $string
11
- * @param string $to_encoding
12
- * @param array|string|null $from_encoding
13
- */
14
- function mb_convert_encoding( $string, $to_encoding, $from_encoding = null ) {
15
- return MBString::mb_convert_encoding( $string, $to_encoding, $from_encoding );
16
- }
17
- }
18
-
19
- if ( ! function_exists( 'mb_check_encoding' ) ) {
20
- /**
21
- * Check if strings are valid for the specified encoding.
22
- *
23
- * @param array|string|null $value
24
- * @param string|null $encoding
25
- */
26
- function mb_check_encoding( $value = null, $encoding = null ) {
27
- return MBString::mb_check_encoding( $value, $encoding );
28
- }
29
- }
30
-
31
- if ( ! function_exists( 'mb_strlen' ) ) {
32
- /**
33
- * Get string length.
34
- *
35
- * @param string $string
36
- * @param string|null $encoding
37
- * @return int
38
- */
39
- function mb_strlen( $string, $encoding = null ): int {
40
- return MBString::mb_strlen( $string, $encoding );
41
- }
42
- }
43
-
44
- if ( ! function_exists( 'mb_substr' ) ) {
45
- /**
46
- * Get part of string.
47
- *
48
- * @param string $string
49
- * @param int $start
50
- * @param int|null $length
51
- * @param string|null $encoding
52
- *
53
- * @return string
54
- *
55
- * @since 1.4.1
56
- */
57
- function mb_substr( $string, $start, $length = null, $encoding = null ) {
58
- return MBString::mb_substr( $string, $start, $length, $encoding );
59
- }
60
- }
61
-
62
- if ( ! function_exists( 'mb_internal_encoding' ) ) {
63
- /**
64
- * Get internal encoding.
65
- *
66
- * @param string $encoding
67
- *
68
- * @return string|bool
69
- *
70
- * @since 2.0.1
71
- */
72
- function mb_internal_encoding( $encoding = null ) {
73
- return MBString::mb_internal_encoding( $encoding );
74
- }
75
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/Product/WCProductAdapter.php CHANGED
@@ -123,7 +123,6 @@ class WCProductAdapter extends GoogleProduct implements Validatable {
123
  ->map_wc_product_shipping()
124
  ->map_wc_prices();
125
 
126
- $this->setIdentifierExists( ! empty( $this->getGtin() ) || ! empty( $this->getMpn() ) );
127
  }
128
 
129
  /**
123
  ->map_wc_product_shipping()
124
  ->map_wc_prices();
125
 
 
126
  }
127
 
128
  /**
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInit752c9af3cedea233673242b1f1d4a2b9::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInitd72b76427a98fb582e3e528c9b831440::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp752c9af3cedea233673242b1f1d4a2b9;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd72b76427a98fb582e3e528c9b831440;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/InstalledVersions.php CHANGED
@@ -28,7 +28,7 @@ class InstalledVersions
28
  {
29
  /**
30
  * @var mixed[]|null
31
- * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
32
  */
33
  private static $installed;
34
 
@@ -39,7 +39,7 @@ class InstalledVersions
39
 
40
  /**
41
  * @var array[]
42
- * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
43
  */
44
  private static $installedByVendor = array();
45
 
@@ -243,7 +243,7 @@ class InstalledVersions
243
 
244
  /**
245
  * @return array
246
- * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
247
  */
248
  public static function getRootPackage()
249
  {
@@ -257,7 +257,7 @@ class InstalledVersions
257
  *
258
  * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
259
  * @return array[]
260
- * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
261
  */
262
  public static function getRawData()
263
  {
@@ -280,7 +280,7 @@ class InstalledVersions
280
  * Returns the raw data of all installed.php which are currently loaded for custom implementations
281
  *
282
  * @return array[]
283
- * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
284
  */
285
  public static function getAllRawData()
286
  {
@@ -303,7 +303,7 @@ class InstalledVersions
303
  * @param array[] $data A vendor/composer/installed.php data set
304
  * @return void
305
  *
306
- * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
307
  */
308
  public static function reload($data)
309
  {
@@ -313,7 +313,7 @@ class InstalledVersions
313
 
314
  /**
315
  * @return array[]
316
- * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
317
  */
318
  private static function getInstalled()
319
  {
28
  {
29
  /**
30
  * @var mixed[]|null
31
+ * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
32
  */
33
  private static $installed;
34
 
39
 
40
  /**
41
  * @var array[]
42
+ * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
43
  */
44
  private static $installedByVendor = array();
45
 
243
 
244
  /**
245
  * @return array
246
+ * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
247
  */
248
  public static function getRootPackage()
249
  {
257
  *
258
  * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
259
  * @return array[]
260
+ * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
261
  */
262
  public static function getRawData()
263
  {
280
  * Returns the raw data of all installed.php which are currently loaded for custom implementations
281
  *
282
  * @return array[]
283
+ * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
284
  */
285
  public static function getAllRawData()
286
  {
303
  * @param array[] $data A vendor/composer/installed.php data set
304
  * @return void
305
  *
306
+ * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
307
  */
308
  public static function reload($data)
309
  {
313
 
314
  /**
315
  * @return array[]
316
+ * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
317
  */
318
  private static function getInstalled()
319
  {
vendor/composer/autoload_classmap.php CHANGED
@@ -76,6 +76,7 @@ return array(
76
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsCampaignCriterionQuery' => $baseDir . '/src/API/Google/Query/AdsCampaignCriterionQuery.php',
77
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsCampaignQuery' => $baseDir . '/src/API/Google/Query/AdsCampaignQuery.php',
78
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsCampaignReportQuery' => $baseDir . '/src/API/Google/Query/AdsCampaignReportQuery.php',
 
79
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsProductReportQuery' => $baseDir . '/src/API/Google/Query/AdsProductReportQuery.php',
80
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsQuery' => $baseDir . '/src/API/Google/Query/AdsQuery.php',
81
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsReportQuery' => $baseDir . '/src/API/Google/Query/AdsReportQuery.php',
@@ -384,7 +385,6 @@ return array(
384
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Options\\TransientsInterface' => $baseDir . '/src/Options/TransientsInterface.php',
385
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\PluginFactory' => $baseDir . '/src/PluginFactory.php',
386
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\PluginHelper' => $baseDir . '/src/PluginHelper.php',
387
- 'Automattic\\WooCommerce\\GoogleListingsAndAds\\Polyfills\\MBString' => $baseDir . '/src/Polyfills/MBString.php',
388
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Product\\Attributes\\AbstractAttribute' => $baseDir . '/src/Product/Attributes/AbstractAttribute.php',
389
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Product\\Attributes\\Adult' => $baseDir . '/src/Product/Attributes/Adult.php',
390
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Product\\Attributes\\AgeGroup' => $baseDir . '/src/Product/Attributes/AgeGroup.php',
@@ -438,6 +438,7 @@ return array(
438
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Tracking\\TracksInterface' => $baseDir . '/src/Tracking/TracksInterface.php',
439
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\GoogleAdsCleanupServices' => $baseDir . '/bin/GoogleAdsCleanupServices.php',
440
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\HooksDocsGenerator' => $baseDir . '/bin/HooksDocsGenerator.php',
 
441
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Utility\\AddressUtility' => $baseDir . '/src/Utility/AddressUtility.php',
442
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Utility\\DateTimeUtility' => $baseDir . '/src/Utility/DateTimeUtility.php',
443
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Utility\\ISOUtility' => $baseDir . '/src/Utility/ISOUtility.php',
@@ -570,6 +571,7 @@ return array(
570
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
571
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
572
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
 
573
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
574
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
575
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
@@ -624,225 +626,231 @@ return array(
624
  'Firebase\\JWT\\Key' => $vendorDir . '/firebase/php-jwt/src/Key.php',
625
  'Firebase\\JWT\\SignatureInvalidException' => $vendorDir . '/firebase/php-jwt/src/SignatureInvalidException.php',
626
  'GPBMetadata\\ApiCore\\Testing\\Mocks' => $vendorDir . '/google/gax/metadata/ApiCore/Testing/Mocks.php',
627
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\AdAsset' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/AdAsset.php',
628
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\AdTypeInfos' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/AdTypeInfos.php',
629
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\AssetPolicy' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/AssetPolicy.php',
630
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\AssetTypes' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/AssetTypes.php',
631
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Bidding' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Bidding.php',
632
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\ClickLocation' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/ClickLocation.php',
633
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Criteria' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Criteria.php',
634
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\CriterionCategoryAvailability' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/CriterionCategoryAvailability.php',
635
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\CustomParameter' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/CustomParameter.php',
636
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\CustomizerValue' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/CustomizerValue.php',
637
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Dates' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Dates.php',
638
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\ExplorerAutoOptimizerSetting' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/ExplorerAutoOptimizerSetting.php',
639
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Extensions' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Extensions.php',
640
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\FeedCommon' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/FeedCommon.php',
641
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\FeedItemSetFilterTypeInfos' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/FeedItemSetFilterTypeInfos.php',
642
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\FinalAppUrl' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/FinalAppUrl.php',
643
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\FrequencyCap' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/FrequencyCap.php',
644
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\KeywordPlanCommon' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/KeywordPlanCommon.php',
645
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\MatchingFunction' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/MatchingFunction.php',
646
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Metrics' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Metrics.php',
647
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\OfflineUserData' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/OfflineUserData.php',
648
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Policy' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Policy.php',
649
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\PolicySummary' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/PolicySummary.php',
650
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\RealTimeBiddingSetting' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/RealTimeBiddingSetting.php',
651
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Segments' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Segments.php',
652
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Simulation' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Simulation.php',
653
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\TagSnippet' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/TagSnippet.php',
654
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\TargetingSetting' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/TargetingSetting.php',
655
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\TextLabel' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/TextLabel.php',
656
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\UrlCollection' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/UrlCollection.php',
657
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\UserLists' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/UserLists.php',
658
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Common\\Value' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Common/Value.php',
659
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\AccessRole' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/AccessRole.php',
660
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\AdvertisingChannelType' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/AdvertisingChannelType.php',
661
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\AssetGroupStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/AssetGroupStatus.php',
662
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\BillingSetupStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/BillingSetupStatus.php',
663
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\CampaignCriterionStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/CampaignCriterionStatus.php',
664
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\CampaignStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/CampaignStatus.php',
665
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\ConversionActionCategory' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/ConversionActionCategory.php',
666
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\ConversionActionStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/ConversionActionStatus.php',
667
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\ConversionActionType' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/ConversionActionType.php',
668
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\ListingGroupFilterVertical' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/ListingGroupFilterVertical.php',
669
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\MerchantCenterLinkStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/MerchantCenterLinkStatus.php',
670
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\TrackingCodePageFormat' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/TrackingCodePageFormat.php',
671
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Enums\\TrackingCodeType' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Enums/TrackingCodeType.php',
672
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AccessInvitationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AccessInvitationError.php',
673
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AccountBudgetProposalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AccountBudgetProposalError.php',
674
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AccountLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AccountLinkError.php',
675
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdCustomizerError.php',
676
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdError.php',
677
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupAdError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupAdError.php',
678
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupBidModifierError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupBidModifierError.php',
679
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionCustomizerError.php',
680
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionError.php',
681
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupCustomizerError.php',
682
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupError.php',
683
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupFeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdGroupFeedError.php',
684
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdParameterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdParameterError.php',
685
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdSharingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdSharingError.php',
686
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AdxError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AdxError.php',
687
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetError.php',
688
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupAssetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetGroupAssetError.php',
689
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetGroupError.php',
690
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupListingGroupFilterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetGroupListingGroupFilterError.php',
691
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetLinkError.php',
692
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetAssetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetSetAssetError.php',
693
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetSetError.php',
694
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AssetSetLinkError.php',
695
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AuthenticationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AuthenticationError.php',
696
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\AuthorizationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/AuthorizationError.php',
697
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\BatchJobError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/BatchJobError.php',
698
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/BiddingError.php',
699
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingStrategyError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/BiddingStrategyError.php',
700
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\BillingSetupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/BillingSetupError.php',
701
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignBudgetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignBudgetError.php',
702
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignCriterionError.php',
703
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignCustomizerError.php',
704
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignDraftError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignDraftError.php',
705
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignError.php',
706
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignExperimentError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignExperimentError.php',
707
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignFeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignFeedError.php',
708
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignSharedSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CampaignSharedSetError.php',
709
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeEventError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ChangeEventError.php',
710
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeStatusError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ChangeStatusError.php',
711
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CollectionSizeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CollectionSizeError.php',
712
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ContextError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ContextError.php',
713
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionActionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ConversionActionError.php',
714
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionAdjustmentUploadError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ConversionAdjustmentUploadError.php',
715
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionCustomVariableError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ConversionCustomVariableError.php',
716
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionUploadError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ConversionUploadError.php',
717
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleError.php',
718
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleSetError.php',
719
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CountryCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CountryCodeError.php',
720
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CriterionError.php',
721
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CurrencyCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CurrencyCodeError.php',
722
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomAudienceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomAudienceError.php',
723
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomConversionGoalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomConversionGoalError.php',
724
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomInterestError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomInterestError.php',
725
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerClientLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomerClientLinkError.php',
726
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomerCustomizerError.php',
727
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomerError.php',
728
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerFeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomerFeedError.php',
729
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerManagerLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomerManagerLinkError.php',
730
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerUserAccessError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomerUserAccessError.php',
731
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\CustomizerAttributeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/CustomizerAttributeError.php',
732
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\DatabaseError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/DatabaseError.php',
733
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\DateError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/DateError.php',
734
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\DateRangeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/DateRangeError.php',
735
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\DistinctError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/DistinctError.php',
736
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\EnumError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/EnumError.php',
737
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\Errors' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/Errors.php',
738
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionFeedItemError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ExtensionFeedItemError.php',
739
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionSettingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ExtensionSettingError.php',
740
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedAttributeReferenceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedAttributeReferenceError.php',
741
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedError.php',
742
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedItemError.php',
743
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedItemSetError.php',
744
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedItemSetLinkError.php',
745
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemTargetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedItemTargetError.php',
746
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemValidationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedItemValidationError.php',
747
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FeedMappingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FeedMappingError.php',
748
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FieldError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FieldError.php',
749
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FieldMaskError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FieldMaskError.php',
750
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FunctionError.php',
751
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionParsingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/FunctionParsingError.php',
752
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\GeoTargetConstantSuggestionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/GeoTargetConstantSuggestionError.php',
753
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\HeaderError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/HeaderError.php',
754
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\IdError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/IdError.php',
755
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ImageError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ImageError.php',
756
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\InternalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/InternalError.php',
757
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\InvoiceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/InvoiceError.php',
758
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupError.php',
759
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupKeywordError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupKeywordError.php',
760
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignError.php',
761
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignKeywordError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignKeywordError.php',
762
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/KeywordPlanError.php',
763
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanIdeaError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/KeywordPlanIdeaError.php',
764
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\LabelError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/LabelError.php',
765
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\LanguageCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/LanguageCodeError.php',
766
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ListOperationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ListOperationError.php',
767
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ManagerLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ManagerLinkError.php',
768
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\MediaBundleError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/MediaBundleError.php',
769
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\MediaFileError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/MediaFileError.php',
770
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\MediaUploadError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/MediaUploadError.php',
771
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\MerchantCenterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/MerchantCenterError.php',
772
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\MultiplierError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/MultiplierError.php',
773
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\MutateError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/MutateError.php',
774
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\NewResourceCreationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/NewResourceCreationError.php',
775
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\NotAllowlistedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/NotAllowlistedError.php',
776
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\NotEmptyError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/NotEmptyError.php',
777
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\NullError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/NullError.php',
778
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\OfflineUserDataJobError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/OfflineUserDataJobError.php',
779
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\OperationAccessDeniedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/OperationAccessDeniedError.php',
780
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\OperatorError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/OperatorError.php',
781
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\PartialFailureError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/PartialFailureError.php',
782
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\PaymentsAccountError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/PaymentsAccountError.php',
783
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyFindingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/PolicyFindingError.php',
784
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyValidationParameterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/PolicyValidationParameterError.php',
785
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyViolationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/PolicyViolationError.php',
786
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\QueryError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/QueryError.php',
787
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/QuotaError.php',
788
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\RangeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/RangeError.php',
789
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ReachPlanError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ReachPlanError.php',
790
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\RecommendationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/RecommendationError.php',
791
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\RegionCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/RegionCodeError.php',
792
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\RequestError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/RequestError.php',
793
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceAccessDeniedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ResourceAccessDeniedError.php',
794
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceCountLimitExceededError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ResourceCountLimitExceededError.php',
795
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\SettingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/SettingError.php',
796
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\SharedCriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/SharedCriterionError.php',
797
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\SharedSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/SharedSetError.php',
798
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\SizeLimitError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/SizeLimitError.php',
799
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\StringFormatError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/StringFormatError.php',
800
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\StringLengthError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/StringLengthError.php',
801
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\ThirdPartyAppAnalyticsLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/ThirdPartyAppAnalyticsLinkError.php',
802
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\TimeZoneError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/TimeZoneError.php',
803
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\UrlFieldError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/UrlFieldError.php',
804
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\UserDataError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/UserDataError.php',
805
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\UserListError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/UserListError.php',
806
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Errors\\YoutubeVideoRegistrationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Errors/YoutubeVideoRegistrationError.php',
807
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AccountBudget' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AccountBudget.php',
808
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AccountLink' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AccountLink.php',
809
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\Ad' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/Ad.php',
810
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AdGroup' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AdGroup.php',
811
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AdGroupAd' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AdGroupAd.php',
812
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AdGroupAdLabel' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AdGroupAdLabel.php',
813
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AdGroupCriterion' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AdGroupCriterion.php',
814
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AssetGroup' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AssetGroup.php',
815
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\AssetGroupListingGroupFilter' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/AssetGroupListingGroupFilter.php',
816
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\BillingSetup' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/BillingSetup.php',
817
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\Campaign' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/Campaign.php',
818
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\CampaignBudget' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/CampaignBudget.php',
819
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\CampaignCriterion' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/CampaignCriterion.php',
820
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\ConversionAction' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/ConversionAction.php',
821
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\Customer' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/Customer.php',
822
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\CustomerUserAccess' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/CustomerUserAccess.php',
823
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\GeoTargetConstant' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/GeoTargetConstant.php',
824
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\MerchantCenterLink' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/MerchantCenterLink.php',
825
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Resources\\ShoppingPerformanceView' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Resources/ShoppingPerformanceView.php',
826
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AccountBudgetService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AccountBudgetService.php',
827
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AccountLinkService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AccountLinkService.php',
828
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupAdLabelService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AdGroupAdLabelService.php',
829
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupAdService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AdGroupAdService.php',
830
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupCriterionService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AdGroupCriterionService.php',
831
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AdGroupService.php',
832
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AdService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AdService.php',
833
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AssetGroupListingGroupFilterService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AssetGroupListingGroupFilterService.php',
834
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\AssetGroupService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/AssetGroupService.php',
835
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\BillingSetupService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/BillingSetupService.php',
836
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\CampaignBudgetService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/CampaignBudgetService.php',
837
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\CampaignCriterionService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/CampaignCriterionService.php',
838
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\CampaignService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/CampaignService.php',
839
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\ConversionActionService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/ConversionActionService.php',
840
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\CustomerService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/CustomerService.php',
841
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\CustomerUserAccessService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/CustomerUserAccessService.php',
842
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\GeoTargetConstantService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/GeoTargetConstantService.php',
843
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\GoogleAdsService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/GoogleAdsService.php',
844
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\MerchantCenterLinkService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/MerchantCenterLinkService.php',
845
- 'GPBMetadata\\Google\\Ads\\GoogleAds\\V9\\Services\\ShoppingPerformanceViewService' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V9/Services/ShoppingPerformanceViewService.php',
76
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsCampaignCriterionQuery' => $baseDir . '/src/API/Google/Query/AdsCampaignCriterionQuery.php',
77
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsCampaignQuery' => $baseDir . '/src/API/Google/Query/AdsCampaignQuery.php',
78
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsCampaignReportQuery' => $baseDir . '/src/API/Google/Query/AdsCampaignReportQuery.php',
79
+ 'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsConversionActionQuery' => $baseDir . '/src/API/Google/Query/AdsConversionActionQuery.php',
80
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsProductReportQuery' => $baseDir . '/src/API/Google/Query/AdsProductReportQuery.php',
81
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsQuery' => $baseDir . '/src/API/Google/Query/AdsQuery.php',
82
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsReportQuery' => $baseDir . '/src/API/Google/Query/AdsReportQuery.php',
385
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Options\\TransientsInterface' => $baseDir . '/src/Options/TransientsInterface.php',
386
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\PluginFactory' => $baseDir . '/src/PluginFactory.php',
387
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\PluginHelper' => $baseDir . '/src/PluginHelper.php',
 
388
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Product\\Attributes\\AbstractAttribute' => $baseDir . '/src/Product/Attributes/AbstractAttribute.php',
389
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Product\\Attributes\\Adult' => $baseDir . '/src/Product/Attributes/Adult.php',
390
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Product\\Attributes\\AgeGroup' => $baseDir . '/src/Product/Attributes/AgeGroup.php',
438
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Tracking\\TracksInterface' => $baseDir . '/src/Tracking/TracksInterface.php',
439
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\GoogleAdsCleanupServices' => $baseDir . '/bin/GoogleAdsCleanupServices.php',
440
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\HooksDocsGenerator' => $baseDir . '/bin/HooksDocsGenerator.php',
441
+ 'Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\SymfonyPolyfillCleanup' => $baseDir . '/bin/SymfonyPolyfillCleanup.php',
442
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Utility\\AddressUtility' => $baseDir . '/src/Utility/AddressUtility.php',
443
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Utility\\DateTimeUtility' => $baseDir . '/src/Utility/DateTimeUtility.php',
444
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Utility\\ISOUtility' => $baseDir . '/src/Utility/ISOUtility.php',
571
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
572
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
573
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
574
+ 'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UriComparator' => $vendorDir . '/guzzlehttp/psr7/src/UriComparator.php',
575
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
576
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
577
  'Automattic\\WooCommerce\\GoogleListingsAndAds\\Vendor\\GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
626
  'Firebase\\JWT\\Key' => $vendorDir . '/firebase/php-jwt/src/Key.php',
627
  'Firebase\\JWT\\SignatureInvalidException' => $vendorDir . '/firebase/php-jwt/src/SignatureInvalidException.php',
628
  'GPBMetadata\\ApiCore\\Testing\\Mocks' => $vendorDir . '/google/gax/metadata/ApiCore/Testing/Mocks.php',
629
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\AdAsset' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/AdAsset.php',
630
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\AdTypeInfos' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/AdTypeInfos.php',
631
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\AssetPolicy' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/AssetPolicy.php',
632
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\AssetTypes' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/AssetTypes.php',
633
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\AssetUsage' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/AssetUsage.php',
634
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Audiences' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Audiences.php',
635
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Bidding' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Bidding.php',
636
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\ClickLocation' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/ClickLocation.php',
637
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Criteria' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Criteria.php',
638
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\CriterionCategoryAvailability' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/CriterionCategoryAvailability.php',
639
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\CustomParameter' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/CustomParameter.php',
640
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\CustomizerValue' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/CustomizerValue.php',
641
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Dates' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Dates.php',
642
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\ExplorerAutoOptimizerSetting' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/ExplorerAutoOptimizerSetting.php',
643
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Extensions' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Extensions.php',
644
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\FeedCommon' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/FeedCommon.php',
645
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\FeedItemSetFilterTypeInfos' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/FeedItemSetFilterTypeInfos.php',
646
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\FinalAppUrl' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/FinalAppUrl.php',
647
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\FrequencyCap' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/FrequencyCap.php',
648
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\KeywordPlanCommon' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/KeywordPlanCommon.php',
649
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\MatchingFunction' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/MatchingFunction.php',
650
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\MetricGoal' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/MetricGoal.php',
651
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Metrics' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Metrics.php',
652
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\OfflineUserData' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/OfflineUserData.php',
653
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Policy' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Policy.php',
654
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\PolicySummary' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/PolicySummary.php',
655
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\RealTimeBiddingSetting' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/RealTimeBiddingSetting.php',
656
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Segments' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Segments.php',
657
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Simulation' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Simulation.php',
658
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\TagSnippet' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/TagSnippet.php',
659
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\TargetingSetting' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/TargetingSetting.php',
660
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\TextLabel' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/TextLabel.php',
661
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\UrlCollection' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/UrlCollection.php',
662
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\UserLists' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/UserLists.php',
663
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Common\\Value' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Common/Value.php',
664
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\AccessRole' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/AccessRole.php',
665
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\AdvertisingChannelType' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/AdvertisingChannelType.php',
666
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\AssetGroupStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/AssetGroupStatus.php',
667
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\BillingSetupStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/BillingSetupStatus.php',
668
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\CampaignCriterionStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/CampaignCriterionStatus.php',
669
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\CampaignStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/CampaignStatus.php',
670
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\ConversionActionCategory' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/ConversionActionCategory.php',
671
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\ConversionActionStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/ConversionActionStatus.php',
672
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\ConversionActionType' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/ConversionActionType.php',
673
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\ListingGroupFilterVertical' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/ListingGroupFilterVertical.php',
674
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\MerchantCenterLinkStatus' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/MerchantCenterLinkStatus.php',
675
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\TrackingCodePageFormat' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/TrackingCodePageFormat.php',
676
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Enums\\TrackingCodeType' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Enums/TrackingCodeType.php',
677
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AccessInvitationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AccessInvitationError.php',
678
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AccountBudgetProposalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AccountBudgetProposalError.php',
679
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AccountLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AccountLinkError.php',
680
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdCustomizerError.php',
681
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdError.php',
682
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupAdError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupAdError.php',
683
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupBidModifierError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupBidModifierError.php',
684
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupCriterionCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupCriterionCustomizerError.php',
685
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupCriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupCriterionError.php',
686
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupCustomizerError.php',
687
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupError.php',
688
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdGroupFeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdGroupFeedError.php',
689
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdParameterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdParameterError.php',
690
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdSharingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdSharingError.php',
691
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AdxError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AdxError.php',
692
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetError.php',
693
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetGroupAssetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetGroupAssetError.php',
694
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetGroupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetGroupError.php',
695
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetGroupListingGroupFilterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetGroupListingGroupFilterError.php',
696
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetLinkError.php',
697
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetSetAssetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetSetAssetError.php',
698
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetSetError.php',
699
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AssetSetLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AssetSetLinkError.php',
700
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AudienceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AudienceError.php',
701
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AuthenticationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AuthenticationError.php',
702
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\AuthorizationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/AuthorizationError.php',
703
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\BatchJobError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/BatchJobError.php',
704
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\BiddingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/BiddingError.php',
705
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\BiddingStrategyError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/BiddingStrategyError.php',
706
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\BillingSetupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/BillingSetupError.php',
707
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignBudgetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignBudgetError.php',
708
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignConversionGoalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignConversionGoalError.php',
709
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignCriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignCriterionError.php',
710
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignCustomizerError.php',
711
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignDraftError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignDraftError.php',
712
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignError.php',
713
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignExperimentError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignExperimentError.php',
714
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignFeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignFeedError.php',
715
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CampaignSharedSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CampaignSharedSetError.php',
716
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ChangeEventError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ChangeEventError.php',
717
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ChangeStatusError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ChangeStatusError.php',
718
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CollectionSizeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CollectionSizeError.php',
719
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ContextError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ContextError.php',
720
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionActionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionActionError.php',
721
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionAdjustmentUploadError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionAdjustmentUploadError.php',
722
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionCustomVariableError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionCustomVariableError.php',
723
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionGoalCampaignConfigError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionGoalCampaignConfigError.php',
724
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionUploadError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionUploadError.php',
725
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionValueRuleError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionValueRuleError.php',
726
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ConversionValueRuleSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ConversionValueRuleSetError.php',
727
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CountryCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CountryCodeError.php',
728
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CriterionError.php',
729
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CurrencyCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CurrencyCodeError.php',
730
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomAudienceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomAudienceError.php',
731
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomConversionGoalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomConversionGoalError.php',
732
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomInterestError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomInterestError.php',
733
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomerClientLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomerClientLinkError.php',
734
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomerCustomizerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomerCustomizerError.php',
735
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomerError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomerError.php',
736
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomerFeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomerFeedError.php',
737
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomerManagerLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomerManagerLinkError.php',
738
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomerUserAccessError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomerUserAccessError.php',
739
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\CustomizerAttributeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/CustomizerAttributeError.php',
740
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\DatabaseError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/DatabaseError.php',
741
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\DateError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/DateError.php',
742
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\DateRangeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/DateRangeError.php',
743
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\DistinctError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/DistinctError.php',
744
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\EnumError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/EnumError.php',
745
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\Errors' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/Errors.php',
746
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ExperimentArmError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ExperimentArmError.php',
747
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ExperimentError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ExperimentError.php',
748
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ExtensionFeedItemError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ExtensionFeedItemError.php',
749
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ExtensionSettingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ExtensionSettingError.php',
750
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedAttributeReferenceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedAttributeReferenceError.php',
751
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedError.php',
752
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedItemError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedItemError.php',
753
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedItemSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedItemSetError.php',
754
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedItemSetLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedItemSetLinkError.php',
755
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedItemTargetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedItemTargetError.php',
756
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedItemValidationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedItemValidationError.php',
757
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FeedMappingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FeedMappingError.php',
758
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FieldError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FieldError.php',
759
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FieldMaskError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FieldMaskError.php',
760
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FunctionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FunctionError.php',
761
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\FunctionParsingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/FunctionParsingError.php',
762
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\GeoTargetConstantSuggestionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/GeoTargetConstantSuggestionError.php',
763
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\HeaderError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/HeaderError.php',
764
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\IdError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/IdError.php',
765
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ImageError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ImageError.php',
766
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\InternalError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/InternalError.php',
767
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\InvoiceError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/InvoiceError.php',
768
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\KeywordPlanAdGroupError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/KeywordPlanAdGroupError.php',
769
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\KeywordPlanAdGroupKeywordError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/KeywordPlanAdGroupKeywordError.php',
770
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\KeywordPlanCampaignError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/KeywordPlanCampaignError.php',
771
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\KeywordPlanCampaignKeywordError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/KeywordPlanCampaignKeywordError.php',
772
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\KeywordPlanError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/KeywordPlanError.php',
773
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\KeywordPlanIdeaError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/KeywordPlanIdeaError.php',
774
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\LabelError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/LabelError.php',
775
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\LanguageCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/LanguageCodeError.php',
776
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ListOperationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ListOperationError.php',
777
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ManagerLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ManagerLinkError.php',
778
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\MediaBundleError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/MediaBundleError.php',
779
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\MediaFileError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/MediaFileError.php',
780
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\MediaUploadError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/MediaUploadError.php',
781
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\MerchantCenterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/MerchantCenterError.php',
782
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\MultiplierError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/MultiplierError.php',
783
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\MutateError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/MutateError.php',
784
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\NewResourceCreationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/NewResourceCreationError.php',
785
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\NotAllowlistedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/NotAllowlistedError.php',
786
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\NotEmptyError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/NotEmptyError.php',
787
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\NullError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/NullError.php',
788
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\OfflineUserDataJobError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/OfflineUserDataJobError.php',
789
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\OperationAccessDeniedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/OperationAccessDeniedError.php',
790
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\OperatorError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/OperatorError.php',
791
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\PartialFailureError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/PartialFailureError.php',
792
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\PaymentsAccountError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/PaymentsAccountError.php',
793
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\PolicyFindingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/PolicyFindingError.php',
794
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\PolicyValidationParameterError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/PolicyValidationParameterError.php',
795
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\PolicyViolationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/PolicyViolationError.php',
796
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\QueryError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/QueryError.php',
797
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\QuotaError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/QuotaError.php',
798
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\RangeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/RangeError.php',
799
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ReachPlanError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ReachPlanError.php',
800
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\RecommendationError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/RecommendationError.php',
801
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\RegionCodeError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/RegionCodeError.php',
802
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\RequestError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/RequestError.php',
803
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ResourceAccessDeniedError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ResourceAccessDeniedError.php',
804
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ResourceCountLimitExceededError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ResourceCountLimitExceededError.php',
805
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\SettingError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/SettingError.php',
806
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\SharedCriterionError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/SharedCriterionError.php',
807
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\SharedSetError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/SharedSetError.php',
808
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\SizeLimitError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/SizeLimitError.php',
809
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\StringFormatError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/StringFormatError.php',
810
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\StringLengthError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/StringLengthError.php',
811
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\ThirdPartyAppAnalyticsLinkError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/ThirdPartyAppAnalyticsLinkError.php',
812
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\TimeZoneError' => $vendorDir . '/googleads/google-ads-php/metadata/Google/Ads/GoogleAds/V11/Errors/TimeZoneError.php',
813
+ 'GPBMetadata\\Google\\Ads\\GoogleAds\\V11\\Errors\\UrlFieldError' => $vendorDir