From bff573d8f81163c95086d773c8b7d5f2d4a2ae7d Mon Sep 17 00:00:00 2001 From: Ivascu Madalin Date: Fri, 29 Mar 2024 12:36:54 +0000 Subject: [PATCH 1/2] BP-3503 Remove payment method: Tinka --- api/paymentmethods/paymentrequestfactory.php | 2 - api/paymentmethods/tinka/tinka.php | 41 ---- dev/lang/php_de.json | 1 - dev/lang/php_en.json | 1 - dev/lang/php_fr.json | 1 - dev/lang/php_nl.json | 1 - .../payments/TinkaPaymentConfig.vue | 15 -- dev/src/pages/PaymentMethods.vue | 3 - library/checkout/checkout.php | 2 - library/checkout/tinkacheckout.php | 194 ------------------ src/Repository/RawPaymentMethodRepository.php | 2 - src/Service/BuckarooPaymentService.php | 1 - .../index.php => upgrade/upgrade-4.3.0.php | 21 +- vendor/.htaccess | 10 + views/js/buckaroo.vue.js | 64 +++--- 15 files changed, 56 insertions(+), 303 deletions(-) delete mode 100644 api/paymentmethods/tinka/tinka.php delete mode 100644 dev/src/components/payments/TinkaPaymentConfig.vue delete mode 100644 library/checkout/tinkacheckout.php rename api/paymentmethods/tinka/index.php => upgrade/upgrade-4.3.0.php (60%) create mode 100644 vendor/.htaccess diff --git a/api/paymentmethods/paymentrequestfactory.php b/api/paymentmethods/paymentrequestfactory.php index 1a57cb9c0..cb12cda2b 100644 --- a/api/paymentmethods/paymentrequestfactory.php +++ b/api/paymentmethods/paymentrequestfactory.php @@ -44,7 +44,6 @@ class PaymentRequestFactory public const REQUEST_TYPE_PAYCONIQ = 'payconiq'; public const REQUEST_TYPE_PAYPEREMAIL = 'payperemail'; public const REQUEST_TYPE_PRZELEWY24 = 'przelewy24'; - public const REQUEST_TYPE_TINKA = 'tinka'; public const REQUEST_TYPE_TRUSTLY = 'trustly'; public const REQUEST_TYPE_WECHATPAY = 'wechatpay'; public const REQUEST_TYPE_ALIPAY = 'alipay'; @@ -77,7 +76,6 @@ class PaymentRequestFactory PaymentRequestFactory::REQUEST_TYPE_PAYCONIQ => 'Payconiq', PaymentRequestFactory::REQUEST_TYPE_PAYPEREMAIL => 'PayPerEmail', PaymentRequestFactory::REQUEST_TYPE_PRZELEWY24 => 'Przelewy24', - PaymentRequestFactory::REQUEST_TYPE_TINKA => 'Tinka', PaymentRequestFactory::REQUEST_TYPE_TRUSTLY => 'Trustly', PaymentRequestFactory::REQUEST_TYPE_WECHATPAY => 'Wechatpay', PaymentRequestFactory::REQUEST_TYPE_ALIPAY => 'Alipay', diff --git a/api/paymentmethods/tinka/tinka.php b/api/paymentmethods/tinka/tinka.php deleted file mode 100644 index c099c61ba..000000000 --- a/api/paymentmethods/tinka/tinka.php +++ /dev/null @@ -1,41 +0,0 @@ - - * @copyright Copyright (c) Buckaroo B.V. - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ -if (!defined('_PS_VERSION_')) { - exit; -} - -require_once dirname(__FILE__) . '/../paymentmethod.php'; - -class Tinka extends PaymentMethod -{ - public function __construct() - { - $this->type = 'tinka'; - } - - public function getPayload($data) - { - return array_merge_recursive($this->payload, $data); - } - - public function pay($customVars = []) - { - $this->payload = $this->getPayload($customVars); - - return parent::pay(); - } -} diff --git a/dev/lang/php_de.json b/dev/lang/php_de.json index c0da2235e..c5b201a87 100644 --- a/dev/lang/php_de.json +++ b/dev/lang/php_de.json @@ -193,7 +193,6 @@ "payment_methods.przelewy24": "Przelewy24", "payment_methods.sepadirectdebit": "SEPA-Lastschrift", "payment_methods.sofortueberweisung": "Sofort", - "payment_methods.tinka": "Tinka", "payment_methods.transfer": "Überweisen", "payment_methods.trustly": "Vertrauenswürdig", "payment_methods.wechatpay": "WeChatPay", diff --git a/dev/lang/php_en.json b/dev/lang/php_en.json index e1433e457..0451b82a9 100644 --- a/dev/lang/php_en.json +++ b/dev/lang/php_en.json @@ -193,7 +193,6 @@ "payment_methods.przelewy24": "Przelewy24", "payment_methods.sepadirectdebit": "SEPA Direct Debit", "payment_methods.sofortueberweisung": "Sofort", - "payment_methods.tinka": "Tinka", "payment_methods.transfer": "Transfer", "payment_methods.trustly": "Trustly", "payment_methods.wechatpay": "WeChatPay", diff --git a/dev/lang/php_fr.json b/dev/lang/php_fr.json index 6c3cb8600..34579361a 100644 --- a/dev/lang/php_fr.json +++ b/dev/lang/php_fr.json @@ -193,7 +193,6 @@ "payment_methods.przelewy24": "Przelewy24", "payment_methods.sepadirectdebit": "Prélèvement SEPA", "payment_methods.sofortueberweisung": "Sofort", - "payment_methods.tinka": "Tinka", "payment_methods.transfer": "Transfert", "payment_methods.trustly": "En toute confiance", "payment_methods.wechatpay": "WeChatPay", diff --git a/dev/lang/php_nl.json b/dev/lang/php_nl.json index 7c575be81..ee9ea5dcd 100644 --- a/dev/lang/php_nl.json +++ b/dev/lang/php_nl.json @@ -189,7 +189,6 @@ "payment_methods.przelewy24": "Przelewy24", "payment_methods.sepadirectdebit": "SEPA Direct Debit", "payment_methods.sofortueberweisung": "Sofort", - "payment_methods.tinka": "Tinka", "payment_methods.transfer": "Transfer", "payment_methods.trustly": "Trustly", "payment_methods.wechatpay": "WeChatPay", diff --git a/dev/src/components/payments/TinkaPaymentConfig.vue b/dev/src/components/payments/TinkaPaymentConfig.vue deleted file mode 100644 index 9e6ce9140..000000000 --- a/dev/src/components/payments/TinkaPaymentConfig.vue +++ /dev/null @@ -1,15 +0,0 @@ - - - diff --git a/dev/src/pages/PaymentMethods.vue b/dev/src/pages/PaymentMethods.vue index 5cb10950d..0f63064fa 100644 --- a/dev/src/pages/PaymentMethods.vue +++ b/dev/src/pages/PaymentMethods.vue @@ -34,7 +34,6 @@ - @@ -60,7 +59,6 @@ import IdealPaymentConfig from "../components/payments/IdealPaymentConfig.vue"; import PaymentMethodBlock from "../components/PaymentMethodBlock.vue"; import Loading from "../components/Loading.vue"; import PayPalPaymentConfig from "../components/payments/PayPalPaymentConfig.vue"; -import TinkaPaymentConfig from "../components/payments/TinkaPaymentConfig.vue"; import KlarnaPaymentConfig from "../components/payments/KlarnaPaymentConfig.vue"; export default { @@ -80,7 +78,6 @@ export default { TransferPaymentConfig, PayPerEmailPaymentConfig, PaymentMethodBlock, - TinkaPaymentConfig, KlarnaPaymentConfig }, setup() { diff --git a/library/checkout/checkout.php b/library/checkout/checkout.php index 52155cd50..cc284b32d 100644 --- a/library/checkout/checkout.php +++ b/library/checkout/checkout.php @@ -53,7 +53,6 @@ abstract class Checkout public const CHECKOUT_TYPE_PAYCONIQ = 'payconiq'; public const CHECKOUT_TYPE_PAYPEREMAIL = 'payperemail'; public const CHECKOUT_TYPE_PRZELEWY24 = 'przelewy24'; - public const CHECKOUT_TYPE_TINKA = 'tinka'; public const CHECKOUT_TYPE_TRUSTLY = 'trustly'; public const CHECKOUT_TYPE_WECHATPAY = 'wechatpay'; public const CHECKOUT_TYPE_ALIPAY = 'alipay'; @@ -86,7 +85,6 @@ abstract class Checkout Checkout::CHECKOUT_TYPE_PAYCONIQ => 'Payconiq', Checkout::CHECKOUT_TYPE_PAYPEREMAIL => 'PayPerEmail', Checkout::CHECKOUT_TYPE_PRZELEWY24 => 'Przelewy24', - Checkout::CHECKOUT_TYPE_TINKA => 'Tinka', Checkout::CHECKOUT_TYPE_TRUSTLY => 'Trustly', Checkout::CHECKOUT_TYPE_WECHATPAY => 'Wechatpay', Checkout::CHECKOUT_TYPE_ALIPAY => 'Alipay', diff --git a/library/checkout/tinkacheckout.php b/library/checkout/tinkacheckout.php deleted file mode 100644 index 92e46571d..000000000 --- a/library/checkout/tinkacheckout.php +++ /dev/null @@ -1,194 +0,0 @@ - - * @copyright Copyright (c) Buckaroo B.V. - * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) - */ -include_once _PS_MODULE_DIR_ . 'buckaroo3/library/checkout/checkout.php'; - -if (!defined('_PS_VERSION_')) { - exit; -} - -class TinkaCheckout extends Checkout -{ - protected $customVars = []; - - final public function setCheckout() - { - parent::setCheckout(); - $this->customVars = [ - 'paymentMethod' => 'Credit', - 'deliveryMethod' => $this->cart->id_carrier === 1 ? 'CompanyStore' : 'ShippingPartner', - 'deliveryDate' => date('Y-m-d'), - 'articles' => $this->getArticles(), - 'customer' => $this->getCustomer(), - 'billing' => $this->getAddress('billing'), - 'shipping' => $this->getAddress('shipping'), - ]; - } - - public function startPayment() - { - $this->payment_response = $this->payment_request->pay($this->customVars); - } - - public function isRedirectRequired() - { - return true; - } - - public function isVerifyRequired() - { - return false; - } - - protected function initialize() - { - $this->payment_request = PaymentRequestFactory::create(PaymentRequestFactory::REQUEST_TYPE_TINKA); - } - - /** - * Get customer data - * - * @return array - */ - protected function getCustomer() - { - return [ - 'firstName' => $this->invoice_address->firstname, - 'lastName' => $this->invoice_address->lastname, - 'initials' => $this->initials($this->invoice_address->firstname . ' ' . $this->invoice_address->lastname), - 'birthDate' => date( - 'Y-m-d', - strtotime( - Tools::getValue('customerbirthdate_y_billing') . '-' . - Tools::getValue('customerbirthdate_m_billing') . '-' . - Tools::getValue('customerbirthdate_d_billing') - ) - ), - ]; - } - - /** - * Get customer address - * - * @return array - */ - protected function getAddress($type) - { - $addressType = 'invoice_address'; - - if ($type == 'shipping' && isset($this->shipping_address)) { - $addressType = 'shipping_address'; - } - - $address_components = $this->getAddressComponents($this->$addressType->address1); - - if (empty($address_components['house_number'])) { - $address_components['house_number'] = $this->$addressType->address2; - } - $address_data = [ - 'street' => $address_components['street'], - 'houseNumber' => $address_components['house_number'], - 'zipcode' => $this->$addressType->postcode, - 'city' => $this->$addressType->city, - 'country' => Tools::strtoupper( - (new Country($this->$addressType->id_country))->iso_code - ), - ]; - - if (!empty($address_components['number_addition'])) { - $address_data['houseNumberAdditional'] = $address_components['number_addition']; - } - - $phone_data = [ - 'mobile' => (isset($this->$addressType->phone_mobile)) ? $this->$addressType->phone_mobile : $this->addressType->phone, - ]; - - return [ - 'recipient' => [ - 'lastNamePrefix' => 'the', // Assuming 'the' is a placeholder - ], - 'email' => $this->customer->email, - 'phone' => $phone_data, - 'address' => $address_data, - ]; - } - - /** - * Get order articles - * - * @return array - */ - protected function getArticles() - { - $products = []; - foreach ($this->products as $item) { - $products[] = [ - 'type' => 1, - 'description' => $item['name'], - 'unitCode' => $item['id_product'], - 'quantity' => $item['quantity'], - 'price' => round($item['price_wt'], 2), - ]; - } - - $wrapping = $this->cart->getOrderTotal(true, CartCore::ONLY_WRAPPING); - if ($wrapping > 0) { - $products[] = [ - 'type' => 1, - 'description' => 'Wrapping', - 'unitCode' => 'WRAP', - 'quantity' => 1, - 'price' => round($wrapping, 2), - ]; - } - - $discounts = $this->cart->getOrderTotal(true, CartCore::ONLY_DISCOUNTS); - if ($discounts > 0) { - $products[] = [ - 'type' => 1, - 'description' => 'Discounts', - 'unitCode' => 'DISC', - 'quantity' => 1, - 'price' => -round($discounts, 2), - ]; - } - - $shipping = $this->cart->getOrderTotal(true, CartCore::ONLY_SHIPPING); - if ($shipping > 0) { - $products[] = [ - 'type' => 1, - 'description' => 'Shipping', - 'unitCode' => 'SHIP', - 'quantity' => 1, - 'price' => round($shipping, 2), - ]; - } - - $buckarooFee = $this->getBuckarooFee(); - - if ($buckarooFee > 0) { - $products[] = [ - 'type' => 1, - 'description' => 'buckaroo_fee', - 'unitCode' => 'fee', - 'quantity' => 1, - 'price' => round($buckarooFee, 2), - ]; - } - - return $products; - } -} diff --git a/src/Repository/RawPaymentMethodRepository.php b/src/Repository/RawPaymentMethodRepository.php index a229cba47..f8985ba0c 100644 --- a/src/Repository/RawPaymentMethodRepository.php +++ b/src/Repository/RawPaymentMethodRepository.php @@ -64,7 +64,6 @@ private function insertConfiguration(string $paymentName, int $paymentMethodId): switch ($paymentName) { case 'klarna': - case 'tinka': $configValue['financial_warning'] = true; break; @@ -142,7 +141,6 @@ private function getPaymentMethodsData() ['name' => 'przelewy24', 'label' => 'Przelewy24', 'icon' => 'Przelewy24.svg', 'template' => '', 'is_payment_method' => '1'], ['name' => 'payperemail', 'label' => 'PayPerEmail', 'icon' => 'PayPerEmail.svg', 'template' => 'payment_payperemail.tpl', 'is_payment_method' => '1'], ['name' => 'payconiq', 'label' => 'Payconiq', 'icon' => 'Payconiq.svg', 'template' => '', 'is_payment_method' => '1'], - ['name' => 'tinka', 'label' => 'Tinka', 'icon' => 'Tinka.svg', 'template' => 'payment_tinka.tpl', 'is_payment_method' => '1'], ['name' => 'trustly', 'label' => 'Trustly', 'icon' => 'Trustly.svg', 'template' => '', 'is_payment_method' => '1'], ['name' => 'transfer', 'label' => 'Bank Transfer', 'icon' => 'SEPA-credittransfer.svg', 'template' => '', 'is_payment_method' => '1'], ['name' => 'wechatpay', 'label' => 'WeChatPay', 'icon' => 'WeChat Pay.svg', 'template' => '', 'is_payment_method' => '1'], diff --git a/src/Service/BuckarooPaymentService.php b/src/Service/BuckarooPaymentService.php index b2d870218..3beeff40c 100644 --- a/src/Service/BuckarooPaymentService.php +++ b/src/Service/BuckarooPaymentService.php @@ -506,7 +506,6 @@ public function paymentMethodsWithFinancialWarning() 'afterpay', 'billink', 'in3', - 'tinka', ]; $methods = []; foreach ($buyNowPayLaterMethods as $method) { diff --git a/api/paymentmethods/tinka/index.php b/upgrade/upgrade-4.3.0.php similarity index 60% rename from api/paymentmethods/tinka/index.php rename to upgrade/upgrade-4.3.0.php index 97ec565fb..de7f6767b 100644 --- a/api/paymentmethods/tinka/index.php +++ b/upgrade/upgrade-4.3.0.php @@ -14,12 +14,19 @@ * @copyright Copyright (c) Buckaroo B.V. * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ -header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); -header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); -header('Cache-Control: no-store, no-cache, must-revalidate'); -header('Cache-Control: post-check=0, pre-check=0', false); -header('Pragma: no-cache'); +use Buckaroo\PrestaShop\Src\Repository\RawOrderingRepository; -header('Location: ../'); -exit; +if (!defined('_PS_VERSION_')) { + exit; +} + +/** + * @return mixed + * @throws Exception + */ +function upgrade_module_4_2_0($object) +{ + Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'bk_payment_methods WHERE name = "tinka"'); + return true; +} diff --git a/vendor/.htaccess b/vendor/.htaccess new file mode 100644 index 000000000..3de9e4008 --- /dev/null +++ b/vendor/.htaccess @@ -0,0 +1,10 @@ +# Apache 2.2 + + Order deny,allow + Deny from all + + +# Apache 2.4 + + Require all denied + diff --git a/views/js/buckaroo.vue.js b/views/js/buckaroo.vue.js index dadbe3a1d..c35df46c7 100644 --- a/views/js/buckaroo.vue.js +++ b/views/js/buckaroo.vue.js @@ -1,13 +1,13 @@ -var mk=Object.defineProperty;var yk=(e,t,n)=>t in e?mk(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var kv=(e,t,n)=>(yk(e,typeof t!="symbol"?t+"":t,n),n);var ia=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Wf(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function W0(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var n=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(r){var i=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,i.get?i:{enumerable:!0,get:function(){return e[r]}})}),n}var gf={exports:{}};/** +var mk=Object.defineProperty;var yk=(e,t,n)=>t in e?mk(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var kv=(e,t,n)=>(yk(e,typeof t!="symbol"?t+"":t,n),n);var ia=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Vf(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function W0(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var n=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(r){var i=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,i.get?i:{enumerable:!0,get:function(){return e[r]}})}),n}var pf={exports:{}};/** * @license * Lodash * Copyright OpenJS Foundation and other contributors * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */gf.exports;(function(e,t){(function(){var n,r="4.17.21",i=200,a="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",o="Expected a function",c="Invalid `variable` option passed into `_.template`",d="__lodash_hash_undefined__",f=500,y="__lodash_placeholder__",g=1,v=2,S=4,E=1,T=2,N=1,I=2,D=4,L=8,R=16,U=32,H=64,m=128,K=256,F=512,V=30,re="...",ce=800,J=16,ye=1,Me=2,fe=3,Se=1/0,we=9007199254740991,Qe=17976931348623157e292,ht=NaN,at=4294967295,vt=at-1,Xt=at>>>1,tn=[["ary",m],["bind",N],["bindKey",I],["curry",L],["curryRight",R],["flip",F],["partial",U],["partialRight",H],["rearg",K]],Ft="[object Arguments]",yt="[object Array]",Lt="[object AsyncFunction]",Qt="[object Boolean]",Kt="[object Date]",Rt="[object DOMException]",yn="[object Error]",an="[object Function]",A="[object GeneratorFunction]",C="[object Map]",G="[object Number]",oe="[object Null]",te="[object Object]",be="[object Promise]",$e="[object Proxy]",Ce="[object RegExp]",Le="[object Set]",Te="[object String]",Fe="[object Symbol]",Be="[object Undefined]",X="[object WeakMap]",ge="[object WeakSet]",je="[object ArrayBuffer]",qe="[object DataView]",se="[object Float32Array]",le="[object Float64Array]",pe="[object Int8Array]",Pe="[object Int16Array]",He="[object Int32Array]",Je="[object Uint8Array]",nt="[object Uint8ClampedArray]",lt="[object Uint16Array]",kt="[object Uint32Array]",st=/\b__p \+= '';/g,Ze=/\b(__p \+=) '' \+/g,ot=/(__e\(.*?\)|\b__t\)) \+\n'';/g,_t=/&(?:amp|lt|gt|quot|#39);/g,It=/[&<>"']/g,Xn=RegExp(_t.source),Yo=RegExp(It.source),yr=/<%-([\s\S]+?)%>/g,Hn=/<%([\s\S]+?)%>/g,ka=/<%=([\s\S]+?)%>/g,Oh=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,xu=/^\w*$/,Eu=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Qs=/[\\^$.*+?()[\]{}|]/g,Xo=RegExp(Qs.source),Fi=/^\s+/,Pa=/\s/,Ah=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,kh=/\{\n\/\* \[wrapped with (.+)\] \*/,Ph=/,? & /,Su=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Nh=/[()=,{}\[\]\/\s]/,Lh=/\\(\\)?/g,wu=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Tu=/\w*$/,qo=/^[-+]0x[0-9a-f]+$/i,Cu=/^0b[01]+$/i,Ol=/^\[object .+?Constructor\]$/,Al=/^0o[0-7]+$/i,Na=/^(?:0|[1-9]\d*)$/,Iu=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,La=/($^)/,Bi=/['\n\r\u2028\u2029\\]/g,Ui="\\ud800-\\udfff",Ou="\\u0300-\\u036f",Au="\\ufe20-\\ufe2f",ku="\\u20d0-\\u20ff",Pu=Ou+Au+ku,Ra="\\u2700-\\u27bf",Nu="a-z\\xdf-\\xf6\\xf8-\\xff",Rh="\\xac\\xb1\\xd7\\xf7",Lu="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Ru="\\u2000-\\u206f",kl=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Pl="A-Z\\xc0-\\xd6\\xd8-\\xde",ur="\\ufe0e\\ufe0f",vo=Rh+Lu+Ru+kl,Jo="['’]",Dh="["+Ui+"]",Du="["+vo+"]",Zo="["+Pu+"]",Nl="\\d+",Da="["+Ra+"]",Ll="["+Nu+"]",Mu="[^"+Ui+vo+Nl+Ra+Nu+Pl+"]",Rl="\\ud83c[\\udffb-\\udfff]",ts="(?:"+Zo+"|"+Rl+")",Dl="[^"+Ui+"]",_o="(?:\\ud83c[\\udde6-\\uddff]){2}",Ml="[\\ud800-\\udbff][\\udc00-\\udfff]",Qo="["+Pl+"]",eo="\\u200d",to="(?:"+Ll+"|"+Mu+")",$l="(?:"+Qo+"|"+Mu+")",$u="(?:"+Jo+"(?:d|ll|m|re|s|t|ve))?",ei="(?:"+Jo+"(?:D|LL|M|RE|S|T|VE))?",Fl=ts+"?",Ma="["+ur+"]?",Fu="(?:"+eo+"(?:"+[Dl,_o,Ml].join("|")+")"+Ma+Fl+")*",Bu="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Mh="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Bl=Ma+Fl+Fu,$h="(?:"+[Da,_o,Ml].join("|")+")"+Bl,Fh="(?:"+[Dl+Zo+"?",Zo,_o,Ml,Dh].join("|")+")",Ul=RegExp(Jo,"g"),Bh=RegExp(Zo,"g"),Hl=RegExp(Rl+"(?="+Rl+")|"+Fh+Bl,"g"),Uh=RegExp([Qo+"?"+Ll+"+"+$u+"(?="+[Du,Qo,"$"].join("|")+")",$l+"+"+ei+"(?="+[Du,Qo+to,"$"].join("|")+")",Qo+"?"+to+"+"+$u,Qo+"+"+ei,Mh,Bu,Nl,$h].join("|"),"g"),Hh=RegExp("["+eo+Ui+Pu+ur+"]"),jh=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Vh=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Wh=-1,bn={};bn[se]=bn[le]=bn[pe]=bn[Pe]=bn[He]=bn[Je]=bn[nt]=bn[lt]=bn[kt]=!0,bn[Ft]=bn[yt]=bn[je]=bn[Qt]=bn[qe]=bn[Kt]=bn[yn]=bn[an]=bn[C]=bn[G]=bn[te]=bn[Ce]=bn[Le]=bn[Te]=bn[X]=!1;var fn={};fn[Ft]=fn[yt]=fn[je]=fn[qe]=fn[Qt]=fn[Kt]=fn[se]=fn[le]=fn[pe]=fn[Pe]=fn[He]=fn[C]=fn[G]=fn[te]=fn[Ce]=fn[Le]=fn[Te]=fn[Fe]=fn[Je]=fn[nt]=fn[lt]=fn[kt]=!0,fn[yn]=fn[an]=fn[X]=!1;var Uu={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},jl={"&":"&","<":"<",">":">",'"':""","'":"'"},Hu={"&":"&","<":"<",">":">",""":'"',"'":"'"},ju={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Vl=parseFloat,Gh=parseInt,Vu=typeof ia=="object"&&ia&&ia.Object===Object&&ia,Kh=typeof self=="object"&&self&&self.Object===Object&&self,An=Vu||Kh||Function("return this")(),$a=t&&!t.nodeType&&t,Ds=$a&&!0&&e&&!e.nodeType&&e,Wu=Ds&&Ds.exports===$a,Wl=Wu&&Vu.process,Br=function(){try{var j=Ds&&Ds.require&&Ds.require("util").types;return j||Wl&&Wl.binding&&Wl.binding("util")}catch{}}(),u=Br&&Br.isArrayBuffer,p=Br&&Br.isDate,b=Br&&Br.isMap,x=Br&&Br.isRegExp,O=Br&&Br.isSet,k=Br&&Br.isTypedArray;function M(j,Q,Z){switch(Z.length){case 0:return j.call(Q);case 1:return j.call(Q,Z[0]);case 2:return j.call(Q,Z[0],Z[1]);case 3:return j.call(Q,Z[0],Z[1],Z[2])}return j.apply(Q,Z)}function q(j,Q,Z,Ee){for(var Ie=-1,ze=j==null?0:j.length;++Ie-1}function De(j,Q,Z){for(var Ee=-1,Ie=j==null?0:j.length;++Ee-1;);return Z}function Wi(j,Q){for(var Z=j.length;Z--&&gn(Q,j[Z],0)>-1;);return Z}function rs(j,Q){for(var Z=j.length,Ee=0;Z--;)j[Z]===Q&&++Ee;return Ee}var ti=Ur(Uu),zh=Ur(jl);function Yh(j){return"\\"+ju[j]}function Gu(j,Q){return j==null?n:j[Q]}function Hr(j){return Hh.test(j)}function Kl(j){return jh.test(j)}function so(j){for(var Q,Z=[];!(Q=j.next()).done;)Z.push(Q.value);return Z}function Ba(j){var Q=-1,Z=Array(j.size);return j.forEach(function(Ee,Ie){Z[++Q]=[Ie,Ee]}),Z}function ni(j,Q){return function(Z){return j(Q(Z))}}function ss(j,Q){for(var Z=-1,Ee=j.length,Ie=0,ze=[];++Z-1}function Hw(s,l){var h=this.__data__,_=od(h,s);return _<0?(++this.size,h.push([s,l])):h[_][1]=l,this}So.prototype.clear=$w,So.prototype.delete=Fw,So.prototype.get=Bw,So.prototype.has=Uw,So.prototype.set=Hw;function wo(s){var l=-1,h=s==null?0:s.length;for(this.clear();++l=l?s:l)),s}function Es(s,l,h,_,P,B){var Y,ee=l&g,ue=l&v,Oe=l&S;if(h&&(Y=P?h(s,_,P,B):h(s)),Y!==n)return Y;if(!Pn(s))return s;var Ae=Ct(s);if(Ae){if(Y=GT(s),!ee)return jr(s,Y)}else{var Re=_r(s),Ve=Re==an||Re==A;if(li(s))return xb(s,ee);if(Re==te||Re==Ft||Ve&&!P){if(Y=ue||Ve?{}:Ub(s),!ee)return ue?RT(s,rT(Y,s)):LT(s,Jy(Y,s))}else{if(!fn[Re])return P?s:{};Y=KT(s,Re,ee)}}B||(B=new Bs);var tt=B.get(s);if(tt)return tt;B.set(s,Y),gv(s)?s.forEach(function(dt){Y.add(Es(dt,l,h,dt,s,B))}):hv(s)&&s.forEach(function(dt,zt){Y.set(zt,Es(dt,l,h,zt,s,B))});var ut=Oe?ue?_p:vp:ue?Wr:lr,Dt=Ae?n:ut(s);return z(Dt||s,function(dt,zt){Dt&&(zt=dt,dt=s[zt]),ec(Y,zt,Es(dt,l,h,zt,s,B))}),Y}function sT(s){var l=lr(s);return function(h){return Zy(h,s,l)}}function Zy(s,l,h){var _=h.length;if(s==null)return!_;for(s=We(s);_--;){var P=h[_],B=l[P],Y=s[P];if(Y===n&&!(P in s)||!B(Y))return!1}return!0}function Qy(s,l,h){if(typeof s!="function")throw new Bt(o);return ac(function(){s.apply(n,h)},l)}function tc(s,l,h,_){var P=-1,B=he,Y=!0,ee=s.length,ue=[],Oe=l.length;if(!ee)return ue;h&&(l=Ke(l,Ir(h))),_?(B=De,Y=!1):l.length>=i&&(B=Vi,Y=!1,l=new zi(l));e:for(;++PP?0:P+h),_=_===n||_>P?P:Nt(_),_<0&&(_+=P),_=h>_?0:yv(_);h<_;)s[h++]=l;return s}function tb(s,l){var h=[];return si(s,function(_,P,B){l(_,P,B)&&h.push(_)}),h}function dr(s,l,h,_,P){var B=-1,Y=s.length;for(h||(h=YT),P||(P=[]);++B0&&h(ee)?l>1?dr(ee,l-1,h,_,P):Tt(P,ee):_||(P[P.length]=ee)}return P}var tp=Ib(),nb=Ib(!0);function io(s,l){return s&&tp(s,l,lr)}function np(s,l){return s&&nb(s,l,lr)}function ad(s,l){return xe(l,function(h){return Ao(s[h])})}function Xi(s,l){l=ii(l,s);for(var h=0,_=l.length;s!=null&&h<_;)s=s[lo(l[h++])];return h&&h==_?s:n}function rb(s,l,h){var _=l(s);return Ct(s)?_:Tt(_,h(s))}function kr(s){return s==null?s===n?Be:oe:Gi&&Gi in We(s)?jT(s):tC(s)}function rp(s,l){return s>l}function aT(s,l){return s!=null&&xt.call(s,l)}function lT(s,l){return s!=null&&l in We(s)}function cT(s,l,h){return s>=vr(l,h)&&s=120&&Ae.length>=120)?new zi(Y&&Ae):n}Ae=s[0];var Re=-1,Ve=ee[0];e:for(;++Re-1;)ee!==s&&Zu.call(ee,ue,1),Zu.call(s,ue,1);return s}function hb(s,l){for(var h=s?l.length:0,_=h-1;h--;){var P=l[h];if(h==_||P!==B){var B=P;Oo(P)?Zu.call(s,P,1):fp(s,P)}}return s}function cp(s,l){return s+td(zy()*(l-s+1))}function ET(s,l,h,_){for(var P=-1,B=Qn(ed((l-s)/(h||1)),0),Y=Z(B);B--;)Y[_?B:++P]=s,s+=h;return Y}function up(s,l){var h="";if(!s||l<1||l>we)return h;do l%2&&(h+=s),l=td(l/2),l&&(s+=s);while(l);return h}function Ut(s,l){return Ip(Vb(s,l,Gr),s+"")}function ST(s){return qy(Ya(s))}function wT(s,l){var h=Ya(s);return bd(h,Yi(l,0,h.length))}function sc(s,l,h,_){if(!Pn(s))return s;l=ii(l,s);for(var P=-1,B=l.length,Y=B-1,ee=s;ee!=null&&++PP?0:P+l),h=h>P?P:h,h<0&&(h+=P),P=l>h?0:h-l>>>0,l>>>=0;for(var B=Z(P);++_>>1,Y=s[B];Y!==null&&!is(Y)&&(h?Y<=l:Y=i){var Oe=l?null:FT(s);if(Oe)return Eo(Oe);Y=!1,P=Vi,ue=new zi}else ue=l?[]:ee;e:for(;++_=_?s:Ss(s,l,h)}var _b=gw||function(s){return An.clearTimeout(s)};function xb(s,l){if(l)return s.slice();var h=s.length,_=jy?jy(h):new s.constructor(h);return s.copy(_),_}function mp(s){var l=new s.constructor(s.byteLength);return new qu(l).set(new qu(s)),l}function AT(s,l){var h=l?mp(s.buffer):s.buffer;return new s.constructor(h,s.byteOffset,s.byteLength)}function kT(s){var l=new s.constructor(s.source,Tu.exec(s));return l.lastIndex=s.lastIndex,l}function PT(s){return Ql?We(Ql.call(s)):{}}function Eb(s,l){var h=l?mp(s.buffer):s.buffer;return new s.constructor(h,s.byteOffset,s.length)}function Sb(s,l){if(s!==l){var h=s!==n,_=s===null,P=s===s,B=is(s),Y=l!==n,ee=l===null,ue=l===l,Oe=is(l);if(!ee&&!Oe&&!B&&s>l||B&&Y&&ue&&!ee&&!Oe||_&&Y&&ue||!h&&ue||!P)return 1;if(!_&&!B&&!Oe&&s=ee)return ue;var Oe=h[_];return ue*(Oe=="desc"?-1:1)}}return s.index-l.index}function wb(s,l,h,_){for(var P=-1,B=s.length,Y=h.length,ee=-1,ue=l.length,Oe=Qn(B-Y,0),Ae=Z(ue+Oe),Re=!_;++ee1?h[P-1]:n,Y=P>2?h[2]:n;for(B=s.length>3&&typeof B=="function"?(P--,B):n,Y&&Pr(h[0],h[1],Y)&&(B=P<3?n:B,P=1),l=We(l);++_-1?P[B?l[Y]:Y]:n}}function kb(s){return Io(function(l){var h=l.length,_=h,P=xs.prototype.thru;for(s&&l.reverse();_--;){var B=l[_];if(typeof B!="function")throw new Bt(o);if(P&&!Y&&md(B)=="wrapper")var Y=new xs([],!0)}for(_=Y?_:h;++_1&&en.reverse(),Ae&&ueee))return!1;var Oe=B.get(s),Ae=B.get(l);if(Oe&&Ae)return Oe==l&&Ae==s;var Re=-1,Ve=!0,tt=h&T?new zi:n;for(B.set(s,l),B.set(l,s);++Re1?"& ":"")+l[_],l=l.join(h>2?", ":" "),s.replace(Ah,`{ + */pf.exports;(function(e,t){(function(){var n,r="4.17.21",i=200,a="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",o="Expected a function",c="Invalid `variable` option passed into `_.template`",d="__lodash_hash_undefined__",f=500,y="__lodash_placeholder__",g=1,v=2,S=4,E=1,T=2,N=1,I=2,D=4,L=8,R=16,U=32,H=64,m=128,K=256,F=512,V=30,re="...",ce=800,J=16,ye=1,Me=2,fe=3,Se=1/0,we=9007199254740991,Qe=17976931348623157e292,ht=NaN,at=4294967295,vt=at-1,Xt=at>>>1,tn=[["ary",m],["bind",N],["bindKey",I],["curry",L],["curryRight",R],["flip",F],["partial",U],["partialRight",H],["rearg",K]],$t="[object Arguments]",yt="[object Array]",Lt="[object AsyncFunction]",Qt="[object Boolean]",Kt="[object Date]",Rt="[object DOMException]",yn="[object Error]",an="[object Function]",A="[object GeneratorFunction]",C="[object Map]",G="[object Number]",oe="[object Null]",te="[object Object]",be="[object Promise]",$e="[object Proxy]",Ce="[object RegExp]",Le="[object Set]",Te="[object String]",Fe="[object Symbol]",Be="[object Undefined]",X="[object WeakMap]",ge="[object WeakSet]",je="[object ArrayBuffer]",qe="[object DataView]",se="[object Float32Array]",le="[object Float64Array]",pe="[object Int8Array]",Pe="[object Int16Array]",He="[object Int32Array]",Je="[object Uint8Array]",nt="[object Uint8ClampedArray]",lt="[object Uint16Array]",kt="[object Uint32Array]",rt=/\b__p \+= '';/g,Ze=/\b(__p \+=) '' \+/g,st=/(__e\(.*?\)|\b__t\)) \+\n'';/g,_t=/&(?:amp|lt|gt|quot|#39);/g,It=/[&<>"']/g,Xn=RegExp(_t.source),Yo=RegExp(It.source),yr=/<%-([\s\S]+?)%>/g,Hn=/<%([\s\S]+?)%>/g,ka=/<%=([\s\S]+?)%>/g,Oh=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,_u=/^\w*$/,xu=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Qs=/[\\^$.*+?()[\]{}|]/g,Xo=RegExp(Qs.source),Fi=/^\s+/,Pa=/\s/,Ah=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,kh=/\{\n\/\* \[wrapped with (.+)\] \*/,Ph=/,? & /,Eu=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Nh=/[()=,{}\[\]\/\s]/,Lh=/\\(\\)?/g,Su=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,wu=/\w*$/,qo=/^[-+]0x[0-9a-f]+$/i,Tu=/^0b[01]+$/i,Ol=/^\[object .+?Constructor\]$/,Al=/^0o[0-7]+$/i,Na=/^(?:0|[1-9]\d*)$/,Cu=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,La=/($^)/,Bi=/['\n\r\u2028\u2029\\]/g,Ui="\\ud800-\\udfff",Iu="\\u0300-\\u036f",Ou="\\ufe20-\\ufe2f",Au="\\u20d0-\\u20ff",ku=Iu+Ou+Au,Ra="\\u2700-\\u27bf",Pu="a-z\\xdf-\\xf6\\xf8-\\xff",Rh="\\xac\\xb1\\xd7\\xf7",Nu="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Lu="\\u2000-\\u206f",kl=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Pl="A-Z\\xc0-\\xd6\\xd8-\\xde",ur="\\ufe0e\\ufe0f",vo=Rh+Nu+Lu+kl,Jo="['’]",Dh="["+Ui+"]",Ru="["+vo+"]",Zo="["+ku+"]",Nl="\\d+",Da="["+Ra+"]",Ll="["+Pu+"]",Du="[^"+Ui+vo+Nl+Ra+Pu+Pl+"]",Rl="\\ud83c[\\udffb-\\udfff]",ts="(?:"+Zo+"|"+Rl+")",Dl="[^"+Ui+"]",_o="(?:\\ud83c[\\udde6-\\uddff]){2}",Ml="[\\ud800-\\udbff][\\udc00-\\udfff]",Qo="["+Pl+"]",eo="\\u200d",to="(?:"+Ll+"|"+Du+")",$l="(?:"+Qo+"|"+Du+")",Mu="(?:"+Jo+"(?:d|ll|m|re|s|t|ve))?",ei="(?:"+Jo+"(?:D|LL|M|RE|S|T|VE))?",Fl=ts+"?",Ma="["+ur+"]?",$u="(?:"+eo+"(?:"+[Dl,_o,Ml].join("|")+")"+Ma+Fl+")*",Fu="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Mh="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Bl=Ma+Fl+$u,$h="(?:"+[Da,_o,Ml].join("|")+")"+Bl,Fh="(?:"+[Dl+Zo+"?",Zo,_o,Ml,Dh].join("|")+")",Ul=RegExp(Jo,"g"),Bh=RegExp(Zo,"g"),Hl=RegExp(Rl+"(?="+Rl+")|"+Fh+Bl,"g"),Uh=RegExp([Qo+"?"+Ll+"+"+Mu+"(?="+[Ru,Qo,"$"].join("|")+")",$l+"+"+ei+"(?="+[Ru,Qo+to,"$"].join("|")+")",Qo+"?"+to+"+"+Mu,Qo+"+"+ei,Mh,Fu,Nl,$h].join("|"),"g"),Hh=RegExp("["+eo+Ui+ku+ur+"]"),jh=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Vh=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Wh=-1,bn={};bn[se]=bn[le]=bn[pe]=bn[Pe]=bn[He]=bn[Je]=bn[nt]=bn[lt]=bn[kt]=!0,bn[$t]=bn[yt]=bn[je]=bn[Qt]=bn[qe]=bn[Kt]=bn[yn]=bn[an]=bn[C]=bn[G]=bn[te]=bn[Ce]=bn[Le]=bn[Te]=bn[X]=!1;var fn={};fn[$t]=fn[yt]=fn[je]=fn[qe]=fn[Qt]=fn[Kt]=fn[se]=fn[le]=fn[pe]=fn[Pe]=fn[He]=fn[C]=fn[G]=fn[te]=fn[Ce]=fn[Le]=fn[Te]=fn[Fe]=fn[Je]=fn[nt]=fn[lt]=fn[kt]=!0,fn[yn]=fn[an]=fn[X]=!1;var Bu={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},jl={"&":"&","<":"<",">":">",'"':""","'":"'"},Uu={"&":"&","<":"<",">":">",""":'"',"'":"'"},Hu={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Vl=parseFloat,Gh=parseInt,ju=typeof ia=="object"&&ia&&ia.Object===Object&&ia,Kh=typeof self=="object"&&self&&self.Object===Object&&self,An=ju||Kh||Function("return this")(),$a=t&&!t.nodeType&&t,Ds=$a&&!0&&e&&!e.nodeType&&e,Vu=Ds&&Ds.exports===$a,Wl=Vu&&ju.process,Br=function(){try{var j=Ds&&Ds.require&&Ds.require("util").types;return j||Wl&&Wl.binding&&Wl.binding("util")}catch{}}(),u=Br&&Br.isArrayBuffer,p=Br&&Br.isDate,b=Br&&Br.isMap,x=Br&&Br.isRegExp,O=Br&&Br.isSet,k=Br&&Br.isTypedArray;function M(j,Q,Z){switch(Z.length){case 0:return j.call(Q);case 1:return j.call(Q,Z[0]);case 2:return j.call(Q,Z[0],Z[1]);case 3:return j.call(Q,Z[0],Z[1],Z[2])}return j.apply(Q,Z)}function q(j,Q,Z,Ee){for(var Ie=-1,ze=j==null?0:j.length;++Ie-1}function De(j,Q,Z){for(var Ee=-1,Ie=j==null?0:j.length;++Ee-1;);return Z}function Wi(j,Q){for(var Z=j.length;Z--&&gn(Q,j[Z],0)>-1;);return Z}function rs(j,Q){for(var Z=j.length,Ee=0;Z--;)j[Z]===Q&&++Ee;return Ee}var ti=Ur(Bu),zh=Ur(jl);function Yh(j){return"\\"+Hu[j]}function Wu(j,Q){return j==null?n:j[Q]}function Hr(j){return Hh.test(j)}function Kl(j){return jh.test(j)}function so(j){for(var Q,Z=[];!(Q=j.next()).done;)Z.push(Q.value);return Z}function Ba(j){var Q=-1,Z=Array(j.size);return j.forEach(function(Ee,Ie){Z[++Q]=[Ie,Ee]}),Z}function ni(j,Q){return function(Z){return j(Q(Z))}}function ss(j,Q){for(var Z=-1,Ee=j.length,Ie=0,ze=[];++Z-1}function Hw(s,l){var h=this.__data__,_=sd(h,s);return _<0?(++this.size,h.push([s,l])):h[_][1]=l,this}So.prototype.clear=$w,So.prototype.delete=Fw,So.prototype.get=Bw,So.prototype.has=Uw,So.prototype.set=Hw;function wo(s){var l=-1,h=s==null?0:s.length;for(this.clear();++l=l?s:l)),s}function Es(s,l,h,_,P,B){var Y,ee=l&g,ue=l&v,Oe=l&S;if(h&&(Y=P?h(s,_,P,B):h(s)),Y!==n)return Y;if(!Pn(s))return s;var Ae=Ct(s);if(Ae){if(Y=GT(s),!ee)return jr(s,Y)}else{var Re=_r(s),Ve=Re==an||Re==A;if(li(s))return xb(s,ee);if(Re==te||Re==$t||Ve&&!P){if(Y=ue||Ve?{}:Ub(s),!ee)return ue?RT(s,rT(Y,s)):LT(s,Jy(Y,s))}else{if(!fn[Re])return P?s:{};Y=KT(s,Re,ee)}}B||(B=new Bs);var tt=B.get(s);if(tt)return tt;B.set(s,Y),gv(s)?s.forEach(function(dt){Y.add(Es(dt,l,h,dt,s,B))}):hv(s)&&s.forEach(function(dt,zt){Y.set(zt,Es(dt,l,h,zt,s,B))});var ut=Oe?ue?_p:vp:ue?Wr:lr,Dt=Ae?n:ut(s);return z(Dt||s,function(dt,zt){Dt&&(zt=dt,dt=s[zt]),ec(Y,zt,Es(dt,l,h,zt,s,B))}),Y}function sT(s){var l=lr(s);return function(h){return Zy(h,s,l)}}function Zy(s,l,h){var _=h.length;if(s==null)return!_;for(s=We(s);_--;){var P=h[_],B=l[P],Y=s[P];if(Y===n&&!(P in s)||!B(Y))return!1}return!0}function Qy(s,l,h){if(typeof s!="function")throw new Ft(o);return ac(function(){s.apply(n,h)},l)}function tc(s,l,h,_){var P=-1,B=he,Y=!0,ee=s.length,ue=[],Oe=l.length;if(!ee)return ue;h&&(l=Ke(l,Ir(h))),_?(B=De,Y=!1):l.length>=i&&(B=Vi,Y=!1,l=new zi(l));e:for(;++PP?0:P+h),_=_===n||_>P?P:Nt(_),_<0&&(_+=P),_=h>_?0:yv(_);h<_;)s[h++]=l;return s}function tb(s,l){var h=[];return si(s,function(_,P,B){l(_,P,B)&&h.push(_)}),h}function dr(s,l,h,_,P){var B=-1,Y=s.length;for(h||(h=YT),P||(P=[]);++B0&&h(ee)?l>1?dr(ee,l-1,h,_,P):Tt(P,ee):_||(P[P.length]=ee)}return P}var tp=Ib(),nb=Ib(!0);function io(s,l){return s&&tp(s,l,lr)}function np(s,l){return s&&nb(s,l,lr)}function id(s,l){return xe(l,function(h){return Ao(s[h])})}function Xi(s,l){l=ii(l,s);for(var h=0,_=l.length;s!=null&&h<_;)s=s[lo(l[h++])];return h&&h==_?s:n}function rb(s,l,h){var _=l(s);return Ct(s)?_:Tt(_,h(s))}function kr(s){return s==null?s===n?Be:oe:Gi&&Gi in We(s)?jT(s):tC(s)}function rp(s,l){return s>l}function aT(s,l){return s!=null&&xt.call(s,l)}function lT(s,l){return s!=null&&l in We(s)}function cT(s,l,h){return s>=vr(l,h)&&s=120&&Ae.length>=120)?new zi(Y&&Ae):n}Ae=s[0];var Re=-1,Ve=ee[0];e:for(;++Re-1;)ee!==s&&Ju.call(ee,ue,1),Ju.call(s,ue,1);return s}function hb(s,l){for(var h=s?l.length:0,_=h-1;h--;){var P=l[h];if(h==_||P!==B){var B=P;Oo(P)?Ju.call(s,P,1):fp(s,P)}}return s}function cp(s,l){return s+ed(zy()*(l-s+1))}function ET(s,l,h,_){for(var P=-1,B=Qn(Qu((l-s)/(h||1)),0),Y=Z(B);B--;)Y[_?B:++P]=s,s+=h;return Y}function up(s,l){var h="";if(!s||l<1||l>we)return h;do l%2&&(h+=s),l=ed(l/2),l&&(s+=s);while(l);return h}function Bt(s,l){return Ip(Vb(s,l,Gr),s+"")}function ST(s){return qy(Ya(s))}function wT(s,l){var h=Ya(s);return yd(h,Yi(l,0,h.length))}function sc(s,l,h,_){if(!Pn(s))return s;l=ii(l,s);for(var P=-1,B=l.length,Y=B-1,ee=s;ee!=null&&++PP?0:P+l),h=h>P?P:h,h<0&&(h+=P),P=l>h?0:h-l>>>0,l>>>=0;for(var B=Z(P);++_>>1,Y=s[B];Y!==null&&!is(Y)&&(h?Y<=l:Y=i){var Oe=l?null:FT(s);if(Oe)return Eo(Oe);Y=!1,P=Vi,ue=new zi}else ue=l?[]:ee;e:for(;++_=_?s:Ss(s,l,h)}var _b=gw||function(s){return An.clearTimeout(s)};function xb(s,l){if(l)return s.slice();var h=s.length,_=jy?jy(h):new s.constructor(h);return s.copy(_),_}function mp(s){var l=new s.constructor(s.byteLength);return new Xu(l).set(new Xu(s)),l}function AT(s,l){var h=l?mp(s.buffer):s.buffer;return new s.constructor(h,s.byteOffset,s.byteLength)}function kT(s){var l=new s.constructor(s.source,wu.exec(s));return l.lastIndex=s.lastIndex,l}function PT(s){return Ql?We(Ql.call(s)):{}}function Eb(s,l){var h=l?mp(s.buffer):s.buffer;return new s.constructor(h,s.byteOffset,s.length)}function Sb(s,l){if(s!==l){var h=s!==n,_=s===null,P=s===s,B=is(s),Y=l!==n,ee=l===null,ue=l===l,Oe=is(l);if(!ee&&!Oe&&!B&&s>l||B&&Y&&ue&&!ee&&!Oe||_&&Y&&ue||!h&&ue||!P)return 1;if(!_&&!B&&!Oe&&s=ee)return ue;var Oe=h[_];return ue*(Oe=="desc"?-1:1)}}return s.index-l.index}function wb(s,l,h,_){for(var P=-1,B=s.length,Y=h.length,ee=-1,ue=l.length,Oe=Qn(B-Y,0),Ae=Z(ue+Oe),Re=!_;++ee1?h[P-1]:n,Y=P>2?h[2]:n;for(B=s.length>3&&typeof B=="function"?(P--,B):n,Y&&Pr(h[0],h[1],Y)&&(B=P<3?n:B,P=1),l=We(l);++_-1?P[B?l[Y]:Y]:n}}function kb(s){return Io(function(l){var h=l.length,_=h,P=xs.prototype.thru;for(s&&l.reverse();_--;){var B=l[_];if(typeof B!="function")throw new Ft(o);if(P&&!Y&&gd(B)=="wrapper")var Y=new xs([],!0)}for(_=Y?_:h;++_1&&en.reverse(),Ae&&ueee))return!1;var Oe=B.get(s),Ae=B.get(l);if(Oe&&Ae)return Oe==l&&Ae==s;var Re=-1,Ve=!0,tt=h&T?new zi:n;for(B.set(s,l),B.set(l,s);++Re1?"& ":"")+l[_],l=l.join(h>2?", ":" "),s.replace(Ah,`{ /* [wrapped with `+l+`] */ -`)}function YT(s){return Ct(s)||Zi(s)||!!(Gy&&s&&s[Gy])}function Oo(s,l){var h=typeof s;return l=l??we,!!l&&(h=="number"||h!="symbol"&&Na.test(s))&&s>-1&&s%1==0&&s0){if(++l>=ce)return arguments[0]}else l=0;return s.apply(n,arguments)}}function bd(s,l){var h=-1,_=s.length,P=_-1;for(l=l===n?_:l;++h1?s[l-1]:n;return h=typeof h=="function"?(s.pop(),h):n,tv(s,h)});function nv(s){var l=$(s);return l.__chain__=!0,l}function oI(s,l){return l(s),s}function vd(s,l){return l(s)}var iI=Io(function(s){var l=s.length,h=l?s[0]:0,_=this.__wrapped__,P=function(B){return ep(B,s)};return l>1||this.__actions__.length||!(_ instanceof qt)||!Oo(h)?this.thru(P):(_=_.slice(h,+h+(l?1:0)),_.__actions__.push({func:vd,args:[P],thisArg:n}),new xs(_,this.__chain__).thru(function(B){return l&&!B.length&&B.push(n),B}))});function aI(){return nv(this)}function lI(){return new xs(this.value(),this.__chain__)}function cI(){this.__values__===n&&(this.__values__=mv(this.value()));var s=this.__index__>=this.__values__.length,l=s?n:this.__values__[this.__index__++];return{done:s,value:l}}function uI(){return this}function dI(s){for(var l,h=this;h instanceof sd;){var _=Xb(h);_.__index__=0,_.__values__=n,l?P.__wrapped__=_:l=_;var P=_;h=h.__wrapped__}return P.__wrapped__=s,l}function fI(){var s=this.__wrapped__;if(s instanceof qt){var l=s;return this.__actions__.length&&(l=new qt(this)),l=l.reverse(),l.__actions__.push({func:vd,args:[Op],thisArg:n}),new xs(l,this.__chain__)}return this.thru(Op)}function hI(){return bb(this.__wrapped__,this.__actions__)}var pI=dd(function(s,l,h){xt.call(s,h)?++s[h]:To(s,h,1)});function gI(s,l,h){var _=Ct(s)?ve:oT;return h&&Pr(s,l,h)&&(l=n),_(s,ct(l,3))}function mI(s,l){var h=Ct(s)?xe:tb;return h(s,ct(l,3))}var yI=Ab(qb),bI=Ab(Jb);function vI(s,l){return dr(_d(s,l),1)}function _I(s,l){return dr(_d(s,l),Se)}function xI(s,l,h){return h=h===n?1:Nt(h),dr(_d(s,l),h)}function rv(s,l){var h=Ct(s)?z:si;return h(s,ct(l,3))}function sv(s,l){var h=Ct(s)?ie:eb;return h(s,ct(l,3))}var EI=dd(function(s,l,h){xt.call(s,h)?s[h].push(l):To(s,h,[l])});function SI(s,l,h,_){s=Vr(s)?s:Ya(s),h=h&&!_?Nt(h):0;var P=s.length;return h<0&&(h=Qn(P+h,0)),Td(s)?h<=P&&s.indexOf(l,h)>-1:!!P&&gn(s,l,h)>-1}var wI=Ut(function(s,l,h){var _=-1,P=typeof l=="function",B=Vr(s)?Z(s.length):[];return si(s,function(Y){B[++_]=P?M(l,Y,h):nc(Y,l,h)}),B}),TI=dd(function(s,l,h){To(s,h,l)});function _d(s,l){var h=Ct(s)?Ke:ab;return h(s,ct(l,3))}function CI(s,l,h,_){return s==null?[]:(Ct(l)||(l=l==null?[]:[l]),h=_?n:h,Ct(h)||(h=h==null?[]:[h]),db(s,l,h))}var II=dd(function(s,l,h){s[h?0:1].push(l)},function(){return[[],[]]});function OI(s,l,h){var _=Ct(s)?St:Ms,P=arguments.length<3;return _(s,ct(l,4),h,P,si)}function AI(s,l,h){var _=Ct(s)?qn:Ms,P=arguments.length<3;return _(s,ct(l,4),h,P,eb)}function kI(s,l){var h=Ct(s)?xe:tb;return h(s,Sd(ct(l,3)))}function PI(s){var l=Ct(s)?qy:ST;return l(s)}function NI(s,l,h){(h?Pr(s,l,h):l===n)?l=1:l=Nt(l);var _=Ct(s)?eT:wT;return _(s,l)}function LI(s){var l=Ct(s)?tT:CT;return l(s)}function RI(s){if(s==null)return 0;if(Vr(s))return Td(s)?oo(s):s.length;var l=_r(s);return l==C||l==Le?s.size:ip(s).length}function DI(s,l,h){var _=Ct(s)?kn:IT;return h&&Pr(s,l,h)&&(l=n),_(s,ct(l,3))}var MI=Ut(function(s,l){if(s==null)return[];var h=l.length;return h>1&&Pr(s,l[0],l[1])?l=[]:h>2&&Pr(l[0],l[1],l[2])&&(l=[l[0]]),db(s,dr(l,1),[])}),xd=mw||function(){return An.Date.now()};function $I(s,l){if(typeof l!="function")throw new Bt(o);return s=Nt(s),function(){if(--s<1)return l.apply(this,arguments)}}function ov(s,l,h){return l=h?n:l,l=s&&l==null?s.length:l,Co(s,m,n,n,n,n,l)}function iv(s,l){var h;if(typeof l!="function")throw new Bt(o);return s=Nt(s),function(){return--s>0&&(h=l.apply(this,arguments)),s<=1&&(l=n),h}}var kp=Ut(function(s,l,h){var _=N;if(h.length){var P=ss(h,Ka(kp));_|=U}return Co(s,_,l,h,P)}),av=Ut(function(s,l,h){var _=N|I;if(h.length){var P=ss(h,Ka(av));_|=U}return Co(l,_,s,h,P)});function lv(s,l,h){l=h?n:l;var _=Co(s,L,n,n,n,n,n,l);return _.placeholder=lv.placeholder,_}function cv(s,l,h){l=h?n:l;var _=Co(s,R,n,n,n,n,n,l);return _.placeholder=cv.placeholder,_}function uv(s,l,h){var _,P,B,Y,ee,ue,Oe=0,Ae=!1,Re=!1,Ve=!0;if(typeof s!="function")throw new Bt(o);l=Ts(l)||0,Pn(h)&&(Ae=!!h.leading,Re="maxWait"in h,B=Re?Qn(Ts(h.maxWait)||0,l):B,Ve="trailing"in h?!!h.trailing:Ve);function tt(Vn){var Hs=_,Po=P;return _=P=n,Oe=Vn,Y=s.apply(Po,Hs),Y}function ut(Vn){return Oe=Vn,ee=ac(zt,l),Ae?tt(Vn):Y}function Dt(Vn){var Hs=Vn-ue,Po=Vn-Oe,Av=l-Hs;return Re?vr(Av,B-Po):Av}function dt(Vn){var Hs=Vn-ue,Po=Vn-Oe;return ue===n||Hs>=l||Hs<0||Re&&Po>=B}function zt(){var Vn=xd();if(dt(Vn))return en(Vn);ee=ac(zt,Dt(Vn))}function en(Vn){return ee=n,Ve&&_?tt(Vn):(_=P=n,Y)}function as(){ee!==n&&_b(ee),Oe=0,_=ue=P=ee=n}function Nr(){return ee===n?Y:en(xd())}function ls(){var Vn=xd(),Hs=dt(Vn);if(_=arguments,P=this,ue=Vn,Hs){if(ee===n)return ut(ue);if(Re)return _b(ee),ee=ac(zt,l),tt(ue)}return ee===n&&(ee=ac(zt,l)),Y}return ls.cancel=as,ls.flush=Nr,ls}var FI=Ut(function(s,l){return Qy(s,1,l)}),BI=Ut(function(s,l,h){return Qy(s,Ts(l)||0,h)});function UI(s){return Co(s,F)}function Ed(s,l){if(typeof s!="function"||l!=null&&typeof l!="function")throw new Bt(o);var h=function(){var _=arguments,P=l?l.apply(this,_):_[0],B=h.cache;if(B.has(P))return B.get(P);var Y=s.apply(this,_);return h.cache=B.set(P,Y)||B,Y};return h.cache=new(Ed.Cache||wo),h}Ed.Cache=wo;function Sd(s){if(typeof s!="function")throw new Bt(o);return function(){var l=arguments;switch(l.length){case 0:return!s.call(this);case 1:return!s.call(this,l[0]);case 2:return!s.call(this,l[0],l[1]);case 3:return!s.call(this,l[0],l[1],l[2])}return!s.apply(this,l)}}function HI(s){return iv(2,s)}var jI=OT(function(s,l){l=l.length==1&&Ct(l[0])?Ke(l[0],Ir(ct())):Ke(dr(l,1),Ir(ct()));var h=l.length;return Ut(function(_){for(var P=-1,B=vr(_.length,h);++P=l}),Zi=sb(function(){return arguments}())?sb:function(s){return Rn(s)&&xt.call(s,"callee")&&!Wy.call(s,"callee")},Ct=Z.isArray,rO=u?Ir(u):dT;function Vr(s){return s!=null&&wd(s.length)&&!Ao(s)}function jn(s){return Rn(s)&&Vr(s)}function sO(s){return s===!0||s===!1||Rn(s)&&kr(s)==Qt}var li=bw||jp,oO=p?Ir(p):fT;function iO(s){return Rn(s)&&s.nodeType===1&&!lc(s)}function aO(s){if(s==null)return!0;if(Vr(s)&&(Ct(s)||typeof s=="string"||typeof s.splice=="function"||li(s)||za(s)||Zi(s)))return!s.length;var l=_r(s);if(l==C||l==Le)return!s.size;if(ic(s))return!ip(s).length;for(var h in s)if(xt.call(s,h))return!1;return!0}function lO(s,l){return rc(s,l)}function cO(s,l,h){h=typeof h=="function"?h:n;var _=h?h(s,l):n;return _===n?rc(s,l,n,h):!!_}function Np(s){if(!Rn(s))return!1;var l=kr(s);return l==yn||l==Rt||typeof s.message=="string"&&typeof s.name=="string"&&!lc(s)}function uO(s){return typeof s=="number"&&Ky(s)}function Ao(s){if(!Pn(s))return!1;var l=kr(s);return l==an||l==A||l==Lt||l==$e}function fv(s){return typeof s=="number"&&s==Nt(s)}function wd(s){return typeof s=="number"&&s>-1&&s%1==0&&s<=we}function Pn(s){var l=typeof s;return s!=null&&(l=="object"||l=="function")}function Rn(s){return s!=null&&typeof s=="object"}var hv=b?Ir(b):pT;function dO(s,l){return s===l||op(s,l,Ep(l))}function fO(s,l,h){return h=typeof h=="function"?h:n,op(s,l,Ep(l),h)}function hO(s){return pv(s)&&s!=+s}function pO(s){if(JT(s))throw new Ie(a);return ob(s)}function gO(s){return s===null}function mO(s){return s==null}function pv(s){return typeof s=="number"||Rn(s)&&kr(s)==G}function lc(s){if(!Rn(s)||kr(s)!=te)return!1;var l=Ju(s);if(l===null)return!0;var h=xt.call(l,"constructor")&&l.constructor;return typeof h=="function"&&h instanceof h&&Fs.call(h)==fw}var Lp=x?Ir(x):gT;function yO(s){return fv(s)&&s>=-we&&s<=we}var gv=O?Ir(O):mT;function Td(s){return typeof s=="string"||!Ct(s)&&Rn(s)&&kr(s)==Te}function is(s){return typeof s=="symbol"||Rn(s)&&kr(s)==Fe}var za=k?Ir(k):yT;function bO(s){return s===n}function vO(s){return Rn(s)&&_r(s)==X}function _O(s){return Rn(s)&&kr(s)==ge}var xO=gd(ap),EO=gd(function(s,l){return s<=l});function mv(s){if(!s)return[];if(Vr(s))return Td(s)?Or(s):jr(s);if(Xl&&s[Xl])return so(s[Xl]());var l=_r(s),h=l==C?Ba:l==Le?Eo:Ya;return h(s)}function ko(s){if(!s)return s===0?s:0;if(s=Ts(s),s===Se||s===-Se){var l=s<0?-1:1;return l*Qe}return s===s?s:0}function Nt(s){var l=ko(s),h=l%1;return l===l?h?l-h:l:0}function yv(s){return s?Yi(Nt(s),0,at):0}function Ts(s){if(typeof s=="number")return s;if(is(s))return ht;if(Pn(s)){var l=typeof s.valueOf=="function"?s.valueOf():s;s=Pn(l)?l+"":l}if(typeof s!="string")return s===0?s:+s;s=_s(s);var h=Cu.test(s);return h||Al.test(s)?Gh(s.slice(2),h?2:8):qo.test(s)?ht:+s}function bv(s){return ao(s,Wr(s))}function SO(s){return s?Yi(Nt(s),-we,we):s===0?s:0}function hn(s){return s==null?"":os(s)}var wO=Wa(function(s,l){if(ic(l)||Vr(l)){ao(l,lr(l),s);return}for(var h in l)xt.call(l,h)&&ec(s,h,l[h])}),vv=Wa(function(s,l){ao(l,Wr(l),s)}),Cd=Wa(function(s,l,h,_){ao(l,Wr(l),s,_)}),TO=Wa(function(s,l,h,_){ao(l,lr(l),s,_)}),CO=Io(ep);function IO(s,l){var h=Va(s);return l==null?h:Jy(h,l)}var OO=Ut(function(s,l){s=We(s);var h=-1,_=l.length,P=_>2?l[2]:n;for(P&&Pr(l[0],l[1],P)&&(_=1);++h<_;)for(var B=l[h],Y=Wr(B),ee=-1,ue=Y.length;++ee1),B}),ao(s,_p(s),h),_&&(h=Es(h,g|v|S,BT));for(var P=l.length;P--;)fp(h,l[P]);return h});function KO(s,l){return xv(s,Sd(ct(l)))}var zO=Io(function(s,l){return s==null?{}:_T(s,l)});function xv(s,l){if(s==null)return{};var h=Ke(_p(s),function(_){return[_]});return l=ct(l),fb(s,h,function(_,P){return l(_,P[0])})}function YO(s,l,h){l=ii(l,s);var _=-1,P=l.length;for(P||(P=1,s=n);++_l){var _=s;s=l,l=_}if(h||s%1||l%1){var P=zy();return vr(s+P*(l-s+Vl("1e-"+((P+"").length-1))),l)}return cp(s,l)}var oA=Ga(function(s,l,h){return l=l.toLowerCase(),s+(h?wv(l):l)});function wv(s){return Mp(hn(s).toLowerCase())}function Tv(s){return s=hn(s),s&&s.replace(Iu,ti).replace(Bh,"")}function iA(s,l,h){s=hn(s),l=os(l);var _=s.length;h=h===n?_:Yi(Nt(h),0,_);var P=h;return h-=l.length,h>=0&&s.slice(h,P)==l}function aA(s){return s=hn(s),s&&Yo.test(s)?s.replace(It,zh):s}function lA(s){return s=hn(s),s&&Xo.test(s)?s.replace(Qs,"\\$&"):s}var cA=Ga(function(s,l,h){return s+(h?"-":"")+l.toLowerCase()}),uA=Ga(function(s,l,h){return s+(h?" ":"")+l.toLowerCase()}),dA=Ob("toLowerCase");function fA(s,l,h){s=hn(s),l=Nt(l);var _=l?oo(s):0;if(!l||_>=l)return s;var P=(l-_)/2;return pd(td(P),h)+s+pd(ed(P),h)}function hA(s,l,h){s=hn(s),l=Nt(l);var _=l?oo(s):0;return l&&_>>0,h?(s=hn(s),s&&(typeof l=="string"||l!=null&&!Lp(l))&&(l=os(l),!l&&Hr(s))?ai(Or(s),0,h):s.split(l,h)):[]}var _A=Ga(function(s,l,h){return s+(h?" ":"")+Mp(l)});function xA(s,l,h){return s=hn(s),h=h==null?0:Yi(Nt(h),0,s.length),l=os(l),s.slice(h,h+l.length)==l}function EA(s,l,h){var _=$.templateSettings;h&&Pr(s,l,h)&&(l=n),s=hn(s),l=Cd({},l,_,Db);var P=Cd({},l.imports,_.imports,Db),B=lr(P),Y=Gl(P,B),ee,ue,Oe=0,Ae=l.interpolate||La,Re="__p += '",Ve=Pt((l.escape||La).source+"|"+Ae.source+"|"+(Ae===ka?wu:La).source+"|"+(l.evaluate||La).source+"|$","g"),tt="//# sourceURL="+(xt.call(l,"sourceURL")?(l.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Wh+"]")+` +`)}function YT(s){return Ct(s)||Zi(s)||!!(Gy&&s&&s[Gy])}function Oo(s,l){var h=typeof s;return l=l??we,!!l&&(h=="number"||h!="symbol"&&Na.test(s))&&s>-1&&s%1==0&&s0){if(++l>=ce)return arguments[0]}else l=0;return s.apply(n,arguments)}}function yd(s,l){var h=-1,_=s.length,P=_-1;for(l=l===n?_:l;++h1?s[l-1]:n;return h=typeof h=="function"?(s.pop(),h):n,tv(s,h)});function nv(s){var l=$(s);return l.__chain__=!0,l}function oI(s,l){return l(s),s}function bd(s,l){return l(s)}var iI=Io(function(s){var l=s.length,h=l?s[0]:0,_=this.__wrapped__,P=function(B){return ep(B,s)};return l>1||this.__actions__.length||!(_ instanceof qt)||!Oo(h)?this.thru(P):(_=_.slice(h,+h+(l?1:0)),_.__actions__.push({func:bd,args:[P],thisArg:n}),new xs(_,this.__chain__).thru(function(B){return l&&!B.length&&B.push(n),B}))});function aI(){return nv(this)}function lI(){return new xs(this.value(),this.__chain__)}function cI(){this.__values__===n&&(this.__values__=mv(this.value()));var s=this.__index__>=this.__values__.length,l=s?n:this.__values__[this.__index__++];return{done:s,value:l}}function uI(){return this}function dI(s){for(var l,h=this;h instanceof rd;){var _=Xb(h);_.__index__=0,_.__values__=n,l?P.__wrapped__=_:l=_;var P=_;h=h.__wrapped__}return P.__wrapped__=s,l}function fI(){var s=this.__wrapped__;if(s instanceof qt){var l=s;return this.__actions__.length&&(l=new qt(this)),l=l.reverse(),l.__actions__.push({func:bd,args:[Op],thisArg:n}),new xs(l,this.__chain__)}return this.thru(Op)}function hI(){return bb(this.__wrapped__,this.__actions__)}var pI=ud(function(s,l,h){xt.call(s,h)?++s[h]:To(s,h,1)});function gI(s,l,h){var _=Ct(s)?ve:oT;return h&&Pr(s,l,h)&&(l=n),_(s,ct(l,3))}function mI(s,l){var h=Ct(s)?xe:tb;return h(s,ct(l,3))}var yI=Ab(qb),bI=Ab(Jb);function vI(s,l){return dr(vd(s,l),1)}function _I(s,l){return dr(vd(s,l),Se)}function xI(s,l,h){return h=h===n?1:Nt(h),dr(vd(s,l),h)}function rv(s,l){var h=Ct(s)?z:si;return h(s,ct(l,3))}function sv(s,l){var h=Ct(s)?ie:eb;return h(s,ct(l,3))}var EI=ud(function(s,l,h){xt.call(s,h)?s[h].push(l):To(s,h,[l])});function SI(s,l,h,_){s=Vr(s)?s:Ya(s),h=h&&!_?Nt(h):0;var P=s.length;return h<0&&(h=Qn(P+h,0)),wd(s)?h<=P&&s.indexOf(l,h)>-1:!!P&&gn(s,l,h)>-1}var wI=Bt(function(s,l,h){var _=-1,P=typeof l=="function",B=Vr(s)?Z(s.length):[];return si(s,function(Y){B[++_]=P?M(l,Y,h):nc(Y,l,h)}),B}),TI=ud(function(s,l,h){To(s,h,l)});function vd(s,l){var h=Ct(s)?Ke:ab;return h(s,ct(l,3))}function CI(s,l,h,_){return s==null?[]:(Ct(l)||(l=l==null?[]:[l]),h=_?n:h,Ct(h)||(h=h==null?[]:[h]),db(s,l,h))}var II=ud(function(s,l,h){s[h?0:1].push(l)},function(){return[[],[]]});function OI(s,l,h){var _=Ct(s)?St:Ms,P=arguments.length<3;return _(s,ct(l,4),h,P,si)}function AI(s,l,h){var _=Ct(s)?qn:Ms,P=arguments.length<3;return _(s,ct(l,4),h,P,eb)}function kI(s,l){var h=Ct(s)?xe:tb;return h(s,Ed(ct(l,3)))}function PI(s){var l=Ct(s)?qy:ST;return l(s)}function NI(s,l,h){(h?Pr(s,l,h):l===n)?l=1:l=Nt(l);var _=Ct(s)?eT:wT;return _(s,l)}function LI(s){var l=Ct(s)?tT:CT;return l(s)}function RI(s){if(s==null)return 0;if(Vr(s))return wd(s)?oo(s):s.length;var l=_r(s);return l==C||l==Le?s.size:ip(s).length}function DI(s,l,h){var _=Ct(s)?kn:IT;return h&&Pr(s,l,h)&&(l=n),_(s,ct(l,3))}var MI=Bt(function(s,l){if(s==null)return[];var h=l.length;return h>1&&Pr(s,l[0],l[1])?l=[]:h>2&&Pr(l[0],l[1],l[2])&&(l=[l[0]]),db(s,dr(l,1),[])}),_d=mw||function(){return An.Date.now()};function $I(s,l){if(typeof l!="function")throw new Ft(o);return s=Nt(s),function(){if(--s<1)return l.apply(this,arguments)}}function ov(s,l,h){return l=h?n:l,l=s&&l==null?s.length:l,Co(s,m,n,n,n,n,l)}function iv(s,l){var h;if(typeof l!="function")throw new Ft(o);return s=Nt(s),function(){return--s>0&&(h=l.apply(this,arguments)),s<=1&&(l=n),h}}var kp=Bt(function(s,l,h){var _=N;if(h.length){var P=ss(h,Ka(kp));_|=U}return Co(s,_,l,h,P)}),av=Bt(function(s,l,h){var _=N|I;if(h.length){var P=ss(h,Ka(av));_|=U}return Co(l,_,s,h,P)});function lv(s,l,h){l=h?n:l;var _=Co(s,L,n,n,n,n,n,l);return _.placeholder=lv.placeholder,_}function cv(s,l,h){l=h?n:l;var _=Co(s,R,n,n,n,n,n,l);return _.placeholder=cv.placeholder,_}function uv(s,l,h){var _,P,B,Y,ee,ue,Oe=0,Ae=!1,Re=!1,Ve=!0;if(typeof s!="function")throw new Ft(o);l=Ts(l)||0,Pn(h)&&(Ae=!!h.leading,Re="maxWait"in h,B=Re?Qn(Ts(h.maxWait)||0,l):B,Ve="trailing"in h?!!h.trailing:Ve);function tt(Vn){var Hs=_,Po=P;return _=P=n,Oe=Vn,Y=s.apply(Po,Hs),Y}function ut(Vn){return Oe=Vn,ee=ac(zt,l),Ae?tt(Vn):Y}function Dt(Vn){var Hs=Vn-ue,Po=Vn-Oe,Av=l-Hs;return Re?vr(Av,B-Po):Av}function dt(Vn){var Hs=Vn-ue,Po=Vn-Oe;return ue===n||Hs>=l||Hs<0||Re&&Po>=B}function zt(){var Vn=_d();if(dt(Vn))return en(Vn);ee=ac(zt,Dt(Vn))}function en(Vn){return ee=n,Ve&&_?tt(Vn):(_=P=n,Y)}function as(){ee!==n&&_b(ee),Oe=0,_=ue=P=ee=n}function Nr(){return ee===n?Y:en(_d())}function ls(){var Vn=_d(),Hs=dt(Vn);if(_=arguments,P=this,ue=Vn,Hs){if(ee===n)return ut(ue);if(Re)return _b(ee),ee=ac(zt,l),tt(ue)}return ee===n&&(ee=ac(zt,l)),Y}return ls.cancel=as,ls.flush=Nr,ls}var FI=Bt(function(s,l){return Qy(s,1,l)}),BI=Bt(function(s,l,h){return Qy(s,Ts(l)||0,h)});function UI(s){return Co(s,F)}function xd(s,l){if(typeof s!="function"||l!=null&&typeof l!="function")throw new Ft(o);var h=function(){var _=arguments,P=l?l.apply(this,_):_[0],B=h.cache;if(B.has(P))return B.get(P);var Y=s.apply(this,_);return h.cache=B.set(P,Y)||B,Y};return h.cache=new(xd.Cache||wo),h}xd.Cache=wo;function Ed(s){if(typeof s!="function")throw new Ft(o);return function(){var l=arguments;switch(l.length){case 0:return!s.call(this);case 1:return!s.call(this,l[0]);case 2:return!s.call(this,l[0],l[1]);case 3:return!s.call(this,l[0],l[1],l[2])}return!s.apply(this,l)}}function HI(s){return iv(2,s)}var jI=OT(function(s,l){l=l.length==1&&Ct(l[0])?Ke(l[0],Ir(ct())):Ke(dr(l,1),Ir(ct()));var h=l.length;return Bt(function(_){for(var P=-1,B=vr(_.length,h);++P=l}),Zi=sb(function(){return arguments}())?sb:function(s){return Rn(s)&&xt.call(s,"callee")&&!Wy.call(s,"callee")},Ct=Z.isArray,rO=u?Ir(u):dT;function Vr(s){return s!=null&&Sd(s.length)&&!Ao(s)}function jn(s){return Rn(s)&&Vr(s)}function sO(s){return s===!0||s===!1||Rn(s)&&kr(s)==Qt}var li=bw||jp,oO=p?Ir(p):fT;function iO(s){return Rn(s)&&s.nodeType===1&&!lc(s)}function aO(s){if(s==null)return!0;if(Vr(s)&&(Ct(s)||typeof s=="string"||typeof s.splice=="function"||li(s)||za(s)||Zi(s)))return!s.length;var l=_r(s);if(l==C||l==Le)return!s.size;if(ic(s))return!ip(s).length;for(var h in s)if(xt.call(s,h))return!1;return!0}function lO(s,l){return rc(s,l)}function cO(s,l,h){h=typeof h=="function"?h:n;var _=h?h(s,l):n;return _===n?rc(s,l,n,h):!!_}function Np(s){if(!Rn(s))return!1;var l=kr(s);return l==yn||l==Rt||typeof s.message=="string"&&typeof s.name=="string"&&!lc(s)}function uO(s){return typeof s=="number"&&Ky(s)}function Ao(s){if(!Pn(s))return!1;var l=kr(s);return l==an||l==A||l==Lt||l==$e}function fv(s){return typeof s=="number"&&s==Nt(s)}function Sd(s){return typeof s=="number"&&s>-1&&s%1==0&&s<=we}function Pn(s){var l=typeof s;return s!=null&&(l=="object"||l=="function")}function Rn(s){return s!=null&&typeof s=="object"}var hv=b?Ir(b):pT;function dO(s,l){return s===l||op(s,l,Ep(l))}function fO(s,l,h){return h=typeof h=="function"?h:n,op(s,l,Ep(l),h)}function hO(s){return pv(s)&&s!=+s}function pO(s){if(JT(s))throw new Ie(a);return ob(s)}function gO(s){return s===null}function mO(s){return s==null}function pv(s){return typeof s=="number"||Rn(s)&&kr(s)==G}function lc(s){if(!Rn(s)||kr(s)!=te)return!1;var l=qu(s);if(l===null)return!0;var h=xt.call(l,"constructor")&&l.constructor;return typeof h=="function"&&h instanceof h&&Fs.call(h)==fw}var Lp=x?Ir(x):gT;function yO(s){return fv(s)&&s>=-we&&s<=we}var gv=O?Ir(O):mT;function wd(s){return typeof s=="string"||!Ct(s)&&Rn(s)&&kr(s)==Te}function is(s){return typeof s=="symbol"||Rn(s)&&kr(s)==Fe}var za=k?Ir(k):yT;function bO(s){return s===n}function vO(s){return Rn(s)&&_r(s)==X}function _O(s){return Rn(s)&&kr(s)==ge}var xO=pd(ap),EO=pd(function(s,l){return s<=l});function mv(s){if(!s)return[];if(Vr(s))return wd(s)?Or(s):jr(s);if(Xl&&s[Xl])return so(s[Xl]());var l=_r(s),h=l==C?Ba:l==Le?Eo:Ya;return h(s)}function ko(s){if(!s)return s===0?s:0;if(s=Ts(s),s===Se||s===-Se){var l=s<0?-1:1;return l*Qe}return s===s?s:0}function Nt(s){var l=ko(s),h=l%1;return l===l?h?l-h:l:0}function yv(s){return s?Yi(Nt(s),0,at):0}function Ts(s){if(typeof s=="number")return s;if(is(s))return ht;if(Pn(s)){var l=typeof s.valueOf=="function"?s.valueOf():s;s=Pn(l)?l+"":l}if(typeof s!="string")return s===0?s:+s;s=_s(s);var h=Tu.test(s);return h||Al.test(s)?Gh(s.slice(2),h?2:8):qo.test(s)?ht:+s}function bv(s){return ao(s,Wr(s))}function SO(s){return s?Yi(Nt(s),-we,we):s===0?s:0}function hn(s){return s==null?"":os(s)}var wO=Wa(function(s,l){if(ic(l)||Vr(l)){ao(l,lr(l),s);return}for(var h in l)xt.call(l,h)&&ec(s,h,l[h])}),vv=Wa(function(s,l){ao(l,Wr(l),s)}),Td=Wa(function(s,l,h,_){ao(l,Wr(l),s,_)}),TO=Wa(function(s,l,h,_){ao(l,lr(l),s,_)}),CO=Io(ep);function IO(s,l){var h=Va(s);return l==null?h:Jy(h,l)}var OO=Bt(function(s,l){s=We(s);var h=-1,_=l.length,P=_>2?l[2]:n;for(P&&Pr(l[0],l[1],P)&&(_=1);++h<_;)for(var B=l[h],Y=Wr(B),ee=-1,ue=Y.length;++ee1),B}),ao(s,_p(s),h),_&&(h=Es(h,g|v|S,BT));for(var P=l.length;P--;)fp(h,l[P]);return h});function KO(s,l){return xv(s,Ed(ct(l)))}var zO=Io(function(s,l){return s==null?{}:_T(s,l)});function xv(s,l){if(s==null)return{};var h=Ke(_p(s),function(_){return[_]});return l=ct(l),fb(s,h,function(_,P){return l(_,P[0])})}function YO(s,l,h){l=ii(l,s);var _=-1,P=l.length;for(P||(P=1,s=n);++_l){var _=s;s=l,l=_}if(h||s%1||l%1){var P=zy();return vr(s+P*(l-s+Vl("1e-"+((P+"").length-1))),l)}return cp(s,l)}var oA=Ga(function(s,l,h){return l=l.toLowerCase(),s+(h?wv(l):l)});function wv(s){return Mp(hn(s).toLowerCase())}function Tv(s){return s=hn(s),s&&s.replace(Cu,ti).replace(Bh,"")}function iA(s,l,h){s=hn(s),l=os(l);var _=s.length;h=h===n?_:Yi(Nt(h),0,_);var P=h;return h-=l.length,h>=0&&s.slice(h,P)==l}function aA(s){return s=hn(s),s&&Yo.test(s)?s.replace(It,zh):s}function lA(s){return s=hn(s),s&&Xo.test(s)?s.replace(Qs,"\\$&"):s}var cA=Ga(function(s,l,h){return s+(h?"-":"")+l.toLowerCase()}),uA=Ga(function(s,l,h){return s+(h?" ":"")+l.toLowerCase()}),dA=Ob("toLowerCase");function fA(s,l,h){s=hn(s),l=Nt(l);var _=l?oo(s):0;if(!l||_>=l)return s;var P=(l-_)/2;return hd(ed(P),h)+s+hd(Qu(P),h)}function hA(s,l,h){s=hn(s),l=Nt(l);var _=l?oo(s):0;return l&&_>>0,h?(s=hn(s),s&&(typeof l=="string"||l!=null&&!Lp(l))&&(l=os(l),!l&&Hr(s))?ai(Or(s),0,h):s.split(l,h)):[]}var _A=Ga(function(s,l,h){return s+(h?" ":"")+Mp(l)});function xA(s,l,h){return s=hn(s),h=h==null?0:Yi(Nt(h),0,s.length),l=os(l),s.slice(h,h+l.length)==l}function EA(s,l,h){var _=$.templateSettings;h&&Pr(s,l,h)&&(l=n),s=hn(s),l=Td({},l,_,Db);var P=Td({},l.imports,_.imports,Db),B=lr(P),Y=Gl(P,B),ee,ue,Oe=0,Ae=l.interpolate||La,Re="__p += '",Ve=Pt((l.escape||La).source+"|"+Ae.source+"|"+(Ae===ka?Su:La).source+"|"+(l.evaluate||La).source+"|$","g"),tt="//# sourceURL="+(xt.call(l,"sourceURL")?(l.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Wh+"]")+` `;s.replace(Ve,function(dt,zt,en,as,Nr,ls){return en||(en=as),Re+=s.slice(Oe,ls).replace(Bi,Yh),zt&&(ee=!0,Re+=`' + __e(`+zt+`) + '`),Nr&&(ue=!0,Re+=`'; @@ -18,77 +18,77 @@ __p += '`),en&&(Re+=`' + `;var ut=xt.call(l,"variable")&&l.variable;if(!ut)Re=`with (obj) { `+Re+` } -`;else if(Nh.test(ut))throw new Ie(c);Re=(ue?Re.replace(st,""):Re).replace(Ze,"$1").replace(ot,"$1;"),Re="function("+(ut||"obj")+`) { +`;else if(Nh.test(ut))throw new Ie(c);Re=(ue?Re.replace(rt,""):Re).replace(Ze,"$1").replace(st,"$1;"),Re="function("+(ut||"obj")+`) { `+(ut?"":`obj || (obj = {}); `)+"var __t, __p = ''"+(ee?", __e = _.escape":"")+(ue?`, __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } `:`; `)+Re+`return __p -}`;var Dt=Iv(function(){return ze(B,tt+"return "+Re).apply(n,Y)});if(Dt.source=Re,Np(Dt))throw Dt;return Dt}function SA(s){return hn(s).toLowerCase()}function wA(s){return hn(s).toUpperCase()}function TA(s,l,h){if(s=hn(s),s&&(h||l===n))return _s(s);if(!s||!(l=os(l)))return s;var _=Or(s),P=Or(l),B=ln(_,P),Y=Wi(_,P)+1;return ai(_,B,Y).join("")}function CA(s,l,h){if(s=hn(s),s&&(h||l===n))return s.slice(0,Ku(s)+1);if(!s||!(l=os(l)))return s;var _=Or(s),P=Wi(_,Or(l))+1;return ai(_,0,P).join("")}function IA(s,l,h){if(s=hn(s),s&&(h||l===n))return s.replace(Fi,"");if(!s||!(l=os(l)))return s;var _=Or(s),P=ln(_,Or(l));return ai(_,P).join("")}function OA(s,l){var h=V,_=re;if(Pn(l)){var P="separator"in l?l.separator:P;h="length"in l?Nt(l.length):h,_="omission"in l?os(l.omission):_}s=hn(s);var B=s.length;if(Hr(s)){var Y=Or(s);B=Y.length}if(h>=B)return s;var ee=h-oo(_);if(ee<1)return _;var ue=Y?ai(Y,0,ee).join(""):s.slice(0,ee);if(P===n)return ue+_;if(Y&&(ee+=ue.length-ee),Lp(P)){if(s.slice(ee).search(P)){var Oe,Ae=ue;for(P.global||(P=Pt(P.source,hn(Tu.exec(P))+"g")),P.lastIndex=0;Oe=P.exec(Ae);)var Re=Oe.index;ue=ue.slice(0,Re===n?ee:Re)}}else if(s.indexOf(os(P),ee)!=ee){var Ve=ue.lastIndexOf(P);Ve>-1&&(ue=ue.slice(0,Ve))}return ue+_}function AA(s){return s=hn(s),s&&Xn.test(s)?s.replace(_t,Yl):s}var kA=Ga(function(s,l,h){return s+(h?" ":"")+l.toUpperCase()}),Mp=Ob("toUpperCase");function Cv(s,l,h){return s=hn(s),l=h?n:l,l===n?Kl(s)?ne(s):Ht(s):s.match(l)||[]}var Iv=Ut(function(s,l){try{return M(s,n,l)}catch(h){return Np(h)?h:new Ie(h)}}),PA=Io(function(s,l){return z(l,function(h){h=lo(h),To(s,h,kp(s[h],s))}),s});function NA(s){var l=s==null?0:s.length,h=ct();return s=l?Ke(s,function(_){if(typeof _[1]!="function")throw new Bt(o);return[h(_[0]),_[1]]}):[],Ut(function(_){for(var P=-1;++Pwe)return[];var h=at,_=vr(s,at);l=ct(l),s-=at;for(var P=ji(_,l);++h0||l<0)?new qt(h):(s<0?h=h.takeRight(-s):s&&(h=h.drop(s)),l!==n&&(l=Nt(l),h=l<0?h.dropRight(-l):h.take(l-s)),h)},qt.prototype.takeRightWhile=function(s){return this.reverse().takeWhile(s).reverse()},qt.prototype.toArray=function(){return this.take(at)},io(qt.prototype,function(s,l){var h=/^(?:filter|find|map|reject)|While$/.test(l),_=/^(?:head|last)$/.test(l),P=$[_?"take"+(l=="last"?"Right":""):l],B=_||/^find/.test(l);P&&($.prototype[l]=function(){var Y=this.__wrapped__,ee=_?[1]:arguments,ue=Y instanceof qt,Oe=ee[0],Ae=ue||Ct(Y),Re=function(zt){var en=P.apply($,Tt([zt],ee));return _&&Ve?en[0]:en};Ae&&h&&typeof Oe=="function"&&Oe.length!=1&&(ue=Ae=!1);var Ve=this.__chain__,tt=!!this.__actions__.length,ut=B&&!Ve,Dt=ue&&!tt;if(!B&&Ae){Y=Dt?Y:new qt(this);var dt=s.apply(Y,ee);return dt.__actions__.push({func:vd,args:[Re],thisArg:n}),new xs(dt,Ve)}return ut&&Dt?s.apply(this,ee):(dt=this.thru(Re),ut?_?dt.value()[0]:dt.value():dt)})}),z(["pop","push","shift","sort","splice","unshift"],function(s){var l=Jn[s],h=/^(?:push|sort|unshift)$/.test(s)?"tap":"thru",_=/^(?:pop|shift)$/.test(s);$.prototype[s]=function(){var P=arguments;if(_&&!this.__chain__){var B=this.value();return l.apply(Ct(B)?B:[],P)}return this[h](function(Y){return l.apply(Ct(Y)?Y:[],P)})}}),io(qt.prototype,function(s,l){var h=$[l];if(h){var _=h.name+"";xt.call(ja,_)||(ja[_]=[]),ja[_].push({name:l,func:h})}}),ja[fd(n,I).name]=[{name:"wrapper",func:n}],qt.prototype.clone=Aw,qt.prototype.reverse=kw,qt.prototype.value=Pw,$.prototype.at=iI,$.prototype.chain=aI,$.prototype.commit=lI,$.prototype.next=cI,$.prototype.plant=dI,$.prototype.reverse=fI,$.prototype.toJSON=$.prototype.valueOf=$.prototype.value=hI,$.prototype.first=$.prototype.head,Xl&&($.prototype[Xl]=uI),$},me=de();Ds?((Ds.exports=me)._=me,$a._=me):An._=me}).call(ia)})(gf,gf.exports);var bk=gf.exports;const vk=Wf(bk);function G0(e,t){return function(){return e.apply(t,arguments)}}const{toString:_k}=Object.prototype,{getPrototypeOf:hm}=Object,Gf=(e=>t=>{const n=_k.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),bo=e=>(e=e.toLowerCase(),t=>Gf(t)===e),Kf=e=>t=>typeof t===e,{isArray:El}=Array,Lc=Kf("undefined");function xk(e){return e!==null&&!Lc(e)&&e.constructor!==null&&!Lc(e.constructor)&&Ps(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const K0=bo("ArrayBuffer");function Ek(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&K0(e.buffer),t}const Sk=Kf("string"),Ps=Kf("function"),z0=Kf("number"),zf=e=>e!==null&&typeof e=="object",wk=e=>e===!0||e===!1,Jd=e=>{if(Gf(e)!=="object")return!1;const t=hm(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Tk=bo("Date"),Ck=bo("File"),Ik=bo("Blob"),Ok=bo("FileList"),Ak=e=>zf(e)&&Ps(e.pipe),kk=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Ps(e.append)&&((t=Gf(e))==="formdata"||t==="object"&&Ps(e.toString)&&e.toString()==="[object FormData]"))},Pk=bo("URLSearchParams"),Nk=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Zc(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,i;if(typeof e!="object"&&(e=[e]),El(e))for(r=0,i=e.length;r0;)if(i=n[r],t===i.toLowerCase())return i;return null}const X0=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,q0=e=>!Lc(e)&&e!==X0;function _g(){const{caseless:e}=q0(this)&&this||{},t={},n=(r,i)=>{const a=e&&Y0(t,i)||i;Jd(t[a])&&Jd(r)?t[a]=_g(t[a],r):Jd(r)?t[a]=_g({},r):El(r)?t[a]=r.slice():t[a]=r};for(let r=0,i=arguments.length;r(Zc(t,(i,a)=>{n&&Ps(i)?e[a]=G0(i,n):e[a]=i},{allOwnKeys:r}),e),Rk=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Dk=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Mk=(e,t,n,r)=>{let i,a,o;const c={};if(t=t||{},e==null)return t;do{for(i=Object.getOwnPropertyNames(e),a=i.length;a-- >0;)o=i[a],(!r||r(o,e,t))&&!c[o]&&(t[o]=e[o],c[o]=!0);e=n!==!1&&hm(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},$k=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Fk=e=>{if(!e)return null;if(El(e))return e;let t=e.length;if(!z0(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Bk=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&hm(Uint8Array)),Uk=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let i;for(;(i=r.next())&&!i.done;){const a=i.value;t.call(e,a[0],a[1])}},Hk=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},jk=bo("HTMLFormElement"),Vk=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,i){return r.toUpperCase()+i}),Pv=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Wk=bo("RegExp"),J0=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Zc(n,(i,a)=>{let o;(o=t(i,a,e))!==!1&&(r[a]=o||i)}),Object.defineProperties(e,r)},Gk=e=>{J0(e,(t,n)=>{if(Ps(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Ps(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Kk=(e,t)=>{const n={},r=i=>{i.forEach(a=>{n[a]=!0})};return El(e)?r(e):r(String(e).split(t)),n},zk=()=>{},Yk=(e,t)=>(e=+e,Number.isFinite(e)?e:t),Vp="abcdefghijklmnopqrstuvwxyz",Nv="0123456789",Z0={DIGIT:Nv,ALPHA:Vp,ALPHA_DIGIT:Vp+Vp.toUpperCase()+Nv},Xk=(e=16,t=Z0.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function qk(e){return!!(e&&Ps(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Jk=e=>{const t=new Array(10),n=(r,i)=>{if(zf(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[i]=r;const a=El(r)?[]:{};return Zc(r,(o,c)=>{const d=n(o,i+1);!Lc(d)&&(a[c]=d)}),t[i]=void 0,a}}return r};return n(e,0)},Zk=bo("AsyncFunction"),Qk=e=>e&&(zf(e)||Ps(e))&&Ps(e.then)&&Ps(e.catch),ke={isArray:El,isArrayBuffer:K0,isBuffer:xk,isFormData:kk,isArrayBufferView:Ek,isString:Sk,isNumber:z0,isBoolean:wk,isObject:zf,isPlainObject:Jd,isUndefined:Lc,isDate:Tk,isFile:Ck,isBlob:Ik,isRegExp:Wk,isFunction:Ps,isStream:Ak,isURLSearchParams:Pk,isTypedArray:Bk,isFileList:Ok,forEach:Zc,merge:_g,extend:Lk,trim:Nk,stripBOM:Rk,inherits:Dk,toFlatObject:Mk,kindOf:Gf,kindOfTest:bo,endsWith:$k,toArray:Fk,forEachEntry:Uk,matchAll:Hk,isHTMLForm:jk,hasOwnProperty:Pv,hasOwnProp:Pv,reduceDescriptors:J0,freezeMethods:Gk,toObjectSet:Kk,toCamelCase:Vk,noop:zk,toFiniteNumber:Yk,findKey:Y0,global:X0,isContextDefined:q0,ALPHABET:Z0,generateString:Xk,isSpecCompliantForm:qk,toJSONObject:Jk,isAsyncFn:Zk,isThenable:Qk};function rn(e,t,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i)}ke.inherits(rn,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:ke.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Q0=rn.prototype,e1={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{e1[e]={value:e}});Object.defineProperties(rn,e1);Object.defineProperty(Q0,"isAxiosError",{value:!0});rn.from=(e,t,n,r,i,a)=>{const o=Object.create(Q0);return ke.toFlatObject(e,o,function(d){return d!==Error.prototype},c=>c!=="isAxiosError"),rn.call(o,e.message,t,n,r,i),o.cause=e,o.name=e.name,a&&Object.assign(o,a),o};const eP=null;function xg(e){return ke.isPlainObject(e)||ke.isArray(e)}function t1(e){return ke.endsWith(e,"[]")?e.slice(0,-2):e}function Lv(e,t,n){return e?e.concat(t).map(function(i,a){return i=t1(i),!n&&a?"["+i+"]":i}).join(n?".":""):t}function tP(e){return ke.isArray(e)&&!e.some(xg)}const nP=ke.toFlatObject(ke,{},null,function(t){return/^is[A-Z]/.test(t)});function Yf(e,t,n){if(!ke.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=ke.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(T,N){return!ke.isUndefined(N[T])});const r=n.metaTokens,i=n.visitor||y,a=n.dots,o=n.indexes,d=(n.Blob||typeof Blob<"u"&&Blob)&&ke.isSpecCompliantForm(t);if(!ke.isFunction(i))throw new TypeError("visitor must be a function");function f(E){if(E===null)return"";if(ke.isDate(E))return E.toISOString();if(!d&&ke.isBlob(E))throw new rn("Blob is not supported. Use a Buffer instead.");return ke.isArrayBuffer(E)||ke.isTypedArray(E)?d&&typeof Blob=="function"?new Blob([E]):Buffer.from(E):E}function y(E,T,N){let I=E;if(E&&!N&&typeof E=="object"){if(ke.endsWith(T,"{}"))T=r?T:T.slice(0,-2),E=JSON.stringify(E);else if(ke.isArray(E)&&tP(E)||(ke.isFileList(E)||ke.endsWith(T,"[]"))&&(I=ke.toArray(E)))return T=t1(T),I.forEach(function(L,R){!(ke.isUndefined(L)||L===null)&&t.append(o===!0?Lv([T],R,a):o===null?T:T+"[]",f(L))}),!1}return xg(E)?!0:(t.append(Lv(N,T,a),f(E)),!1)}const g=[],v=Object.assign(nP,{defaultVisitor:y,convertValue:f,isVisitable:xg});function S(E,T){if(!ke.isUndefined(E)){if(g.indexOf(E)!==-1)throw Error("Circular reference detected in "+T.join("."));g.push(E),ke.forEach(E,function(I,D){(!(ke.isUndefined(I)||I===null)&&i.call(t,I,ke.isString(D)?D.trim():D,T,v))===!0&&S(I,T?T.concat(D):[D])}),g.pop()}}if(!ke.isObject(e))throw new TypeError("data must be an object");return S(e),t}function Rv(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function pm(e,t){this._pairs=[],e&&Yf(e,this,t)}const n1=pm.prototype;n1.append=function(t,n){this._pairs.push([t,n])};n1.toString=function(t){const n=t?function(r){return t.call(this,r,Rv)}:Rv;return this._pairs.map(function(i){return n(i[0])+"="+n(i[1])},"").join("&")};function rP(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function r1(e,t,n){if(!t)return e;const r=n&&n.encode||rP,i=n&&n.serialize;let a;if(i?a=i(t,n):a=ke.isURLSearchParams(t)?t.toString():new pm(t,n).toString(r),a){const o=e.indexOf("#");o!==-1&&(e=e.slice(0,o)),e+=(e.indexOf("?")===-1?"?":"&")+a}return e}class Dv{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){ke.forEach(this.handlers,function(r){r!==null&&t(r)})}}const s1={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},sP=typeof URLSearchParams<"u"?URLSearchParams:pm,oP=typeof FormData<"u"?FormData:null,iP=typeof Blob<"u"?Blob:null,aP={isBrowser:!0,classes:{URLSearchParams:sP,FormData:oP,Blob:iP},protocols:["http","https","file","blob","url","data"]},o1=typeof window<"u"&&typeof document<"u",lP=(e=>o1&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),cP=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",uP=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:o1,hasStandardBrowserEnv:lP,hasStandardBrowserWebWorkerEnv:cP},Symbol.toStringTag,{value:"Module"})),ho={...uP,...aP};function dP(e,t){return Yf(e,new ho.classes.URLSearchParams,Object.assign({visitor:function(n,r,i,a){return ho.isNode&&ke.isBuffer(n)?(this.append(r,n.toString("base64")),!1):a.defaultVisitor.apply(this,arguments)}},t))}function fP(e){return ke.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function hP(e){const t={},n=Object.keys(e);let r;const i=n.length;let a;for(r=0;r=n.length;return o=!o&&ke.isArray(i)?i.length:o,d?(ke.hasOwnProp(i,o)?i[o]=[i[o],r]:i[o]=r,!c):((!i[o]||!ke.isObject(i[o]))&&(i[o]=[]),t(n,r,i[o],a)&&ke.isArray(i[o])&&(i[o]=hP(i[o])),!c)}if(ke.isFormData(e)&&ke.isFunction(e.entries)){const n={};return ke.forEachEntry(e,(r,i)=>{t(fP(r),i,n,0)}),n}return null}function pP(e,t,n){if(ke.isString(e))try{return(t||JSON.parse)(e),ke.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const gm={transitional:s1,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",i=r.indexOf("application/json")>-1,a=ke.isObject(t);if(a&&ke.isHTMLForm(t)&&(t=new FormData(t)),ke.isFormData(t))return i&&i?JSON.stringify(i1(t)):t;if(ke.isArrayBuffer(t)||ke.isBuffer(t)||ke.isStream(t)||ke.isFile(t)||ke.isBlob(t))return t;if(ke.isArrayBufferView(t))return t.buffer;if(ke.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(a){if(r.indexOf("application/x-www-form-urlencoded")>-1)return dP(t,this.formSerializer).toString();if((c=ke.isFileList(t))||r.indexOf("multipart/form-data")>-1){const d=this.env&&this.env.FormData;return Yf(c?{"files[]":t}:t,d&&new d,this.formSerializer)}}return a||i?(n.setContentType("application/json",!1),pP(t)):t}],transformResponse:[function(t){const n=this.transitional||gm.transitional,r=n&&n.forcedJSONParsing,i=this.responseType==="json";if(t&&ke.isString(t)&&(r&&!this.responseType||i)){const o=!(n&&n.silentJSONParsing)&&i;try{return JSON.parse(t)}catch(c){if(o)throw c.name==="SyntaxError"?rn.from(c,rn.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ho.classes.FormData,Blob:ho.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};ke.forEach(["delete","get","head","post","put","patch"],e=>{gm.headers[e]={}});const mm=gm,gP=ke.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),mP=e=>{const t={};let n,r,i;return e&&e.split(` -`).forEach(function(o){i=o.indexOf(":"),n=o.substring(0,i).trim().toLowerCase(),r=o.substring(i+1).trim(),!(!n||t[n]&&gP[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Mv=Symbol("internals");function cc(e){return e&&String(e).trim().toLowerCase()}function Zd(e){return e===!1||e==null?e:ke.isArray(e)?e.map(Zd):String(e)}function yP(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const bP=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Wp(e,t,n,r,i){if(ke.isFunction(r))return r.call(this,t,n);if(i&&(t=n),!!ke.isString(t)){if(ke.isString(r))return t.indexOf(r)!==-1;if(ke.isRegExp(r))return r.test(t)}}function vP(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function _P(e,t){const n=ke.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(i,a,o){return this[r].call(this,t,i,a,o)},configurable:!0})})}class Xf{constructor(t){t&&this.set(t)}set(t,n,r){const i=this;function a(c,d,f){const y=cc(d);if(!y)throw new Error("header name must be a non-empty string");const g=ke.findKey(i,y);(!g||i[g]===void 0||f===!0||f===void 0&&i[g]!==!1)&&(i[g||d]=Zd(c))}const o=(c,d)=>ke.forEach(c,(f,y)=>a(f,y,d));return ke.isPlainObject(t)||t instanceof this.constructor?o(t,n):ke.isString(t)&&(t=t.trim())&&!bP(t)?o(mP(t),n):t!=null&&a(n,t,r),this}get(t,n){if(t=cc(t),t){const r=ke.findKey(this,t);if(r){const i=this[r];if(!n)return i;if(n===!0)return yP(i);if(ke.isFunction(n))return n.call(this,i,r);if(ke.isRegExp(n))return n.exec(i);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=cc(t),t){const r=ke.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Wp(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let i=!1;function a(o){if(o=cc(o),o){const c=ke.findKey(r,o);c&&(!n||Wp(r,r[c],c,n))&&(delete r[c],i=!0)}}return ke.isArray(t)?t.forEach(a):a(t),i}clear(t){const n=Object.keys(this);let r=n.length,i=!1;for(;r--;){const a=n[r];(!t||Wp(this,this[a],a,t,!0))&&(delete this[a],i=!0)}return i}normalize(t){const n=this,r={};return ke.forEach(this,(i,a)=>{const o=ke.findKey(r,a);if(o){n[o]=Zd(i),delete n[a];return}const c=t?vP(a):String(a).trim();c!==a&&delete n[a],n[c]=Zd(i),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return ke.forEach(this,(r,i)=>{r!=null&&r!==!1&&(n[i]=t&&ke.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(i=>r.set(i)),r}static accessor(t){const r=(this[Mv]=this[Mv]={accessors:{}}).accessors,i=this.prototype;function a(o){const c=cc(o);r[c]||(_P(i,o),r[c]=!0)}return ke.isArray(t)?t.forEach(a):a(t),this}}Xf.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);ke.reduceDescriptors(Xf.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});ke.freezeMethods(Xf);const Bo=Xf;function Gp(e,t){const n=this||mm,r=t||n,i=Bo.from(r.headers);let a=r.data;return ke.forEach(e,function(c){a=c.call(n,a,i.normalize(),t?t.status:void 0)}),i.normalize(),a}function a1(e){return!!(e&&e.__CANCEL__)}function Qc(e,t,n){rn.call(this,e??"canceled",rn.ERR_CANCELED,t,n),this.name="CanceledError"}ke.inherits(Qc,rn,{__CANCEL__:!0});function xP(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new rn("Request failed with status code "+n.status,[rn.ERR_BAD_REQUEST,rn.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const EP=ho.hasStandardBrowserEnv?{write(e,t,n,r,i,a){const o=[e+"="+encodeURIComponent(t)];ke.isNumber(n)&&o.push("expires="+new Date(n).toGMTString()),ke.isString(r)&&o.push("path="+r),ke.isString(i)&&o.push("domain="+i),a===!0&&o.push("secure"),document.cookie=o.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function SP(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function wP(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function l1(e,t){return e&&!SP(t)?wP(e,t):t}const TP=ho.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function i(a){let o=a;return t&&(n.setAttribute("href",o),o=n.href),n.setAttribute("href",o),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=i(window.location.href),function(o){const c=ke.isString(o)?i(o):o;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}();function CP(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function IP(e,t){e=e||10;const n=new Array(e),r=new Array(e);let i=0,a=0,o;return t=t!==void 0?t:1e3,function(d){const f=Date.now(),y=r[a];o||(o=f),n[i]=d,r[i]=f;let g=a,v=0;for(;g!==i;)v+=n[g++],g=g%e;if(i=(i+1)%e,i===a&&(a=(a+1)%e),f-o{const a=i.loaded,o=i.lengthComputable?i.total:void 0,c=a-n,d=r(c),f=a<=o;n=a;const y={loaded:a,total:o,progress:o?a/o:void 0,bytes:c,rate:d||void 0,estimated:d&&o&&f?(o-a)/d:void 0,event:i};y[t?"download":"upload"]=!0,e(y)}}const OP=typeof XMLHttpRequest<"u",AP=OP&&function(e){return new Promise(function(n,r){let i=e.data;const a=Bo.from(e.headers).normalize();let{responseType:o,withXSRFToken:c}=e,d;function f(){e.cancelToken&&e.cancelToken.unsubscribe(d),e.signal&&e.signal.removeEventListener("abort",d)}let y;if(ke.isFormData(i)){if(ho.hasStandardBrowserEnv||ho.hasStandardBrowserWebWorkerEnv)a.setContentType(!1);else if((y=a.getContentType())!==!1){const[T,...N]=y?y.split(";").map(I=>I.trim()).filter(Boolean):[];a.setContentType([T||"multipart/form-data",...N].join("; "))}}let g=new XMLHttpRequest;if(e.auth){const T=e.auth.username||"",N=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";a.set("Authorization","Basic "+btoa(T+":"+N))}const v=l1(e.baseURL,e.url);g.open(e.method.toUpperCase(),r1(v,e.params,e.paramsSerializer),!0),g.timeout=e.timeout;function S(){if(!g)return;const T=Bo.from("getAllResponseHeaders"in g&&g.getAllResponseHeaders()),I={data:!o||o==="text"||o==="json"?g.responseText:g.response,status:g.status,statusText:g.statusText,headers:T,config:e,request:g};xP(function(L){n(L),f()},function(L){r(L),f()},I),g=null}if("onloadend"in g?g.onloadend=S:g.onreadystatechange=function(){!g||g.readyState!==4||g.status===0&&!(g.responseURL&&g.responseURL.indexOf("file:")===0)||setTimeout(S)},g.onabort=function(){g&&(r(new rn("Request aborted",rn.ECONNABORTED,e,g)),g=null)},g.onerror=function(){r(new rn("Network Error",rn.ERR_NETWORK,e,g)),g=null},g.ontimeout=function(){let N=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const I=e.transitional||s1;e.timeoutErrorMessage&&(N=e.timeoutErrorMessage),r(new rn(N,I.clarifyTimeoutError?rn.ETIMEDOUT:rn.ECONNABORTED,e,g)),g=null},ho.hasStandardBrowserEnv&&(c&&ke.isFunction(c)&&(c=c(e)),c||c!==!1&&TP(v))){const T=e.xsrfHeaderName&&e.xsrfCookieName&&EP.read(e.xsrfCookieName);T&&a.set(e.xsrfHeaderName,T)}i===void 0&&a.setContentType(null),"setRequestHeader"in g&&ke.forEach(a.toJSON(),function(N,I){g.setRequestHeader(I,N)}),ke.isUndefined(e.withCredentials)||(g.withCredentials=!!e.withCredentials),o&&o!=="json"&&(g.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&g.addEventListener("progress",$v(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&g.upload&&g.upload.addEventListener("progress",$v(e.onUploadProgress)),(e.cancelToken||e.signal)&&(d=T=>{g&&(r(!T||T.type?new Qc(null,e,g):T),g.abort(),g=null)},e.cancelToken&&e.cancelToken.subscribe(d),e.signal&&(e.signal.aborted?d():e.signal.addEventListener("abort",d)));const E=CP(v);if(E&&ho.protocols.indexOf(E)===-1){r(new rn("Unsupported protocol "+E+":",rn.ERR_BAD_REQUEST,e));return}g.send(i||null)})},Eg={http:eP,xhr:AP};ke.forEach(Eg,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Fv=e=>`- ${e}`,kP=e=>ke.isFunction(e)||e===null||e===!1,c1={getAdapter:e=>{e=ke.isArray(e)?e:[e];const{length:t}=e;let n,r;const i={};for(let a=0;a`adapter ${c} `+(d===!1?"is not supported by the environment":"is not available in the build"));let o=t?a.length>1?`since : +}`;var Dt=Iv(function(){return ze(B,tt+"return "+Re).apply(n,Y)});if(Dt.source=Re,Np(Dt))throw Dt;return Dt}function SA(s){return hn(s).toLowerCase()}function wA(s){return hn(s).toUpperCase()}function TA(s,l,h){if(s=hn(s),s&&(h||l===n))return _s(s);if(!s||!(l=os(l)))return s;var _=Or(s),P=Or(l),B=ln(_,P),Y=Wi(_,P)+1;return ai(_,B,Y).join("")}function CA(s,l,h){if(s=hn(s),s&&(h||l===n))return s.slice(0,Gu(s)+1);if(!s||!(l=os(l)))return s;var _=Or(s),P=Wi(_,Or(l))+1;return ai(_,0,P).join("")}function IA(s,l,h){if(s=hn(s),s&&(h||l===n))return s.replace(Fi,"");if(!s||!(l=os(l)))return s;var _=Or(s),P=ln(_,Or(l));return ai(_,P).join("")}function OA(s,l){var h=V,_=re;if(Pn(l)){var P="separator"in l?l.separator:P;h="length"in l?Nt(l.length):h,_="omission"in l?os(l.omission):_}s=hn(s);var B=s.length;if(Hr(s)){var Y=Or(s);B=Y.length}if(h>=B)return s;var ee=h-oo(_);if(ee<1)return _;var ue=Y?ai(Y,0,ee).join(""):s.slice(0,ee);if(P===n)return ue+_;if(Y&&(ee+=ue.length-ee),Lp(P)){if(s.slice(ee).search(P)){var Oe,Ae=ue;for(P.global||(P=Pt(P.source,hn(wu.exec(P))+"g")),P.lastIndex=0;Oe=P.exec(Ae);)var Re=Oe.index;ue=ue.slice(0,Re===n?ee:Re)}}else if(s.indexOf(os(P),ee)!=ee){var Ve=ue.lastIndexOf(P);Ve>-1&&(ue=ue.slice(0,Ve))}return ue+_}function AA(s){return s=hn(s),s&&Xn.test(s)?s.replace(_t,Yl):s}var kA=Ga(function(s,l,h){return s+(h?" ":"")+l.toUpperCase()}),Mp=Ob("toUpperCase");function Cv(s,l,h){return s=hn(s),l=h?n:l,l===n?Kl(s)?ne(s):Ut(s):s.match(l)||[]}var Iv=Bt(function(s,l){try{return M(s,n,l)}catch(h){return Np(h)?h:new Ie(h)}}),PA=Io(function(s,l){return z(l,function(h){h=lo(h),To(s,h,kp(s[h],s))}),s});function NA(s){var l=s==null?0:s.length,h=ct();return s=l?Ke(s,function(_){if(typeof _[1]!="function")throw new Ft(o);return[h(_[0]),_[1]]}):[],Bt(function(_){for(var P=-1;++Pwe)return[];var h=at,_=vr(s,at);l=ct(l),s-=at;for(var P=ji(_,l);++h0||l<0)?new qt(h):(s<0?h=h.takeRight(-s):s&&(h=h.drop(s)),l!==n&&(l=Nt(l),h=l<0?h.dropRight(-l):h.take(l-s)),h)},qt.prototype.takeRightWhile=function(s){return this.reverse().takeWhile(s).reverse()},qt.prototype.toArray=function(){return this.take(at)},io(qt.prototype,function(s,l){var h=/^(?:filter|find|map|reject)|While$/.test(l),_=/^(?:head|last)$/.test(l),P=$[_?"take"+(l=="last"?"Right":""):l],B=_||/^find/.test(l);P&&($.prototype[l]=function(){var Y=this.__wrapped__,ee=_?[1]:arguments,ue=Y instanceof qt,Oe=ee[0],Ae=ue||Ct(Y),Re=function(zt){var en=P.apply($,Tt([zt],ee));return _&&Ve?en[0]:en};Ae&&h&&typeof Oe=="function"&&Oe.length!=1&&(ue=Ae=!1);var Ve=this.__chain__,tt=!!this.__actions__.length,ut=B&&!Ve,Dt=ue&&!tt;if(!B&&Ae){Y=Dt?Y:new qt(this);var dt=s.apply(Y,ee);return dt.__actions__.push({func:bd,args:[Re],thisArg:n}),new xs(dt,Ve)}return ut&&Dt?s.apply(this,ee):(dt=this.thru(Re),ut?_?dt.value()[0]:dt.value():dt)})}),z(["pop","push","shift","sort","splice","unshift"],function(s){var l=Jn[s],h=/^(?:push|sort|unshift)$/.test(s)?"tap":"thru",_=/^(?:pop|shift)$/.test(s);$.prototype[s]=function(){var P=arguments;if(_&&!this.__chain__){var B=this.value();return l.apply(Ct(B)?B:[],P)}return this[h](function(Y){return l.apply(Ct(Y)?Y:[],P)})}}),io(qt.prototype,function(s,l){var h=$[l];if(h){var _=h.name+"";xt.call(ja,_)||(ja[_]=[]),ja[_].push({name:l,func:h})}}),ja[dd(n,I).name]=[{name:"wrapper",func:n}],qt.prototype.clone=Aw,qt.prototype.reverse=kw,qt.prototype.value=Pw,$.prototype.at=iI,$.prototype.chain=aI,$.prototype.commit=lI,$.prototype.next=cI,$.prototype.plant=dI,$.prototype.reverse=fI,$.prototype.toJSON=$.prototype.valueOf=$.prototype.value=hI,$.prototype.first=$.prototype.head,Xl&&($.prototype[Xl]=uI),$},me=de();Ds?((Ds.exports=me)._=me,$a._=me):An._=me}).call(ia)})(pf,pf.exports);var bk=pf.exports;const vk=Vf(bk);function G0(e,t){return function(){return e.apply(t,arguments)}}const{toString:_k}=Object.prototype,{getPrototypeOf:hm}=Object,Wf=(e=>t=>{const n=_k.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),bo=e=>(e=e.toLowerCase(),t=>Wf(t)===e),Gf=e=>t=>typeof t===e,{isArray:El}=Array,Lc=Gf("undefined");function xk(e){return e!==null&&!Lc(e)&&e.constructor!==null&&!Lc(e.constructor)&&Ps(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const K0=bo("ArrayBuffer");function Ek(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&K0(e.buffer),t}const Sk=Gf("string"),Ps=Gf("function"),z0=Gf("number"),Kf=e=>e!==null&&typeof e=="object",wk=e=>e===!0||e===!1,qd=e=>{if(Wf(e)!=="object")return!1;const t=hm(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Tk=bo("Date"),Ck=bo("File"),Ik=bo("Blob"),Ok=bo("FileList"),Ak=e=>Kf(e)&&Ps(e.pipe),kk=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Ps(e.append)&&((t=Wf(e))==="formdata"||t==="object"&&Ps(e.toString)&&e.toString()==="[object FormData]"))},Pk=bo("URLSearchParams"),Nk=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Zc(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,i;if(typeof e!="object"&&(e=[e]),El(e))for(r=0,i=e.length;r0;)if(i=n[r],t===i.toLowerCase())return i;return null}const X0=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,q0=e=>!Lc(e)&&e!==X0;function _g(){const{caseless:e}=q0(this)&&this||{},t={},n=(r,i)=>{const a=e&&Y0(t,i)||i;qd(t[a])&&qd(r)?t[a]=_g(t[a],r):qd(r)?t[a]=_g({},r):El(r)?t[a]=r.slice():t[a]=r};for(let r=0,i=arguments.length;r(Zc(t,(i,a)=>{n&&Ps(i)?e[a]=G0(i,n):e[a]=i},{allOwnKeys:r}),e),Rk=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Dk=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Mk=(e,t,n,r)=>{let i,a,o;const c={};if(t=t||{},e==null)return t;do{for(i=Object.getOwnPropertyNames(e),a=i.length;a-- >0;)o=i[a],(!r||r(o,e,t))&&!c[o]&&(t[o]=e[o],c[o]=!0);e=n!==!1&&hm(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},$k=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Fk=e=>{if(!e)return null;if(El(e))return e;let t=e.length;if(!z0(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Bk=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&hm(Uint8Array)),Uk=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let i;for(;(i=r.next())&&!i.done;){const a=i.value;t.call(e,a[0],a[1])}},Hk=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},jk=bo("HTMLFormElement"),Vk=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,i){return r.toUpperCase()+i}),Pv=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Wk=bo("RegExp"),J0=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Zc(n,(i,a)=>{let o;(o=t(i,a,e))!==!1&&(r[a]=o||i)}),Object.defineProperties(e,r)},Gk=e=>{J0(e,(t,n)=>{if(Ps(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Ps(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Kk=(e,t)=>{const n={},r=i=>{i.forEach(a=>{n[a]=!0})};return El(e)?r(e):r(String(e).split(t)),n},zk=()=>{},Yk=(e,t)=>(e=+e,Number.isFinite(e)?e:t),Vp="abcdefghijklmnopqrstuvwxyz",Nv="0123456789",Z0={DIGIT:Nv,ALPHA:Vp,ALPHA_DIGIT:Vp+Vp.toUpperCase()+Nv},Xk=(e=16,t=Z0.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function qk(e){return!!(e&&Ps(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Jk=e=>{const t=new Array(10),n=(r,i)=>{if(Kf(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[i]=r;const a=El(r)?[]:{};return Zc(r,(o,c)=>{const d=n(o,i+1);!Lc(d)&&(a[c]=d)}),t[i]=void 0,a}}return r};return n(e,0)},Zk=bo("AsyncFunction"),Qk=e=>e&&(Kf(e)||Ps(e))&&Ps(e.then)&&Ps(e.catch),ke={isArray:El,isArrayBuffer:K0,isBuffer:xk,isFormData:kk,isArrayBufferView:Ek,isString:Sk,isNumber:z0,isBoolean:wk,isObject:Kf,isPlainObject:qd,isUndefined:Lc,isDate:Tk,isFile:Ck,isBlob:Ik,isRegExp:Wk,isFunction:Ps,isStream:Ak,isURLSearchParams:Pk,isTypedArray:Bk,isFileList:Ok,forEach:Zc,merge:_g,extend:Lk,trim:Nk,stripBOM:Rk,inherits:Dk,toFlatObject:Mk,kindOf:Wf,kindOfTest:bo,endsWith:$k,toArray:Fk,forEachEntry:Uk,matchAll:Hk,isHTMLForm:jk,hasOwnProperty:Pv,hasOwnProp:Pv,reduceDescriptors:J0,freezeMethods:Gk,toObjectSet:Kk,toCamelCase:Vk,noop:zk,toFiniteNumber:Yk,findKey:Y0,global:X0,isContextDefined:q0,ALPHABET:Z0,generateString:Xk,isSpecCompliantForm:qk,toJSONObject:Jk,isAsyncFn:Zk,isThenable:Qk};function rn(e,t,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i)}ke.inherits(rn,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:ke.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Q0=rn.prototype,e1={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{e1[e]={value:e}});Object.defineProperties(rn,e1);Object.defineProperty(Q0,"isAxiosError",{value:!0});rn.from=(e,t,n,r,i,a)=>{const o=Object.create(Q0);return ke.toFlatObject(e,o,function(d){return d!==Error.prototype},c=>c!=="isAxiosError"),rn.call(o,e.message,t,n,r,i),o.cause=e,o.name=e.name,a&&Object.assign(o,a),o};const eP=null;function xg(e){return ke.isPlainObject(e)||ke.isArray(e)}function t1(e){return ke.endsWith(e,"[]")?e.slice(0,-2):e}function Lv(e,t,n){return e?e.concat(t).map(function(i,a){return i=t1(i),!n&&a?"["+i+"]":i}).join(n?".":""):t}function tP(e){return ke.isArray(e)&&!e.some(xg)}const nP=ke.toFlatObject(ke,{},null,function(t){return/^is[A-Z]/.test(t)});function zf(e,t,n){if(!ke.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=ke.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(T,N){return!ke.isUndefined(N[T])});const r=n.metaTokens,i=n.visitor||y,a=n.dots,o=n.indexes,d=(n.Blob||typeof Blob<"u"&&Blob)&&ke.isSpecCompliantForm(t);if(!ke.isFunction(i))throw new TypeError("visitor must be a function");function f(E){if(E===null)return"";if(ke.isDate(E))return E.toISOString();if(!d&&ke.isBlob(E))throw new rn("Blob is not supported. Use a Buffer instead.");return ke.isArrayBuffer(E)||ke.isTypedArray(E)?d&&typeof Blob=="function"?new Blob([E]):Buffer.from(E):E}function y(E,T,N){let I=E;if(E&&!N&&typeof E=="object"){if(ke.endsWith(T,"{}"))T=r?T:T.slice(0,-2),E=JSON.stringify(E);else if(ke.isArray(E)&&tP(E)||(ke.isFileList(E)||ke.endsWith(T,"[]"))&&(I=ke.toArray(E)))return T=t1(T),I.forEach(function(L,R){!(ke.isUndefined(L)||L===null)&&t.append(o===!0?Lv([T],R,a):o===null?T:T+"[]",f(L))}),!1}return xg(E)?!0:(t.append(Lv(N,T,a),f(E)),!1)}const g=[],v=Object.assign(nP,{defaultVisitor:y,convertValue:f,isVisitable:xg});function S(E,T){if(!ke.isUndefined(E)){if(g.indexOf(E)!==-1)throw Error("Circular reference detected in "+T.join("."));g.push(E),ke.forEach(E,function(I,D){(!(ke.isUndefined(I)||I===null)&&i.call(t,I,ke.isString(D)?D.trim():D,T,v))===!0&&S(I,T?T.concat(D):[D])}),g.pop()}}if(!ke.isObject(e))throw new TypeError("data must be an object");return S(e),t}function Rv(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function pm(e,t){this._pairs=[],e&&zf(e,this,t)}const n1=pm.prototype;n1.append=function(t,n){this._pairs.push([t,n])};n1.toString=function(t){const n=t?function(r){return t.call(this,r,Rv)}:Rv;return this._pairs.map(function(i){return n(i[0])+"="+n(i[1])},"").join("&")};function rP(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function r1(e,t,n){if(!t)return e;const r=n&&n.encode||rP,i=n&&n.serialize;let a;if(i?a=i(t,n):a=ke.isURLSearchParams(t)?t.toString():new pm(t,n).toString(r),a){const o=e.indexOf("#");o!==-1&&(e=e.slice(0,o)),e+=(e.indexOf("?")===-1?"?":"&")+a}return e}class Dv{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){ke.forEach(this.handlers,function(r){r!==null&&t(r)})}}const s1={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},sP=typeof URLSearchParams<"u"?URLSearchParams:pm,oP=typeof FormData<"u"?FormData:null,iP=typeof Blob<"u"?Blob:null,aP={isBrowser:!0,classes:{URLSearchParams:sP,FormData:oP,Blob:iP},protocols:["http","https","file","blob","url","data"]},o1=typeof window<"u"&&typeof document<"u",lP=(e=>o1&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),cP=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",uP=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:o1,hasStandardBrowserEnv:lP,hasStandardBrowserWebWorkerEnv:cP},Symbol.toStringTag,{value:"Module"})),ho={...uP,...aP};function dP(e,t){return zf(e,new ho.classes.URLSearchParams,Object.assign({visitor:function(n,r,i,a){return ho.isNode&&ke.isBuffer(n)?(this.append(r,n.toString("base64")),!1):a.defaultVisitor.apply(this,arguments)}},t))}function fP(e){return ke.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function hP(e){const t={},n=Object.keys(e);let r;const i=n.length;let a;for(r=0;r=n.length;return o=!o&&ke.isArray(i)?i.length:o,d?(ke.hasOwnProp(i,o)?i[o]=[i[o],r]:i[o]=r,!c):((!i[o]||!ke.isObject(i[o]))&&(i[o]=[]),t(n,r,i[o],a)&&ke.isArray(i[o])&&(i[o]=hP(i[o])),!c)}if(ke.isFormData(e)&&ke.isFunction(e.entries)){const n={};return ke.forEachEntry(e,(r,i)=>{t(fP(r),i,n,0)}),n}return null}function pP(e,t,n){if(ke.isString(e))try{return(t||JSON.parse)(e),ke.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const gm={transitional:s1,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",i=r.indexOf("application/json")>-1,a=ke.isObject(t);if(a&&ke.isHTMLForm(t)&&(t=new FormData(t)),ke.isFormData(t))return i&&i?JSON.stringify(i1(t)):t;if(ke.isArrayBuffer(t)||ke.isBuffer(t)||ke.isStream(t)||ke.isFile(t)||ke.isBlob(t))return t;if(ke.isArrayBufferView(t))return t.buffer;if(ke.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(a){if(r.indexOf("application/x-www-form-urlencoded")>-1)return dP(t,this.formSerializer).toString();if((c=ke.isFileList(t))||r.indexOf("multipart/form-data")>-1){const d=this.env&&this.env.FormData;return zf(c?{"files[]":t}:t,d&&new d,this.formSerializer)}}return a||i?(n.setContentType("application/json",!1),pP(t)):t}],transformResponse:[function(t){const n=this.transitional||gm.transitional,r=n&&n.forcedJSONParsing,i=this.responseType==="json";if(t&&ke.isString(t)&&(r&&!this.responseType||i)){const o=!(n&&n.silentJSONParsing)&&i;try{return JSON.parse(t)}catch(c){if(o)throw c.name==="SyntaxError"?rn.from(c,rn.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ho.classes.FormData,Blob:ho.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};ke.forEach(["delete","get","head","post","put","patch"],e=>{gm.headers[e]={}});const mm=gm,gP=ke.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),mP=e=>{const t={};let n,r,i;return e&&e.split(` +`).forEach(function(o){i=o.indexOf(":"),n=o.substring(0,i).trim().toLowerCase(),r=o.substring(i+1).trim(),!(!n||t[n]&&gP[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Mv=Symbol("internals");function cc(e){return e&&String(e).trim().toLowerCase()}function Jd(e){return e===!1||e==null?e:ke.isArray(e)?e.map(Jd):String(e)}function yP(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const bP=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Wp(e,t,n,r,i){if(ke.isFunction(r))return r.call(this,t,n);if(i&&(t=n),!!ke.isString(t)){if(ke.isString(r))return t.indexOf(r)!==-1;if(ke.isRegExp(r))return r.test(t)}}function vP(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function _P(e,t){const n=ke.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(i,a,o){return this[r].call(this,t,i,a,o)},configurable:!0})})}class Yf{constructor(t){t&&this.set(t)}set(t,n,r){const i=this;function a(c,d,f){const y=cc(d);if(!y)throw new Error("header name must be a non-empty string");const g=ke.findKey(i,y);(!g||i[g]===void 0||f===!0||f===void 0&&i[g]!==!1)&&(i[g||d]=Jd(c))}const o=(c,d)=>ke.forEach(c,(f,y)=>a(f,y,d));return ke.isPlainObject(t)||t instanceof this.constructor?o(t,n):ke.isString(t)&&(t=t.trim())&&!bP(t)?o(mP(t),n):t!=null&&a(n,t,r),this}get(t,n){if(t=cc(t),t){const r=ke.findKey(this,t);if(r){const i=this[r];if(!n)return i;if(n===!0)return yP(i);if(ke.isFunction(n))return n.call(this,i,r);if(ke.isRegExp(n))return n.exec(i);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=cc(t),t){const r=ke.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Wp(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let i=!1;function a(o){if(o=cc(o),o){const c=ke.findKey(r,o);c&&(!n||Wp(r,r[c],c,n))&&(delete r[c],i=!0)}}return ke.isArray(t)?t.forEach(a):a(t),i}clear(t){const n=Object.keys(this);let r=n.length,i=!1;for(;r--;){const a=n[r];(!t||Wp(this,this[a],a,t,!0))&&(delete this[a],i=!0)}return i}normalize(t){const n=this,r={};return ke.forEach(this,(i,a)=>{const o=ke.findKey(r,a);if(o){n[o]=Jd(i),delete n[a];return}const c=t?vP(a):String(a).trim();c!==a&&delete n[a],n[c]=Jd(i),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return ke.forEach(this,(r,i)=>{r!=null&&r!==!1&&(n[i]=t&&ke.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(i=>r.set(i)),r}static accessor(t){const r=(this[Mv]=this[Mv]={accessors:{}}).accessors,i=this.prototype;function a(o){const c=cc(o);r[c]||(_P(i,o),r[c]=!0)}return ke.isArray(t)?t.forEach(a):a(t),this}}Yf.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);ke.reduceDescriptors(Yf.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});ke.freezeMethods(Yf);const Bo=Yf;function Gp(e,t){const n=this||mm,r=t||n,i=Bo.from(r.headers);let a=r.data;return ke.forEach(e,function(c){a=c.call(n,a,i.normalize(),t?t.status:void 0)}),i.normalize(),a}function a1(e){return!!(e&&e.__CANCEL__)}function Qc(e,t,n){rn.call(this,e??"canceled",rn.ERR_CANCELED,t,n),this.name="CanceledError"}ke.inherits(Qc,rn,{__CANCEL__:!0});function xP(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new rn("Request failed with status code "+n.status,[rn.ERR_BAD_REQUEST,rn.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const EP=ho.hasStandardBrowserEnv?{write(e,t,n,r,i,a){const o=[e+"="+encodeURIComponent(t)];ke.isNumber(n)&&o.push("expires="+new Date(n).toGMTString()),ke.isString(r)&&o.push("path="+r),ke.isString(i)&&o.push("domain="+i),a===!0&&o.push("secure"),document.cookie=o.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function SP(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function wP(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function l1(e,t){return e&&!SP(t)?wP(e,t):t}const TP=ho.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function i(a){let o=a;return t&&(n.setAttribute("href",o),o=n.href),n.setAttribute("href",o),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=i(window.location.href),function(o){const c=ke.isString(o)?i(o):o;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}();function CP(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function IP(e,t){e=e||10;const n=new Array(e),r=new Array(e);let i=0,a=0,o;return t=t!==void 0?t:1e3,function(d){const f=Date.now(),y=r[a];o||(o=f),n[i]=d,r[i]=f;let g=a,v=0;for(;g!==i;)v+=n[g++],g=g%e;if(i=(i+1)%e,i===a&&(a=(a+1)%e),f-o{const a=i.loaded,o=i.lengthComputable?i.total:void 0,c=a-n,d=r(c),f=a<=o;n=a;const y={loaded:a,total:o,progress:o?a/o:void 0,bytes:c,rate:d||void 0,estimated:d&&o&&f?(o-a)/d:void 0,event:i};y[t?"download":"upload"]=!0,e(y)}}const OP=typeof XMLHttpRequest<"u",AP=OP&&function(e){return new Promise(function(n,r){let i=e.data;const a=Bo.from(e.headers).normalize();let{responseType:o,withXSRFToken:c}=e,d;function f(){e.cancelToken&&e.cancelToken.unsubscribe(d),e.signal&&e.signal.removeEventListener("abort",d)}let y;if(ke.isFormData(i)){if(ho.hasStandardBrowserEnv||ho.hasStandardBrowserWebWorkerEnv)a.setContentType(!1);else if((y=a.getContentType())!==!1){const[T,...N]=y?y.split(";").map(I=>I.trim()).filter(Boolean):[];a.setContentType([T||"multipart/form-data",...N].join("; "))}}let g=new XMLHttpRequest;if(e.auth){const T=e.auth.username||"",N=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";a.set("Authorization","Basic "+btoa(T+":"+N))}const v=l1(e.baseURL,e.url);g.open(e.method.toUpperCase(),r1(v,e.params,e.paramsSerializer),!0),g.timeout=e.timeout;function S(){if(!g)return;const T=Bo.from("getAllResponseHeaders"in g&&g.getAllResponseHeaders()),I={data:!o||o==="text"||o==="json"?g.responseText:g.response,status:g.status,statusText:g.statusText,headers:T,config:e,request:g};xP(function(L){n(L),f()},function(L){r(L),f()},I),g=null}if("onloadend"in g?g.onloadend=S:g.onreadystatechange=function(){!g||g.readyState!==4||g.status===0&&!(g.responseURL&&g.responseURL.indexOf("file:")===0)||setTimeout(S)},g.onabort=function(){g&&(r(new rn("Request aborted",rn.ECONNABORTED,e,g)),g=null)},g.onerror=function(){r(new rn("Network Error",rn.ERR_NETWORK,e,g)),g=null},g.ontimeout=function(){let N=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const I=e.transitional||s1;e.timeoutErrorMessage&&(N=e.timeoutErrorMessage),r(new rn(N,I.clarifyTimeoutError?rn.ETIMEDOUT:rn.ECONNABORTED,e,g)),g=null},ho.hasStandardBrowserEnv&&(c&&ke.isFunction(c)&&(c=c(e)),c||c!==!1&&TP(v))){const T=e.xsrfHeaderName&&e.xsrfCookieName&&EP.read(e.xsrfCookieName);T&&a.set(e.xsrfHeaderName,T)}i===void 0&&a.setContentType(null),"setRequestHeader"in g&&ke.forEach(a.toJSON(),function(N,I){g.setRequestHeader(I,N)}),ke.isUndefined(e.withCredentials)||(g.withCredentials=!!e.withCredentials),o&&o!=="json"&&(g.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&g.addEventListener("progress",$v(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&g.upload&&g.upload.addEventListener("progress",$v(e.onUploadProgress)),(e.cancelToken||e.signal)&&(d=T=>{g&&(r(!T||T.type?new Qc(null,e,g):T),g.abort(),g=null)},e.cancelToken&&e.cancelToken.subscribe(d),e.signal&&(e.signal.aborted?d():e.signal.addEventListener("abort",d)));const E=CP(v);if(E&&ho.protocols.indexOf(E)===-1){r(new rn("Unsupported protocol "+E+":",rn.ERR_BAD_REQUEST,e));return}g.send(i||null)})},Eg={http:eP,xhr:AP};ke.forEach(Eg,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Fv=e=>`- ${e}`,kP=e=>ke.isFunction(e)||e===null||e===!1,c1={getAdapter:e=>{e=ke.isArray(e)?e:[e];const{length:t}=e;let n,r;const i={};for(let a=0;a`adapter ${c} `+(d===!1?"is not supported by the environment":"is not available in the build"));let o=t?a.length>1?`since : `+a.map(Fv).join(` -`):" "+Fv(a[0]):"as no adapter specified";throw new rn("There is no suitable adapter to dispatch the request "+o,"ERR_NOT_SUPPORT")}return r},adapters:Eg};function Kp(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Qc(null,e)}function Bv(e){return Kp(e),e.headers=Bo.from(e.headers),e.data=Gp.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),c1.getAdapter(e.adapter||mm.adapter)(e).then(function(r){return Kp(e),r.data=Gp.call(e,e.transformResponse,r),r.headers=Bo.from(r.headers),r},function(r){return a1(r)||(Kp(e),r&&r.response&&(r.response.data=Gp.call(e,e.transformResponse,r.response),r.response.headers=Bo.from(r.response.headers))),Promise.reject(r)})}const Uv=e=>e instanceof Bo?e.toJSON():e;function ul(e,t){t=t||{};const n={};function r(f,y,g){return ke.isPlainObject(f)&&ke.isPlainObject(y)?ke.merge.call({caseless:g},f,y):ke.isPlainObject(y)?ke.merge({},y):ke.isArray(y)?y.slice():y}function i(f,y,g){if(ke.isUndefined(y)){if(!ke.isUndefined(f))return r(void 0,f,g)}else return r(f,y,g)}function a(f,y){if(!ke.isUndefined(y))return r(void 0,y)}function o(f,y){if(ke.isUndefined(y)){if(!ke.isUndefined(f))return r(void 0,f)}else return r(void 0,y)}function c(f,y,g){if(g in t)return r(f,y);if(g in e)return r(void 0,f)}const d={url:a,method:a,data:a,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:c,headers:(f,y)=>i(Uv(f),Uv(y),!0)};return ke.forEach(Object.keys(Object.assign({},e,t)),function(y){const g=d[y]||i,v=g(e[y],t[y],y);ke.isUndefined(v)&&g!==c||(n[y]=v)}),n}const u1="1.6.5",ym={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ym[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Hv={};ym.transitional=function(t,n,r){function i(a,o){return"[Axios v"+u1+"] Transitional option '"+a+"'"+o+(r?". "+r:"")}return(a,o,c)=>{if(t===!1)throw new rn(i(o," has been removed"+(n?" in "+n:"")),rn.ERR_DEPRECATED);return n&&!Hv[o]&&(Hv[o]=!0,console.warn(i(o," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(a,o,c):!0}};function PP(e,t,n){if(typeof e!="object")throw new rn("options must be an object",rn.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let i=r.length;for(;i-- >0;){const a=r[i],o=t[a];if(o){const c=e[a],d=c===void 0||o(c,a,e);if(d!==!0)throw new rn("option "+a+" must be "+d,rn.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new rn("Unknown option "+a,rn.ERR_BAD_OPTION)}}const Sg={assertOptions:PP,validators:ym},ci=Sg.validators;class mf{constructor(t){this.defaults=t,this.interceptors={request:new Dv,response:new Dv}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=ul(this.defaults,n);const{transitional:r,paramsSerializer:i,headers:a}=n;r!==void 0&&Sg.assertOptions(r,{silentJSONParsing:ci.transitional(ci.boolean),forcedJSONParsing:ci.transitional(ci.boolean),clarifyTimeoutError:ci.transitional(ci.boolean)},!1),i!=null&&(ke.isFunction(i)?n.paramsSerializer={serialize:i}:Sg.assertOptions(i,{encode:ci.function,serialize:ci.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let o=a&&ke.merge(a.common,a[n.method]);a&&ke.forEach(["delete","get","head","post","put","patch","common"],E=>{delete a[E]}),n.headers=Bo.concat(o,a);const c=[];let d=!0;this.interceptors.request.forEach(function(T){typeof T.runWhen=="function"&&T.runWhen(n)===!1||(d=d&&T.synchronous,c.unshift(T.fulfilled,T.rejected))});const f=[];this.interceptors.response.forEach(function(T){f.push(T.fulfilled,T.rejected)});let y,g=0,v;if(!d){const E=[Bv.bind(this),void 0];for(E.unshift.apply(E,c),E.push.apply(E,f),v=E.length,y=Promise.resolve(n);g{if(!r._listeners)return;let a=r._listeners.length;for(;a-- >0;)r._listeners[a](i);r._listeners=null}),this.promise.then=i=>{let a;const o=new Promise(c=>{r.subscribe(c),a=c}).then(i);return o.cancel=function(){r.unsubscribe(a)},o},t(function(a,o,c){r.reason||(r.reason=new Qc(a,o,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new bm(function(i){t=i}),cancel:t}}}const NP=bm;function LP(e){return function(n){return e.apply(null,n)}}function RP(e){return ke.isObject(e)&&e.isAxiosError===!0}const wg={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(wg).forEach(([e,t])=>{wg[t]=e});const DP=wg;function d1(e){const t=new Qd(e),n=G0(Qd.prototype.request,t);return ke.extend(n,Qd.prototype,t,{allOwnKeys:!0}),ke.extend(n,t,null,{allOwnKeys:!0}),n.create=function(i){return d1(ul(e,i))},n}const Yn=d1(mm);Yn.Axios=Qd;Yn.CanceledError=Qc;Yn.CancelToken=NP;Yn.isCancel=a1;Yn.VERSION=u1;Yn.toFormData=Yf;Yn.AxiosError=rn;Yn.Cancel=Yn.CanceledError;Yn.all=function(t){return Promise.all(t)};Yn.spread=LP;Yn.isAxiosError=RP;Yn.mergeConfig=ul;Yn.AxiosHeaders=Bo;Yn.formToJSON=e=>i1(ke.isHTMLForm(e)?new FormData(e):e);Yn.getAdapter=c1.getAdapter;Yn.HttpStatusCode=DP;Yn.default=Yn;const f1=Yn;window._=vk;window.axios=f1;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest";/** +`):" "+Fv(a[0]):"as no adapter specified";throw new rn("There is no suitable adapter to dispatch the request "+o,"ERR_NOT_SUPPORT")}return r},adapters:Eg};function Kp(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Qc(null,e)}function Bv(e){return Kp(e),e.headers=Bo.from(e.headers),e.data=Gp.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),c1.getAdapter(e.adapter||mm.adapter)(e).then(function(r){return Kp(e),r.data=Gp.call(e,e.transformResponse,r),r.headers=Bo.from(r.headers),r},function(r){return a1(r)||(Kp(e),r&&r.response&&(r.response.data=Gp.call(e,e.transformResponse,r.response),r.response.headers=Bo.from(r.response.headers))),Promise.reject(r)})}const Uv=e=>e instanceof Bo?e.toJSON():e;function ul(e,t){t=t||{};const n={};function r(f,y,g){return ke.isPlainObject(f)&&ke.isPlainObject(y)?ke.merge.call({caseless:g},f,y):ke.isPlainObject(y)?ke.merge({},y):ke.isArray(y)?y.slice():y}function i(f,y,g){if(ke.isUndefined(y)){if(!ke.isUndefined(f))return r(void 0,f,g)}else return r(f,y,g)}function a(f,y){if(!ke.isUndefined(y))return r(void 0,y)}function o(f,y){if(ke.isUndefined(y)){if(!ke.isUndefined(f))return r(void 0,f)}else return r(void 0,y)}function c(f,y,g){if(g in t)return r(f,y);if(g in e)return r(void 0,f)}const d={url:a,method:a,data:a,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:c,headers:(f,y)=>i(Uv(f),Uv(y),!0)};return ke.forEach(Object.keys(Object.assign({},e,t)),function(y){const g=d[y]||i,v=g(e[y],t[y],y);ke.isUndefined(v)&&g!==c||(n[y]=v)}),n}const u1="1.6.5",ym={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ym[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Hv={};ym.transitional=function(t,n,r){function i(a,o){return"[Axios v"+u1+"] Transitional option '"+a+"'"+o+(r?". "+r:"")}return(a,o,c)=>{if(t===!1)throw new rn(i(o," has been removed"+(n?" in "+n:"")),rn.ERR_DEPRECATED);return n&&!Hv[o]&&(Hv[o]=!0,console.warn(i(o," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(a,o,c):!0}};function PP(e,t,n){if(typeof e!="object")throw new rn("options must be an object",rn.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let i=r.length;for(;i-- >0;){const a=r[i],o=t[a];if(o){const c=e[a],d=c===void 0||o(c,a,e);if(d!==!0)throw new rn("option "+a+" must be "+d,rn.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new rn("Unknown option "+a,rn.ERR_BAD_OPTION)}}const Sg={assertOptions:PP,validators:ym},ci=Sg.validators;class gf{constructor(t){this.defaults=t,this.interceptors={request:new Dv,response:new Dv}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=ul(this.defaults,n);const{transitional:r,paramsSerializer:i,headers:a}=n;r!==void 0&&Sg.assertOptions(r,{silentJSONParsing:ci.transitional(ci.boolean),forcedJSONParsing:ci.transitional(ci.boolean),clarifyTimeoutError:ci.transitional(ci.boolean)},!1),i!=null&&(ke.isFunction(i)?n.paramsSerializer={serialize:i}:Sg.assertOptions(i,{encode:ci.function,serialize:ci.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let o=a&&ke.merge(a.common,a[n.method]);a&&ke.forEach(["delete","get","head","post","put","patch","common"],E=>{delete a[E]}),n.headers=Bo.concat(o,a);const c=[];let d=!0;this.interceptors.request.forEach(function(T){typeof T.runWhen=="function"&&T.runWhen(n)===!1||(d=d&&T.synchronous,c.unshift(T.fulfilled,T.rejected))});const f=[];this.interceptors.response.forEach(function(T){f.push(T.fulfilled,T.rejected)});let y,g=0,v;if(!d){const E=[Bv.bind(this),void 0];for(E.unshift.apply(E,c),E.push.apply(E,f),v=E.length,y=Promise.resolve(n);g{if(!r._listeners)return;let a=r._listeners.length;for(;a-- >0;)r._listeners[a](i);r._listeners=null}),this.promise.then=i=>{let a;const o=new Promise(c=>{r.subscribe(c),a=c}).then(i);return o.cancel=function(){r.unsubscribe(a)},o},t(function(a,o,c){r.reason||(r.reason=new Qc(a,o,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new bm(function(i){t=i}),cancel:t}}}const NP=bm;function LP(e){return function(n){return e.apply(null,n)}}function RP(e){return ke.isObject(e)&&e.isAxiosError===!0}const wg={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(wg).forEach(([e,t])=>{wg[t]=e});const DP=wg;function d1(e){const t=new Zd(e),n=G0(Zd.prototype.request,t);return ke.extend(n,Zd.prototype,t,{allOwnKeys:!0}),ke.extend(n,t,null,{allOwnKeys:!0}),n.create=function(i){return d1(ul(e,i))},n}const Yn=d1(mm);Yn.Axios=Zd;Yn.CanceledError=Qc;Yn.CancelToken=NP;Yn.isCancel=a1;Yn.VERSION=u1;Yn.toFormData=zf;Yn.AxiosError=rn;Yn.Cancel=Yn.CanceledError;Yn.all=function(t){return Promise.all(t)};Yn.spread=LP;Yn.isAxiosError=RP;Yn.mergeConfig=ul;Yn.AxiosHeaders=Bo;Yn.formToJSON=e=>i1(ke.isHTMLForm(e)?new FormData(e):e);Yn.getAdapter=c1.getAdapter;Yn.HttpStatusCode=DP;Yn.default=Yn;const f1=Yn;window._=vk;window.axios=f1;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest";/** * @vue/shared v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/function ms(e,t){const n=new Set(e.split(","));return t?r=>n.has(r.toLowerCase()):r=>n.has(r)}const cn={},sl=[],sr=()=>{},ef=()=>!1,wa=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),vm=e=>e.startsWith("onUpdate:"),on=Object.assign,_m=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},MP=Object.prototype.hasOwnProperty,sn=(e,t)=>MP.call(e,t),Xe=Array.isArray,ol=e=>Sl(e)==="[object Map]",Ta=e=>Sl(e)==="[object Set]",jv=e=>Sl(e)==="[object Date]",$P=e=>Sl(e)==="[object RegExp]",bt=e=>typeof e=="function",At=e=>typeof e=="string",Xs=e=>typeof e=="symbol",mn=e=>e!==null&&typeof e=="object",xm=e=>(mn(e)||bt(e))&&bt(e.then)&&bt(e.catch),h1=Object.prototype.toString,Sl=e=>h1.call(e),FP=e=>Sl(e).slice(8,-1),p1=e=>Sl(e)==="[object Object]",Em=e=>At(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,da=ms(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),BP=ms("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),qf=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},UP=/-(\w)/g,Ln=qf(e=>e.replace(UP,(t,n)=>n?n.toUpperCase():"")),HP=/\B([A-Z])/g,ps=qf(e=>e.replace(HP,"-$1").toLowerCase()),Li=qf(e=>e.charAt(0).toUpperCase()+e.slice(1)),fa=qf(e=>e?`on${Li(e)}`:""),qs=(e,t)=>!Object.is(e,t),il=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Rc=e=>{const t=parseFloat(e);return isNaN(t)?e:t},bf=e=>{const t=At(e)?Number(e):NaN;return isNaN(t)?e:t};let Vv;const g1=()=>Vv||(Vv=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),jP="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console,Error",VP=ms(jP);function wl(e){if(Xe(e)){const t={};for(let n=0;n{if(n){const r=n.split(GP);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Yt(e){let t="";if(At(e))t=e;else if(Xe(e))for(let n=0;njo(n,t))}const ae=e=>At(e)?e:e==null?"":Xe(e)||mn(e)&&(e.toString===h1||!bt(e.toString))?JSON.stringify(e,v1,2):String(e),v1=(e,t)=>t&&t.__v_isRef?v1(e,t.value):ol(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,i],a)=>(n[zp(r,a)+" =>"]=i,n),{})}:Ta(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>zp(n))}:Xs(t)?zp(t):mn(t)&&!Xe(t)&&!p1(t)?String(t):t,zp=(e,t="")=>{var n;return Xs(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +**/function ms(e,t){const n=new Set(e.split(","));return t?r=>n.has(r.toLowerCase()):r=>n.has(r)}const cn={},sl=[],sr=()=>{},Qd=()=>!1,wa=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),vm=e=>e.startsWith("onUpdate:"),on=Object.assign,_m=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},MP=Object.prototype.hasOwnProperty,sn=(e,t)=>MP.call(e,t),Xe=Array.isArray,ol=e=>Sl(e)==="[object Map]",Ta=e=>Sl(e)==="[object Set]",jv=e=>Sl(e)==="[object Date]",$P=e=>Sl(e)==="[object RegExp]",bt=e=>typeof e=="function",At=e=>typeof e=="string",Xs=e=>typeof e=="symbol",mn=e=>e!==null&&typeof e=="object",xm=e=>(mn(e)||bt(e))&&bt(e.then)&&bt(e.catch),h1=Object.prototype.toString,Sl=e=>h1.call(e),FP=e=>Sl(e).slice(8,-1),p1=e=>Sl(e)==="[object Object]",Em=e=>At(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,da=ms(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),BP=ms("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),Xf=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},UP=/-(\w)/g,Ln=Xf(e=>e.replace(UP,(t,n)=>n?n.toUpperCase():"")),HP=/\B([A-Z])/g,ps=Xf(e=>e.replace(HP,"-$1").toLowerCase()),Li=Xf(e=>e.charAt(0).toUpperCase()+e.slice(1)),fa=Xf(e=>e?`on${Li(e)}`:""),qs=(e,t)=>!Object.is(e,t),il=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Rc=e=>{const t=parseFloat(e);return isNaN(t)?e:t},yf=e=>{const t=At(e)?Number(e):NaN;return isNaN(t)?e:t};let Vv;const g1=()=>Vv||(Vv=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),jP="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console,Error",VP=ms(jP);function wl(e){if(Xe(e)){const t={};for(let n=0;n{if(n){const r=n.split(GP);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Yt(e){let t="";if(At(e))t=e;else if(Xe(e))for(let n=0;njo(n,t))}const ae=e=>At(e)?e:e==null?"":Xe(e)||mn(e)&&(e.toString===h1||!bt(e.toString))?JSON.stringify(e,v1,2):String(e),v1=(e,t)=>t&&t.__v_isRef?v1(e,t.value):ol(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,i],a)=>(n[zp(r,a)+" =>"]=i,n),{})}:Ta(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>zp(n))}:Xs(t)?zp(t):mn(t)&&!Xe(t)&&!p1(t)?String(t):t,zp=(e,t="")=>{var n;return Xs(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** * @vue/reactivity v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/let ds;class Zf{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=ds,!t&&ds&&(this.index=(ds.scopes||(ds.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=ds;try{return ds=this,t()}finally{ds=n}}}on(){ds=this}off(){ds=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=2))break}this._dirtyLevel<2&&(this._dirtyLevel=0),Ia()}return this._dirtyLevel>=2}set dirty(t){this._dirtyLevel=t?2:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Ti,n=ha;try{return Ti=!0,ha=this,this._runnings++,Wv(this),this.fn()}finally{Gv(this),this._runnings--,ha=n,Ti=t}}stop(){var t;this.active&&(Wv(this),Gv(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function s2(e){return e.value}function Wv(e){e._trackId++,e._depsLength=0}function Gv(e){if(e.deps&&e.deps.length>e._depsLength){for(let t=e._depsLength;t{n.dirty&&n.run()});t&&(on(n,t),t.scope&&_1(n,t.scope)),(!t||!t.lazy)&&n.run();const r=n.run.bind(n);return r.effect=n,r}function S1(e){e.effect.stop()}let Ti=!0,Tg=0;const w1=[];function Ca(){w1.push(Ti),Ti=!1}function Ia(){const e=w1.pop();Ti=e===void 0?!0:e}function Tm(){Tg++}function Cm(){for(Tg--;!Tg&&Cg.length;)Cg.shift()()}function T1(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const r=e.deps[e._depsLength];r!==t?(r&&x1(r,e),e.deps[e._depsLength++]=t):e._depsLength++}}const Cg=[];function C1(e,t,n){Tm();for(const r of e.keys())if(r._dirtyLevel{const n=new Map;return n.cleanup=e,n.computed=t,n},vf=new WeakMap,pa=Symbol(""),Ig=Symbol("");function es(e,t,n){if(Ti&&ha){let r=vf.get(e);r||vf.set(e,r=new Map);let i=r.get(n);i||r.set(n,i=O1(()=>r.delete(n))),T1(ha,i)}}function Uo(e,t,n,r,i,a){const o=vf.get(e);if(!o)return;let c=[];if(t==="clear")c=[...o.values()];else if(n==="length"&&Xe(e)){const d=Number(r);o.forEach((f,y)=>{(y==="length"||!Xs(y)&&y>=d)&&c.push(f)})}else switch(n!==void 0&&c.push(o.get(n)),t){case"add":Xe(e)?Em(n)&&c.push(o.get("length")):(c.push(o.get(pa)),ol(e)&&c.push(o.get(Ig)));break;case"delete":Xe(e)||(c.push(o.get(pa)),ol(e)&&c.push(o.get(Ig)));break;case"set":ol(e)&&c.push(o.get(pa));break}Tm();for(const d of c)d&&C1(d,2);Cm()}function o2(e,t){var n;return(n=vf.get(e))==null?void 0:n.get(t)}const i2=ms("__proto__,__v_isRef,__isVue"),A1=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Xs)),Kv=a2();function a2(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=Zt(this);for(let a=0,o=this.length;a{e[t]=function(...n){Ca(),Tm();const r=Zt(this)[t].apply(this,n);return Cm(),Ia(),r}}),e}function l2(e){const t=Zt(this);return es(t,"has",e),t.hasOwnProperty(e)}class k1{constructor(t=!1,n=!1){this._isReadonly=t,this._shallow=n}get(t,n,r){const i=this._isReadonly,a=this._shallow;if(n==="__v_isReactive")return!i;if(n==="__v_isReadonly")return i;if(n==="__v_isShallow")return a;if(n==="__v_raw")return r===(i?a?M1:D1:a?R1:L1).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const o=Xe(t);if(!i){if(o&&sn(Kv,n))return Reflect.get(Kv,n,r);if(n==="hasOwnProperty")return l2}const c=Reflect.get(t,n,r);return(Xs(n)?A1.has(n):i2(n))||(i||es(t,"get",n),a)?c:ir(c)?o&&Em(n)?c:c.value:mn(c)?i?nh(c):eu(c):c}}class P1 extends k1{constructor(t=!1){super(!1,t)}set(t,n,r,i){let a=t[n];if(!this._shallow){const d=Ai(a);if(!dl(r)&&!Ai(r)&&(a=Zt(a),r=Zt(r)),!Xe(t)&&ir(a)&&!ir(r))return d?!1:(a.value=r,!0)}const o=Xe(t)&&Em(n)?Number(n)e,eh=e=>Reflect.getPrototypeOf(e);function Id(e,t,n=!1,r=!1){e=e.__v_raw;const i=Zt(e),a=Zt(t);n||(qs(t,a)&&es(i,"get",t),es(i,"get",a));const{has:o}=eh(i),c=r?Im:n?Am:Dc;if(o.call(i,t))return c(e.get(t));if(o.call(i,a))return c(e.get(a));e!==i&&e.get(t)}function Od(e,t=!1){const n=this.__v_raw,r=Zt(n),i=Zt(e);return t||(qs(e,i)&&es(r,"has",e),es(r,"has",i)),e===i?n.has(e):n.has(e)||n.has(i)}function Ad(e,t=!1){return e=e.__v_raw,!t&&es(Zt(e),"iterate",pa),Reflect.get(e,"size",e)}function zv(e){e=Zt(e);const t=Zt(this);return eh(t).has.call(t,e)||(t.add(e),Uo(t,"add",e,e)),this}function Yv(e,t){t=Zt(t);const n=Zt(this),{has:r,get:i}=eh(n);let a=r.call(n,e);a||(e=Zt(e),a=r.call(n,e));const o=i.call(n,e);return n.set(e,t),a?qs(t,o)&&Uo(n,"set",e,t):Uo(n,"add",e,t),this}function Xv(e){const t=Zt(this),{has:n,get:r}=eh(t);let i=n.call(t,e);i||(e=Zt(e),i=n.call(t,e)),r&&r.call(t,e);const a=t.delete(e);return i&&Uo(t,"delete",e,void 0),a}function qv(){const e=Zt(this),t=e.size!==0,n=e.clear();return t&&Uo(e,"clear",void 0,void 0),n}function kd(e,t){return function(r,i){const a=this,o=a.__v_raw,c=Zt(o),d=t?Im:e?Am:Dc;return!e&&es(c,"iterate",pa),o.forEach((f,y)=>r.call(i,d(f),d(y),a))}}function Pd(e,t,n){return function(...r){const i=this.__v_raw,a=Zt(i),o=ol(a),c=e==="entries"||e===Symbol.iterator&&o,d=e==="keys"&&o,f=i[e](...r),y=n?Im:t?Am:Dc;return!t&&es(a,"iterate",d?Ig:pa),{next(){const{value:g,done:v}=f.next();return v?{value:g,done:v}:{value:c?[y(g[0]),y(g[1])]:y(g),done:v}},[Symbol.iterator](){return this}}}}function ui(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function h2(){const e={get(a){return Id(this,a)},get size(){return Ad(this)},has:Od,add:zv,set:Yv,delete:Xv,clear:qv,forEach:kd(!1,!1)},t={get(a){return Id(this,a,!1,!0)},get size(){return Ad(this)},has:Od,add:zv,set:Yv,delete:Xv,clear:qv,forEach:kd(!1,!0)},n={get(a){return Id(this,a,!0)},get size(){return Ad(this,!0)},has(a){return Od.call(this,a,!0)},add:ui("add"),set:ui("set"),delete:ui("delete"),clear:ui("clear"),forEach:kd(!0,!1)},r={get(a){return Id(this,a,!0,!0)},get size(){return Ad(this,!0)},has(a){return Od.call(this,a,!0)},add:ui("add"),set:ui("set"),delete:ui("delete"),clear:ui("clear"),forEach:kd(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(a=>{e[a]=Pd(a,!1,!1),n[a]=Pd(a,!0,!1),t[a]=Pd(a,!1,!0),r[a]=Pd(a,!0,!0)}),[e,n,t,r]}const[p2,g2,m2,y2]=h2();function th(e,t){const n=t?e?y2:m2:e?g2:p2;return(r,i,a)=>i==="__v_isReactive"?!e:i==="__v_isReadonly"?e:i==="__v_raw"?r:Reflect.get(sn(n,i)&&i in r?n:r,i,a)}const b2={get:th(!1,!1)},v2={get:th(!1,!0)},_2={get:th(!0,!1)},x2={get:th(!0,!0)},L1=new WeakMap,R1=new WeakMap,D1=new WeakMap,M1=new WeakMap;function E2(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function S2(e){return e.__v_skip||!Object.isExtensible(e)?0:E2(FP(e))}function eu(e){return Ai(e)?e:rh(e,!1,c2,b2,L1)}function Om(e){return rh(e,!1,d2,v2,R1)}function nh(e){return rh(e,!0,u2,_2,D1)}function $1(e){return rh(e,!0,f2,x2,M1)}function rh(e,t,n,r,i){if(!mn(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const a=i.get(e);if(a)return a;const o=S2(e);if(o===0)return e;const c=new Proxy(e,o===2?r:n);return i.set(e,c),c}function Ci(e){return Ai(e)?Ci(e.__v_raw):!!(e&&e.__v_isReactive)}function Ai(e){return!!(e&&e.__v_isReadonly)}function dl(e){return!!(e&&e.__v_isShallow)}function sh(e){return Ci(e)||Ai(e)}function Zt(e){const t=e&&e.__v_raw;return t?Zt(t):e}function oh(e){return yf(e,"__v_skip",!0),e}const Dc=e=>mn(e)?eu(e):e,Am=e=>mn(e)?nh(e):e;class F1{constructor(t,n,r,i){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new va(()=>t(this._value),()=>al(this,1),()=>this.dep&&I1(this.dep)),this.effect.computed=this,this.effect.active=this._cacheable=!i,this.__v_isReadonly=r}get value(){const t=Zt(this);return(!t._cacheable||t.effect.dirty)&&qs(t._value,t._value=t.effect.run())&&al(t,2),km(t),t.effect._dirtyLevel>=1&&al(t,1),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function w2(e,t,n=!1){let r,i;const a=bt(e);return a?(r=e,i=sr):(r=e.get,i=e.set),new F1(r,i,a||!i,n)}function km(e){Ti&&ha&&(e=Zt(e),T1(ha,e.dep||(e.dep=O1(()=>e.dep=void 0,e instanceof F1?e:void 0))))}function al(e,t=2,n){e=Zt(e);const r=e.dep;r&&C1(r,t)}function ir(e){return!!(e&&e.__v_isRef===!0)}function ft(e){return B1(e,!1)}function ih(e){return B1(e,!0)}function B1(e,t){return ir(e)?e:new T2(e,t)}class T2{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:Zt(t),this._value=n?t:Dc(t)}get value(){return km(this),this._value}set value(t){const n=this.__v_isShallow||dl(t)||Ai(t);t=n?t:Zt(t),qs(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Dc(t),al(this,2))}}function U1(e){al(e,2)}function tu(e){return ir(e)?e.value:e}function H1(e){return bt(e)?e():tu(e)}const C2={get:(e,t,n)=>tu(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const i=e[t];return ir(i)&&!ir(n)?(i.value=n,!0):Reflect.set(e,t,n,r)}};function ah(e){return Ci(e)?e:new Proxy(e,C2)}class I2{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>km(this),()=>al(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function Pm(e){return new I2(e)}function j1(e){const t=Xe(e)?new Array(e.length):{};for(const n in e)t[n]=W1(e,n);return t}class O2{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return o2(Zt(this._object),this._key)}}class A2{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function V1(e,t,n){return ir(e)?e:bt(e)?new A2(e):mn(e)&&arguments.length>1?W1(e,t,n):ft(e)}function W1(e,t,n){const r=e[t];return ir(r)?r:new O2(e,t,n)}const G1={GET:"get",HAS:"has",ITERATE:"iterate"},K1={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"};/** +**/let ds;class Jf{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=ds,!t&&ds&&(this.index=(ds.scopes||(ds.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=ds;try{return ds=this,t()}finally{ds=n}}}on(){ds=this}off(){ds=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=2))break}this._dirtyLevel<2&&(this._dirtyLevel=0),Ia()}return this._dirtyLevel>=2}set dirty(t){this._dirtyLevel=t?2:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Ti,n=ha;try{return Ti=!0,ha=this,this._runnings++,Wv(this),this.fn()}finally{Gv(this),this._runnings--,ha=n,Ti=t}}stop(){var t;this.active&&(Wv(this),Gv(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function s2(e){return e.value}function Wv(e){e._trackId++,e._depsLength=0}function Gv(e){if(e.deps&&e.deps.length>e._depsLength){for(let t=e._depsLength;t{n.dirty&&n.run()});t&&(on(n,t),t.scope&&_1(n,t.scope)),(!t||!t.lazy)&&n.run();const r=n.run.bind(n);return r.effect=n,r}function S1(e){e.effect.stop()}let Ti=!0,Tg=0;const w1=[];function Ca(){w1.push(Ti),Ti=!1}function Ia(){const e=w1.pop();Ti=e===void 0?!0:e}function Tm(){Tg++}function Cm(){for(Tg--;!Tg&&Cg.length;)Cg.shift()()}function T1(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const r=e.deps[e._depsLength];r!==t?(r&&x1(r,e),e.deps[e._depsLength++]=t):e._depsLength++}}const Cg=[];function C1(e,t,n){Tm();for(const r of e.keys())if(r._dirtyLevel{const n=new Map;return n.cleanup=e,n.computed=t,n},bf=new WeakMap,pa=Symbol(""),Ig=Symbol("");function es(e,t,n){if(Ti&&ha){let r=bf.get(e);r||bf.set(e,r=new Map);let i=r.get(n);i||r.set(n,i=O1(()=>r.delete(n))),T1(ha,i)}}function Uo(e,t,n,r,i,a){const o=bf.get(e);if(!o)return;let c=[];if(t==="clear")c=[...o.values()];else if(n==="length"&&Xe(e)){const d=Number(r);o.forEach((f,y)=>{(y==="length"||!Xs(y)&&y>=d)&&c.push(f)})}else switch(n!==void 0&&c.push(o.get(n)),t){case"add":Xe(e)?Em(n)&&c.push(o.get("length")):(c.push(o.get(pa)),ol(e)&&c.push(o.get(Ig)));break;case"delete":Xe(e)||(c.push(o.get(pa)),ol(e)&&c.push(o.get(Ig)));break;case"set":ol(e)&&c.push(o.get(pa));break}Tm();for(const d of c)d&&C1(d,2);Cm()}function o2(e,t){var n;return(n=bf.get(e))==null?void 0:n.get(t)}const i2=ms("__proto__,__v_isRef,__isVue"),A1=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Xs)),Kv=a2();function a2(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=Zt(this);for(let a=0,o=this.length;a{e[t]=function(...n){Ca(),Tm();const r=Zt(this)[t].apply(this,n);return Cm(),Ia(),r}}),e}function l2(e){const t=Zt(this);return es(t,"has",e),t.hasOwnProperty(e)}class k1{constructor(t=!1,n=!1){this._isReadonly=t,this._shallow=n}get(t,n,r){const i=this._isReadonly,a=this._shallow;if(n==="__v_isReactive")return!i;if(n==="__v_isReadonly")return i;if(n==="__v_isShallow")return a;if(n==="__v_raw")return r===(i?a?M1:D1:a?R1:L1).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const o=Xe(t);if(!i){if(o&&sn(Kv,n))return Reflect.get(Kv,n,r);if(n==="hasOwnProperty")return l2}const c=Reflect.get(t,n,r);return(Xs(n)?A1.has(n):i2(n))||(i||es(t,"get",n),a)?c:ir(c)?o&&Em(n)?c:c.value:mn(c)?i?th(c):eu(c):c}}class P1 extends k1{constructor(t=!1){super(!1,t)}set(t,n,r,i){let a=t[n];if(!this._shallow){const d=Ai(a);if(!dl(r)&&!Ai(r)&&(a=Zt(a),r=Zt(r)),!Xe(t)&&ir(a)&&!ir(r))return d?!1:(a.value=r,!0)}const o=Xe(t)&&Em(n)?Number(n)e,Qf=e=>Reflect.getPrototypeOf(e);function Cd(e,t,n=!1,r=!1){e=e.__v_raw;const i=Zt(e),a=Zt(t);n||(qs(t,a)&&es(i,"get",t),es(i,"get",a));const{has:o}=Qf(i),c=r?Im:n?Am:Dc;if(o.call(i,t))return c(e.get(t));if(o.call(i,a))return c(e.get(a));e!==i&&e.get(t)}function Id(e,t=!1){const n=this.__v_raw,r=Zt(n),i=Zt(e);return t||(qs(e,i)&&es(r,"has",e),es(r,"has",i)),e===i?n.has(e):n.has(e)||n.has(i)}function Od(e,t=!1){return e=e.__v_raw,!t&&es(Zt(e),"iterate",pa),Reflect.get(e,"size",e)}function zv(e){e=Zt(e);const t=Zt(this);return Qf(t).has.call(t,e)||(t.add(e),Uo(t,"add",e,e)),this}function Yv(e,t){t=Zt(t);const n=Zt(this),{has:r,get:i}=Qf(n);let a=r.call(n,e);a||(e=Zt(e),a=r.call(n,e));const o=i.call(n,e);return n.set(e,t),a?qs(t,o)&&Uo(n,"set",e,t):Uo(n,"add",e,t),this}function Xv(e){const t=Zt(this),{has:n,get:r}=Qf(t);let i=n.call(t,e);i||(e=Zt(e),i=n.call(t,e)),r&&r.call(t,e);const a=t.delete(e);return i&&Uo(t,"delete",e,void 0),a}function qv(){const e=Zt(this),t=e.size!==0,n=e.clear();return t&&Uo(e,"clear",void 0,void 0),n}function Ad(e,t){return function(r,i){const a=this,o=a.__v_raw,c=Zt(o),d=t?Im:e?Am:Dc;return!e&&es(c,"iterate",pa),o.forEach((f,y)=>r.call(i,d(f),d(y),a))}}function kd(e,t,n){return function(...r){const i=this.__v_raw,a=Zt(i),o=ol(a),c=e==="entries"||e===Symbol.iterator&&o,d=e==="keys"&&o,f=i[e](...r),y=n?Im:t?Am:Dc;return!t&&es(a,"iterate",d?Ig:pa),{next(){const{value:g,done:v}=f.next();return v?{value:g,done:v}:{value:c?[y(g[0]),y(g[1])]:y(g),done:v}},[Symbol.iterator](){return this}}}}function ui(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function h2(){const e={get(a){return Cd(this,a)},get size(){return Od(this)},has:Id,add:zv,set:Yv,delete:Xv,clear:qv,forEach:Ad(!1,!1)},t={get(a){return Cd(this,a,!1,!0)},get size(){return Od(this)},has:Id,add:zv,set:Yv,delete:Xv,clear:qv,forEach:Ad(!1,!0)},n={get(a){return Cd(this,a,!0)},get size(){return Od(this,!0)},has(a){return Id.call(this,a,!0)},add:ui("add"),set:ui("set"),delete:ui("delete"),clear:ui("clear"),forEach:Ad(!0,!1)},r={get(a){return Cd(this,a,!0,!0)},get size(){return Od(this,!0)},has(a){return Id.call(this,a,!0)},add:ui("add"),set:ui("set"),delete:ui("delete"),clear:ui("clear"),forEach:Ad(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(a=>{e[a]=kd(a,!1,!1),n[a]=kd(a,!0,!1),t[a]=kd(a,!1,!0),r[a]=kd(a,!0,!0)}),[e,n,t,r]}const[p2,g2,m2,y2]=h2();function eh(e,t){const n=t?e?y2:m2:e?g2:p2;return(r,i,a)=>i==="__v_isReactive"?!e:i==="__v_isReadonly"?e:i==="__v_raw"?r:Reflect.get(sn(n,i)&&i in r?n:r,i,a)}const b2={get:eh(!1,!1)},v2={get:eh(!1,!0)},_2={get:eh(!0,!1)},x2={get:eh(!0,!0)},L1=new WeakMap,R1=new WeakMap,D1=new WeakMap,M1=new WeakMap;function E2(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function S2(e){return e.__v_skip||!Object.isExtensible(e)?0:E2(FP(e))}function eu(e){return Ai(e)?e:nh(e,!1,c2,b2,L1)}function Om(e){return nh(e,!1,d2,v2,R1)}function th(e){return nh(e,!0,u2,_2,D1)}function $1(e){return nh(e,!0,f2,x2,M1)}function nh(e,t,n,r,i){if(!mn(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const a=i.get(e);if(a)return a;const o=S2(e);if(o===0)return e;const c=new Proxy(e,o===2?r:n);return i.set(e,c),c}function Ci(e){return Ai(e)?Ci(e.__v_raw):!!(e&&e.__v_isReactive)}function Ai(e){return!!(e&&e.__v_isReadonly)}function dl(e){return!!(e&&e.__v_isShallow)}function rh(e){return Ci(e)||Ai(e)}function Zt(e){const t=e&&e.__v_raw;return t?Zt(t):e}function sh(e){return mf(e,"__v_skip",!0),e}const Dc=e=>mn(e)?eu(e):e,Am=e=>mn(e)?th(e):e;class F1{constructor(t,n,r,i){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new va(()=>t(this._value),()=>al(this,1),()=>this.dep&&I1(this.dep)),this.effect.computed=this,this.effect.active=this._cacheable=!i,this.__v_isReadonly=r}get value(){const t=Zt(this);return(!t._cacheable||t.effect.dirty)&&qs(t._value,t._value=t.effect.run())&&al(t,2),km(t),t.effect._dirtyLevel>=1&&al(t,1),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function w2(e,t,n=!1){let r,i;const a=bt(e);return a?(r=e,i=sr):(r=e.get,i=e.set),new F1(r,i,a||!i,n)}function km(e){Ti&&ha&&(e=Zt(e),T1(ha,e.dep||(e.dep=O1(()=>e.dep=void 0,e instanceof F1?e:void 0))))}function al(e,t=2,n){e=Zt(e);const r=e.dep;r&&C1(r,t)}function ir(e){return!!(e&&e.__v_isRef===!0)}function ft(e){return B1(e,!1)}function oh(e){return B1(e,!0)}function B1(e,t){return ir(e)?e:new T2(e,t)}class T2{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:Zt(t),this._value=n?t:Dc(t)}get value(){return km(this),this._value}set value(t){const n=this.__v_isShallow||dl(t)||Ai(t);t=n?t:Zt(t),qs(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Dc(t),al(this,2))}}function U1(e){al(e,2)}function tu(e){return ir(e)?e.value:e}function H1(e){return bt(e)?e():tu(e)}const C2={get:(e,t,n)=>tu(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const i=e[t];return ir(i)&&!ir(n)?(i.value=n,!0):Reflect.set(e,t,n,r)}};function ih(e){return Ci(e)?e:new Proxy(e,C2)}class I2{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>km(this),()=>al(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function Pm(e){return new I2(e)}function j1(e){const t=Xe(e)?new Array(e.length):{};for(const n in e)t[n]=W1(e,n);return t}class O2{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return o2(Zt(this._object),this._key)}}class A2{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function V1(e,t,n){return ir(e)?e:bt(e)?new A2(e):mn(e)&&arguments.length>1?W1(e,t,n):ft(e)}function W1(e,t,n){const r=e[t];return ir(r)?r:new O2(e,t,n)}const G1={GET:"get",HAS:"has",ITERATE:"iterate"},K1={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"};/** * @vue/runtime-core v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/function z1(e,t){}const Y1={SETUP_FUNCTION:0,0:"SETUP_FUNCTION",RENDER_FUNCTION:1,1:"RENDER_FUNCTION",WATCH_GETTER:2,2:"WATCH_GETTER",WATCH_CALLBACK:3,3:"WATCH_CALLBACK",WATCH_CLEANUP:4,4:"WATCH_CLEANUP",NATIVE_EVENT_HANDLER:5,5:"NATIVE_EVENT_HANDLER",COMPONENT_EVENT_HANDLER:6,6:"COMPONENT_EVENT_HANDLER",VNODE_HOOK:7,7:"VNODE_HOOK",DIRECTIVE_HOOK:8,8:"DIRECTIVE_HOOK",TRANSITION_HOOK:9,9:"TRANSITION_HOOK",APP_ERROR_HANDLER:10,10:"APP_ERROR_HANDLER",APP_WARN_HANDLER:11,11:"APP_WARN_HANDLER",FUNCTION_REF:12,12:"FUNCTION_REF",ASYNC_COMPONENT_LOADER:13,13:"ASYNC_COMPONENT_LOADER",SCHEDULER:14,14:"SCHEDULER"},k2={sp:"serverPrefetch hook",bc:"beforeCreate hook",c:"created hook",bm:"beforeMount hook",m:"mounted hook",bu:"beforeUpdate hook",u:"updated",bum:"beforeUnmount hook",um:"unmounted hook",a:"activated hook",da:"deactivated hook",ec:"errorCaptured hook",rtc:"renderTracked hook",rtg:"renderTriggered hook",0:"setup function",1:"render function",2:"watcher getter",3:"watcher callback",4:"watcher cleanup function",5:"native event handler",6:"component event handler",7:"vnode hook",8:"directive hook",9:"transition hook",10:"app errorHandler",11:"app warnHandler",12:"ref function",13:"async component loader",14:"scheduler flush. This is likely a Vue internals bug. Please open an issue at https://github.com/vuejs/core ."};function go(e,t,n,r){let i;try{i=r?e(...r):e()}catch(a){Ri(a,t,n)}return i}function Qr(e,t,n,r){if(bt(e)){const a=go(e,t,n,r);return a&&xm(a)&&a.catch(o=>{Ri(o,t,n)}),a}const i=[];for(let a=0;a>>1,i=wr[r],a=Fc(i);afo&&wr.splice(t,1)}function $c(e){Xe(e)?ll.push(...e):(!yi||!yi.includes(e,e.allowRecurse?aa+1:aa))&&ll.push(e),q1()}function Jv(e,t,n=Mc?fo+1:0){for(;nFc(n)-Fc(r));if(ll.length=0,yi){yi.push(...t);return}for(yi=t,aa=0;aae.id==null?1/0:e.id,R2=(e,t)=>{const n=Fc(e)-Fc(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function J1(e){Og=!1,Mc=!0,wr.sort(R2);try{for(fo=0;foQa.emit(i,...a)),Nd=[]):typeof window<"u"&&window.HTMLElement&&!((r=(n=window.navigator)==null?void 0:n.userAgent)!=null&&r.includes("jsdom"))?((t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(a=>{Z1(a,t)}),setTimeout(()=>{Qa||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Nd=[])},3e3)):Nd=[]}function D2(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||cn;let i=n;const a=t.startsWith("update:"),o=a&&t.slice(7);if(o&&o in r){const y=`${o==="modelValue"?"model":o}Modifiers`,{number:g,trim:v}=r[y]||cn;v&&(i=n.map(S=>At(S)?S.trim():S)),g&&(i=n.map(Rc))}let c,d=r[c=fa(t)]||r[c=fa(Ln(t))];!d&&a&&(d=r[c=fa(ps(t))]),d&&Qr(d,e,6,i);const f=r[c+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[c])return;e.emitted[c]=!0,Qr(f,e,6,i)}}function Q1(e,t,n=!1){const r=t.emitsCache,i=r.get(e);if(i!==void 0)return i;const a=e.emits;let o={},c=!1;if(!bt(e)){const d=f=>{const y=Q1(f,t,!0);y&&(c=!0,on(o,y))};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}return!a&&!c?(mn(e)&&r.set(e,null),null):(Xe(a)?a.forEach(d=>o[d]=null):on(o,a),mn(e)&&r.set(e,o),o)}function ch(e,t){return!e||!wa(t)?!1:(t=t.slice(2).replace(/Once$/,""),sn(e,t[0].toLowerCase()+t.slice(1))||sn(e,ps(t))||sn(e,t))}let Kn=null,uh=null;function Bc(e){const t=Kn;return Kn=e,uh=e&&e.type.__scopeId||null,t}function ex(e){uh=e}function tx(){uh=null}const nx=e=>Mr;function Mr(e,t=Kn,n){if(!t||e._n)return e;const r=(...i)=>{r._d&&Sf(-1);const a=Bc(t);let o;try{o=e(...i)}finally{Bc(a),r._d&&Sf(1)}return o};return r._n=!0,r._c=!0,r._d=!0,r}function tf(e){const{type:t,vnode:n,proxy:r,withProxy:i,props:a,propsOptions:[o],slots:c,attrs:d,emit:f,render:y,renderCache:g,data:v,setupState:S,ctx:E,inheritAttrs:T}=e;let N,I;const D=Bc(e);try{if(n.shapeFlag&4){const R=i||r,U=R;N=hs(y.call(U,R,g,a,S,v,E)),I=d}else{const R=t;N=hs(R.length>1?R(a,{attrs:d,slots:c,emit:f}):R(a,null)),I=t.props?d:$2(d)}}catch(R){Tc.length=0,Ri(R,e,1),N=mt(gr)}let L=N;if(I&&T!==!1){const R=Object.keys(I),{shapeFlag:U}=L;R.length&&U&7&&(o&&R.some(vm)&&(I=F2(I,o)),L=Js(L,I))}return n.dirs&&(L=Js(L),L.dirs=L.dirs?L.dirs.concat(n.dirs):n.dirs),n.transition&&(L.transition=n.transition),N=L,Bc(D),N}function M2(e,t=!0){let n;for(let r=0;r{let t;for(const n in e)(n==="class"||n==="style"||wa(n))&&((t||(t={}))[n]=e[n]);return t},F2=(e,t)=>{const n={};for(const r in e)(!vm(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function B2(e,t,n){const{props:r,children:i,component:a}=e,{props:o,children:c,patchFlag:d}=t,f=a.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&d>=0){if(d&1024)return!0;if(d&16)return r?Zv(r,o,f):!!o;if(d&8){const y=t.dynamicProps;for(let g=0;ge.__isSuspense;let Ag=0;const H2={name:"Suspense",__isSuspense:!0,process(e,t,n,r,i,a,o,c,d,f){if(e==null)j2(t,n,r,i,a,o,c,d,f);else{if(a&&a.deps>0){t.suspense=e.suspense;return}V2(e,t,n,r,i,o,c,d,f)}},hydrate:W2,create:Mm,normalize:G2},ax=H2;function Uc(e,t){const n=e.props&&e.props[t];bt(n)&&n()}function j2(e,t,n,r,i,a,o,c,d){const{p:f,o:{createElement:y}}=d,g=y("div"),v=e.suspense=Mm(e,i,r,t,g,n,a,o,c,d);f(null,v.pendingBranch=e.ssContent,g,null,r,v,a,o),v.deps>0?(Uc(e,"onPending"),Uc(e,"onFallback"),f(null,e.ssFallback,t,n,r,null,a,o),cl(v,e.ssFallback)):v.resolve(!1,!0)}function V2(e,t,n,r,i,a,o,c,{p:d,um:f,o:{createElement:y}}){const g=t.suspense=e.suspense;g.vnode=t,t.el=e.el;const v=t.ssContent,S=t.ssFallback,{activeBranch:E,pendingBranch:T,isInFallback:N,isHydrating:I}=g;if(T)g.pendingBranch=v,Ks(v,T)?(d(T,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0?g.resolve():N&&(I||(d(E,S,n,r,i,null,a,o,c),cl(g,S)))):(g.pendingId=Ag++,I?(g.isHydrating=!1,g.activeBranch=T):f(T,i,g),g.deps=0,g.effects.length=0,g.hiddenContainer=y("div"),N?(d(null,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0?g.resolve():(d(E,S,n,r,i,null,a,o,c),cl(g,S))):E&&Ks(v,E)?(d(E,v,n,r,i,g,a,o,c),g.resolve(!0)):(d(null,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0&&g.resolve()));else if(E&&Ks(v,E))d(E,v,n,r,i,g,a,o,c),cl(g,v);else if(Uc(t,"onPending"),g.pendingBranch=v,v.shapeFlag&512?g.pendingId=v.component.suspenseId:g.pendingId=Ag++,d(null,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0)g.resolve();else{const{timeout:D,pendingId:L}=g;D>0?setTimeout(()=>{g.pendingId===L&&g.fallback(S)},D):D===0&&g.fallback(S)}}function Mm(e,t,n,r,i,a,o,c,d,f,y=!1){const{p:g,m:v,um:S,n:E,o:{parentNode:T,remove:N}}=f;let I;const D=K2(e);D&&t!=null&&t.pendingBranch&&(I=t.pendingId,t.deps++);const L=e.props?bf(e.props.timeout):void 0,R=a,U={vnode:e,parent:t,parentComponent:n,namespace:o,container:r,hiddenContainer:i,deps:0,pendingId:Ag++,timeout:typeof L=="number"?L:-1,activeBranch:null,pendingBranch:null,isInFallback:!y,isHydrating:y,isUnmounted:!1,effects:[],resolve(H=!1,m=!1){const{vnode:K,activeBranch:F,pendingBranch:V,pendingId:re,effects:ce,parentComponent:J,container:ye}=U;let Me=!1;U.isHydrating?U.isHydrating=!1:H||(Me=F&&V.transition&&V.transition.mode==="out-in",Me&&(F.transition.afterLeave=()=>{re===U.pendingId&&(v(V,ye,a===R?E(F):a,0),$c(ce))}),F&&(T(F.el)!==U.hiddenContainer&&(a=E(F)),S(F,J,U,!0)),Me||v(V,ye,a,0)),cl(U,V),U.pendingBranch=null,U.isInFallback=!1;let fe=U.parent,Se=!1;for(;fe;){if(fe.pendingBranch){fe.effects.push(...ce),Se=!0;break}fe=fe.parent}!Se&&!Me&&$c(ce),U.effects=[],D&&t&&t.pendingBranch&&I===t.pendingId&&(t.deps--,t.deps===0&&!m&&t.resolve()),Uc(K,"onResolve")},fallback(H){if(!U.pendingBranch)return;const{vnode:m,activeBranch:K,parentComponent:F,container:V,namespace:re}=U;Uc(m,"onFallback");const ce=E(K),J=()=>{U.isInFallback&&(g(null,H,V,ce,F,null,re,c,d),cl(U,H))},ye=H.transition&&H.transition.mode==="out-in";ye&&(K.transition.afterLeave=J),U.isInFallback=!0,S(K,F,null,!0),ye||J()},move(H,m,K){U.activeBranch&&v(U.activeBranch,H,m,K),U.container=H},next(){return U.activeBranch&&E(U.activeBranch)},registerDep(H,m){const K=!!U.pendingBranch;K&&U.deps++;const F=H.vnode.el;H.asyncDep.catch(V=>{Ri(V,H,0)}).then(V=>{if(H.isUnmounted||U.isUnmounted||U.pendingId!==H.suspenseId)return;H.asyncResolved=!0;const{vnode:re}=H;Fg(H,V,!1),F&&(re.el=F);const ce=!F&&H.subTree.el;m(H,re,T(F||H.subTree.el),F?null:E(H.subTree),U,o,d),ce&&N(ce),Lm(H,re.el),K&&--U.deps===0&&U.resolve()})},unmount(H,m){U.isUnmounted=!0,U.activeBranch&&S(U.activeBranch,n,H,m),U.pendingBranch&&S(U.pendingBranch,n,H,m)}};return U}function W2(e,t,n,r,i,a,o,c,d){const f=t.suspense=Mm(t,r,n,e.parentNode,document.createElement("div"),null,i,a,o,c,!0),y=d(e,f.pendingBranch=t.ssContent,n,f,a,o);return f.deps===0&&f.resolve(!1,!0),y}function G2(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=e_(r?n.default:n),e.ssFallback=r?e_(n.fallback):mt(gr)}function e_(e){let t;if(bt(e)){const n=xa&&e._c;n&&(e._d=!1,_e()),e=e(),n&&(e._d=!0,t=Jr,Gx())}return Xe(e)&&(e=M2(e)),e=hs(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function lx(e,t){t&&t.pendingBranch?Xe(e)?t.effects.push(...e):t.effects.push(e):$c(e)}function cl(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e;let i=t.el;for(;!i&&t.component;)t=t.component.subTree,i=t.el;n.el=i,r&&r.subTree===n&&(r.vnode.el=i,Lm(r,i))}function K2(e){var t;return((t=e.props)==null?void 0:t.suspensible)!=null&&e.props.suspensible!==!1}const $m=Symbol.for("v-scx"),Fm=()=>En($m);function cx(e,t){return ru(e,null,t)}function Bm(e,t){return ru(e,null,{flush:"post"})}function Um(e,t){return ru(e,null,{flush:"sync"})}const Ld={};function Ns(e,t,n){return ru(e,t,n)}function ru(e,t,{immediate:n,deep:r,flush:i,once:a,onTrack:o,onTrigger:c}=cn){if(t&&a){const H=t;t=(...m)=>{H(...m),U()}}const d=nr,f=H=>r===!0?H:la(H,r===!1?1:void 0);let y,g=!1,v=!1;if(ir(e)?(y=()=>e.value,g=dl(e)):Ci(e)?(y=()=>f(e),g=!0):Xe(e)?(v=!0,g=e.some(H=>Ci(H)||dl(H)),y=()=>e.map(H=>{if(ir(H))return H.value;if(Ci(H))return f(H);if(bt(H))return go(H,d,2)})):bt(e)?t?y=()=>go(e,d,2):y=()=>(S&&S(),Qr(e,d,3,[E])):y=sr,t&&r){const H=y;y=()=>la(H())}let S,E=H=>{S=L.onStop=()=>{go(H,d,4),S=L.onStop=void 0}},T;if(cu)if(E=sr,t?n&&Qr(t,d,3,[y(),v?[]:void 0,E]):y(),i==="sync"){const H=Fm();T=H.__watcherHandles||(H.__watcherHandles=[])}else return sr;let N=v?new Array(e.length).fill(Ld):Ld;const I=()=>{if(!(!L.active||!L.dirty))if(t){const H=L.run();(r||g||(v?H.some((m,K)=>qs(m,N[K])):qs(H,N)))&&(S&&S(),Qr(t,d,3,[H,N===Ld?void 0:v&&N[0]===Ld?[]:N,E]),N=H)}else L.run()};I.allowRecurse=!!t;let D;i==="sync"?D=I:i==="post"?D=()=>pr(I,d&&d.suspense):(I.pre=!0,d&&(I.id=d.uid),D=()=>lh(I));const L=new va(y,sr,D),R=Qf(),U=()=>{L.stop(),R&&_m(R.effects,L)};return t?n?I():N=L.run():i==="post"?pr(L.run.bind(L),d&&d.suspense):L.run(),T&&T.push(U),U}function z2(e,t,n){const r=this.proxy,i=At(e)?e.includes(".")?ux(r,e):()=>r[e]:e.bind(r,r);let a;bt(t)?a=t:(a=t.handler,n=t);const o=Ea(this),c=ru(i,a.bind(r),n);return o(),c}function ux(e,t){const n=t.split(".");return()=>{let r=e;for(let i=0;i0){if(n>=t)return e;n++}if(r=r||new Set,r.has(e))return e;if(r.add(e),ir(e))la(e.value,t,n,r);else if(Xe(e))for(let i=0;i{la(i,t,n,r)});else if(p1(e))for(const i in e)la(e[i],t,n,r);return e}function dn(e,t){if(Kn===null)return e;const n=mh(Kn)||Kn.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;i{e.isMounted=!0}),au(()=>{e.isUnmounting=!0}),e}const Cs=[Function,Array],fh={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Cs,onEnter:Cs,onAfterEnter:Cs,onEnterCancelled:Cs,onBeforeLeave:Cs,onLeave:Cs,onAfterLeave:Cs,onLeaveCancelled:Cs,onBeforeAppear:Cs,onAppear:Cs,onAfterAppear:Cs,onAppearCancelled:Cs},Y2={name:"BaseTransition",props:fh,setup(e,{slots:t}){const n=Fr(),r=dh();let i;return()=>{const a=t.default&&su(t.default(),!0);if(!a||!a.length)return;let o=a[0];if(a.length>1){for(const T of a)if(T.type!==gr){o=T;break}}const c=Zt(e),{mode:d}=c;if(r.isLeaving)return Yp(o);const f=t_(o);if(!f)return Yp(o);const y=_a(f,c,r,n);ki(f,y);const g=n.subTree,v=g&&t_(g);let S=!1;const{getTransitionKey:E}=f.type;if(E){const T=E();i===void 0?i=T:T!==i&&(i=T,S=!0)}if(v&&v.type!==gr&&(!Ks(f,v)||S)){const T=_a(v,c,r,n);if(ki(v,T),d==="out-in")return r.isLeaving=!0,T.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},Yp(o);d==="in-out"&&f.type!==gr&&(T.delayLeave=(N,I,D)=>{const L=dx(r,v);L[String(v.key)]=v,N[bi]=()=>{I(),N[bi]=void 0,delete y.delayedLeave},y.delayedLeave=D})}return o}}},Hm=Y2;function dx(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function _a(e,t,n,r){const{appear:i,mode:a,persisted:o=!1,onBeforeEnter:c,onEnter:d,onAfterEnter:f,onEnterCancelled:y,onBeforeLeave:g,onLeave:v,onAfterLeave:S,onLeaveCancelled:E,onBeforeAppear:T,onAppear:N,onAfterAppear:I,onAppearCancelled:D}=t,L=String(e.key),R=dx(n,e),U=(K,F)=>{K&&Qr(K,r,9,F)},H=(K,F)=>{const V=F[1];U(K,F),Xe(K)?K.every(re=>re.length<=1)&&V():K.length<=1&&V()},m={mode:a,persisted:o,beforeEnter(K){let F=c;if(!n.isMounted)if(i)F=T||c;else return;K[bi]&&K[bi](!0);const V=R[L];V&&Ks(e,V)&&V.el[bi]&&V.el[bi](),U(F,[K])},enter(K){let F=d,V=f,re=y;if(!n.isMounted)if(i)F=N||d,V=I||f,re=D||y;else return;let ce=!1;const J=K[Rd]=ye=>{ce||(ce=!0,ye?U(re,[K]):U(V,[K]),m.delayedLeave&&m.delayedLeave(),K[Rd]=void 0)};F?H(F,[K,J]):J()},leave(K,F){const V=String(e.key);if(K[Rd]&&K[Rd](!0),n.isUnmounting)return F();U(g,[K]);let re=!1;const ce=K[bi]=J=>{re||(re=!0,F(),J?U(E,[K]):U(S,[K]),K[bi]=void 0,R[V]===e&&delete R[V])};R[V]=e,v?H(v,[K,ce]):ce()},clone(K){return _a(K,t,n,r)}};return m}function Yp(e){if(ou(e))return e=Js(e),e.children=null,e}function t_(e){return ou(e)?e.children?e.children[0]:void 0:e}function ki(e,t){e.shapeFlag&6&&e.component?ki(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function su(e,t=!1,n){let r=[],i=0;for(let a=0;a1)for(let a=0;a!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function fx(e){bt(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:i=200,timeout:a,suspensible:o=!0,onError:c}=e;let d=null,f,y=0;const g=()=>(y++,d=null,v()),v=()=>{let S;return d||(S=d=t().catch(E=>{if(E=E instanceof Error?E:new Error(String(E)),c)return new Promise((T,N)=>{c(E,()=>T(g()),()=>N(E),y+1)});throw E}).then(E=>S!==d&&d?d:(E&&(E.__esModule||E[Symbol.toStringTag]==="Module")&&(E=E.default),f=E,E)))};return Oa({name:"AsyncComponentWrapper",__asyncLoader:v,get __asyncResolved(){return f},setup(){const S=nr;if(f)return()=>Xp(f,S);const E=D=>{d=null,Ri(D,S,13,!r)};if(o&&S.suspense||cu)return v().then(D=>()=>Xp(D,S)).catch(D=>(E(D),()=>r?mt(r,{error:D}):null));const T=ft(!1),N=ft(),I=ft(!!i);return i&&setTimeout(()=>{I.value=!1},i),a!=null&&setTimeout(()=>{if(!T.value&&!N.value){const D=new Error(`Async component timed out after ${a}ms.`);E(D),N.value=D}},a),v().then(()=>{T.value=!0,S.parent&&ou(S.parent.vnode)&&(S.parent.effect.dirty=!0,lh(S.parent.update))}).catch(D=>{E(D),N.value=D}),()=>{if(T.value&&f)return Xp(f,S);if(N.value&&r)return mt(r,{error:N.value});if(n&&!I.value)return mt(n)}}})}function Xp(e,t){const{ref:n,props:r,children:i,ce:a}=t.vnode,o=mt(e,r,i);return o.ref=n,o.ce=a,delete t.vnode.ce,o}const ou=e=>e.type.__isKeepAlive,X2={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Fr(),r=n.ctx;if(!r.renderer)return()=>{const D=t.default&&t.default();return D&&D.length===1?D[0]:D};const i=new Map,a=new Set;let o=null;const c=n.suspense,{renderer:{p:d,m:f,um:y,o:{createElement:g}}}=r,v=g("div");r.activate=(D,L,R,U,H)=>{const m=D.component;f(D,L,R,0,c),d(m.vnode,D,L,R,m,c,U,D.slotScopeIds,H),pr(()=>{m.isDeactivated=!1,m.a&&il(m.a);const K=D.props&&D.props.onVnodeMounted;K&&qr(K,m.parent,D)},c)},r.deactivate=D=>{const L=D.component;f(D,v,null,1,c),pr(()=>{L.da&&il(L.da);const R=D.props&&D.props.onVnodeUnmounted;R&&qr(R,L.parent,D),L.isDeactivated=!0},c)};function S(D){qp(D),y(D,n,c,!0)}function E(D){i.forEach((L,R)=>{const U=Ug(L.type);U&&(!D||!D(U))&&T(R)})}function T(D){const L=i.get(D);!o||!Ks(L,o)?S(L):o&&qp(o),i.delete(D),a.delete(D)}Ns(()=>[e.include,e.exclude],([D,L])=>{D&&E(R=>mc(D,R)),L&&E(R=>!mc(L,R))},{flush:"post",deep:!0});let N=null;const I=()=>{N!=null&&i.set(N,Jp(n.subTree))};return Aa(I),iu(I),au(()=>{i.forEach(D=>{const{subTree:L,suspense:R}=n,U=Jp(L);if(D.type===U.type&&D.key===U.key){qp(U);const H=U.component.da;H&&pr(H,R);return}S(D)})}),()=>{if(N=null,!t.default)return null;const D=t.default(),L=D[0];if(D.length>1)return o=null,D;if(!Wo(L)||!(L.shapeFlag&4)&&!(L.shapeFlag&128))return o=null,L;let R=Jp(L);const U=R.type,H=Ug(ga(R)?R.type.__asyncResolved||{}:U),{include:m,exclude:K,max:F}=e;if(m&&(!H||!mc(m,H))||K&&H&&mc(K,H))return o=R,L;const V=R.key==null?U:R.key,re=i.get(V);return R.el&&(R=Js(R),L.shapeFlag&128&&(L.ssContent=R)),N=V,re?(R.el=re.el,R.component=re.component,R.transition&&ki(R,R.transition),R.shapeFlag|=512,a.delete(V),a.add(V)):(a.add(V),F&&a.size>parseInt(F,10)&&T(a.values().next().value)),R.shapeFlag|=256,o=R,ix(L.type)?L:R}}},hx=X2;function mc(e,t){return Xe(e)?e.some(n=>mc(n,t)):At(e)?e.split(",").includes(t):$P(e)?e.test(t):!1}function jm(e,t){px(e,"a",t)}function Vm(e,t){px(e,"da",t)}function px(e,t,n=nr){const r=e.__wdc||(e.__wdc=()=>{let i=n;for(;i;){if(i.isDeactivated)return;i=i.parent}return e()});if(hh(t,r,n),n){let i=n.parent;for(;i&&i.parent;)ou(i.parent.vnode)&&q2(r,t,n,i),i=i.parent}}function q2(e,t,n,r){const i=hh(t,e,r,!0);Tl(()=>{_m(r[t],i)},n)}function qp(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Jp(e){return e.shapeFlag&128?e.ssContent:e}function hh(e,t,n=nr,r=!1){if(n){const i=n[e]||(n[e]=[]),a=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;Ca();const c=Ea(n),d=Qr(t,n,e,o);return c(),Ia(),d});return r?i.unshift(a):i.push(a),a}}const Go=e=>(t,n=nr)=>(!cu||e==="sp")&&hh(e,(...r)=>t(...r),n),ph=Go("bm"),Aa=Go("m"),Wm=Go("bu"),iu=Go("u"),au=Go("bum"),Tl=Go("um"),Gm=Go("sp"),Km=Go("rtg"),zm=Go("rtc");function Ym(e,t=nr){hh("ec",e,t)}function $r(e,t,n,r){let i;const a=n&&n[r];if(Xe(e)||At(e)){i=new Array(e.length);for(let o=0,c=e.length;ot(o,c,void 0,a&&a[c]));else{const o=Object.keys(e);i=new Array(o.length);for(let c=0,d=o.length;c{const a=r.fn(...i);return a&&(a.key=r.key),a}:r.fn)}return e}function lu(e,t,n={},r,i){if(Kn.isCE||Kn.parent&&ga(Kn.parent)&&Kn.parent.isCE)return t!=="default"&&(n.name=t),mt("slot",n,r&&r());let a=e[t];a&&a._c&&(a._d=!1),_e();const o=a&&mx(a(n)),c=_n(Gt,{key:n.key||o&&o.key||`_${t}`},o||(r?r():[]),o&&e._===1?64:-2);return!i&&c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),a&&a._c&&(a._d=!0),c}function mx(e){return e.some(t=>Wo(t)?!(t.type===gr||t.type===Gt&&!mx(t.children)):!0)?e:null}function yx(e,t){const n={};for(const r in e)n[t&&/[A-Z]/.test(r)?`on:${r}`:fa(r)]=e[r];return n}const kg=e=>e?Jx(e)?mh(e)||e.proxy:kg(e.parent):null,Sc=on(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>kg(e.parent),$root:e=>kg(e.root),$emit:e=>e.emit,$options:e=>Xm(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,lh(e.update)}),$nextTick:e=>e.n||(e.n=nu.bind(e.proxy)),$watch:e=>z2.bind(e)}),Zp=(e,t)=>e!==cn&&!e.__isScriptSetup&&sn(e,t),Pg={get({_:e},t){const{ctx:n,setupState:r,data:i,props:a,accessCache:o,type:c,appContext:d}=e;let f;if(t[0]!=="$"){const S=o[t];if(S!==void 0)switch(S){case 1:return r[t];case 2:return i[t];case 4:return n[t];case 3:return a[t]}else{if(Zp(r,t))return o[t]=1,r[t];if(i!==cn&&sn(i,t))return o[t]=2,i[t];if((f=e.propsOptions[0])&&sn(f,t))return o[t]=3,a[t];if(n!==cn&&sn(n,t))return o[t]=4,n[t];Ng&&(o[t]=0)}}const y=Sc[t];let g,v;if(y)return t==="$attrs"&&es(e,"get",t),y(e);if((g=c.__cssModules)&&(g=g[t]))return g;if(n!==cn&&sn(n,t))return o[t]=4,n[t];if(v=d.config.globalProperties,sn(v,t))return v[t]},set({_:e},t,n){const{data:r,setupState:i,ctx:a}=e;return Zp(i,t)?(i[t]=n,!0):r!==cn&&sn(r,t)?(r[t]=n,!0):sn(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(a[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:i,propsOptions:a}},o){let c;return!!n[o]||e!==cn&&sn(e,o)||Zp(t,o)||(c=a[0])&&sn(c,o)||sn(r,o)||sn(Sc,o)||sn(i.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:sn(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},J2=on({},Pg,{get(e,t){if(t!==Symbol.unscopables)return Pg.get(e,t,e)},has(e,t){return t[0]!=="_"&&!VP(t)}});function bx(){return null}function vx(){return null}function _x(e){}function xx(e){}function Ex(){return null}function Sx(){}function wx(e,t){return null}function Tx(){return Ix().slots}function Cx(){return Ix().attrs}function Ix(){const e=Fr();return e.setupContext||(e.setupContext=tE(e))}function Hc(e){return Xe(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function Ox(e,t){const n=Hc(e);for(const r in t){if(r.startsWith("__skip"))continue;let i=n[r];i?Xe(i)||bt(i)?i=n[r]={type:i,default:t[r]}:i.default=t[r]:i===null&&(i=n[r]={default:t[r]}),i&&t[`__skip_${r}`]&&(i.skipFactory=!0)}return n}function Ax(e,t){return!e||!t?e||t:Xe(e)&&Xe(t)?e.concat(t):on({},Hc(e),Hc(t))}function kx(e,t){const n={};for(const r in e)t.includes(r)||Object.defineProperty(n,r,{enumerable:!0,get:()=>e[r]});return n}function Px(e){const t=Fr();let n=e();return $g(),xm(n)&&(n=n.catch(r=>{throw Ea(t),r})),[n,()=>Ea(t)]}let Ng=!0;function Z2(e){const t=Xm(e),n=e.proxy,r=e.ctx;Ng=!1,t.beforeCreate&&n_(t.beforeCreate,e,"bc");const{data:i,computed:a,methods:o,watch:c,provide:d,inject:f,created:y,beforeMount:g,mounted:v,beforeUpdate:S,updated:E,activated:T,deactivated:N,beforeDestroy:I,beforeUnmount:D,destroyed:L,unmounted:R,render:U,renderTracked:H,renderTriggered:m,errorCaptured:K,serverPrefetch:F,expose:V,inheritAttrs:re,components:ce,directives:J,filters:ye}=t;if(f&&Q2(f,r,null),o)for(const Se in o){const we=o[Se];bt(we)&&(r[Se]=we.bind(n))}if(i){const Se=i.call(n,n);mn(Se)&&(e.data=eu(Se))}if(Ng=!0,a)for(const Se in a){const we=a[Se],Qe=bt(we)?we.bind(n,n):bt(we.get)?we.get.bind(n,n):sr,ht=!bt(we)&&bt(we.set)?we.set.bind(n):sr,at=Wn({get:Qe,set:ht});Object.defineProperty(r,Se,{enumerable:!0,configurable:!0,get:()=>at.value,set:vt=>at.value=vt})}if(c)for(const Se in c)Nx(c[Se],r,n,Se);if(d){const Se=bt(d)?d.call(n):d;Reflect.ownKeys(Se).forEach(we=>{Fo(we,Se[we])})}y&&n_(y,e,"c");function fe(Se,we){Xe(we)?we.forEach(Qe=>Se(Qe.bind(n))):we&&Se(we.bind(n))}if(fe(ph,g),fe(Aa,v),fe(Wm,S),fe(iu,E),fe(jm,T),fe(Vm,N),fe(Ym,K),fe(zm,H),fe(Km,m),fe(au,D),fe(Tl,R),fe(Gm,F),Xe(V))if(V.length){const Se=e.exposed||(e.exposed={});V.forEach(we=>{Object.defineProperty(Se,we,{get:()=>n[we],set:Qe=>n[we]=Qe})})}else e.exposed||(e.exposed={});U&&e.render===sr&&(e.render=U),re!=null&&(e.inheritAttrs=re),ce&&(e.components=ce),J&&(e.directives=J)}function Q2(e,t,n=sr){Xe(e)&&(e=Lg(e));for(const r in e){const i=e[r];let a;mn(i)?"default"in i?a=En(i.from||r,i.default,!0):a=En(i.from||r):a=En(i),ir(a)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>a.value,set:o=>a.value=o}):t[r]=a}}function n_(e,t,n){Qr(Xe(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Nx(e,t,n,r){const i=r.includes(".")?ux(n,r):()=>n[r];if(At(e)){const a=t[e];bt(a)&&Ns(i,a)}else if(bt(e))Ns(i,e.bind(n));else if(mn(e))if(Xe(e))e.forEach(a=>Nx(a,t,n,r));else{const a=bt(e.handler)?e.handler.bind(n):t[e.handler];bt(a)&&Ns(i,a,e)}}function Xm(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:i,optionsCache:a,config:{optionMergeStrategies:o}}=e.appContext,c=a.get(t);let d;return c?d=c:!i.length&&!n&&!r?d=t:(d={},i.length&&i.forEach(f=>xf(d,f,o,!0)),xf(d,t,o)),mn(t)&&a.set(t,d),d}function xf(e,t,n,r=!1){const{mixins:i,extends:a}=t;a&&xf(e,a,n,!0),i&&i.forEach(o=>xf(e,o,n,!0));for(const o in t)if(!(r&&o==="expose")){const c=eN[o]||n&&n[o];e[o]=c?c(e[o],t[o]):t[o]}return e}const eN={data:r_,props:s_,emits:s_,methods:yc,computed:yc,beforeCreate:Lr,created:Lr,beforeMount:Lr,mounted:Lr,beforeUpdate:Lr,updated:Lr,beforeDestroy:Lr,beforeUnmount:Lr,destroyed:Lr,unmounted:Lr,activated:Lr,deactivated:Lr,errorCaptured:Lr,serverPrefetch:Lr,components:yc,directives:yc,watch:nN,provide:r_,inject:tN};function r_(e,t){return t?e?function(){return on(bt(e)?e.call(this,this):e,bt(t)?t.call(this,this):t)}:t:e}function tN(e,t){return yc(Lg(e),Lg(t))}function Lg(e){if(Xe(e)){const t={};for(let n=0;n1)return n&&bt(t)?t.call(r&&r.proxy):t}}function Rx(){return!!(nr||Kn||jc)}function oN(e,t,n,r=!1){const i={},a={};yf(a,gh,1),e.propsDefaults=Object.create(null),Dx(e,t,i,a);for(const o in e.propsOptions[0])o in i||(i[o]=void 0);n?e.props=r?i:Om(i):e.type.props?e.props=i:e.props=a,e.attrs=a}function iN(e,t,n,r){const{props:i,attrs:a,vnode:{patchFlag:o}}=e,c=Zt(i),[d]=e.propsOptions;let f=!1;if((r||o>0)&&!(o&16)){if(o&8){const y=e.vnode.dynamicProps;for(let g=0;g{d=!0;const[v,S]=Mx(g,t,!0);on(o,v),S&&c.push(...S)};!n&&t.mixins.length&&t.mixins.forEach(y),e.extends&&y(e.extends),e.mixins&&e.mixins.forEach(y)}if(!a&&!d)return mn(e)&&r.set(e,sl),sl;if(Xe(a))for(let y=0;y-1,S[1]=T<0||E-1||sn(S,"default"))&&c.push(g)}}}const f=[o,c];return mn(e)&&r.set(e,f),f}function o_(e){return e[0]!=="$"}function i_(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function a_(e,t){return i_(e)===i_(t)}function l_(e,t){return Xe(t)?t.findIndex(n=>a_(n,e)):bt(t)&&a_(t,e)?0:-1}const $x=e=>e[0]==="_"||e==="$stable",qm=e=>Xe(e)?e.map(hs):[hs(e)],aN=(e,t,n)=>{if(t._n)return t;const r=Mr((...i)=>qm(t(...i)),n);return r._c=!1,r},Fx=(e,t,n)=>{const r=e._ctx;for(const i in e){if($x(i))continue;const a=e[i];if(bt(a))t[i]=aN(i,a,r);else if(a!=null){const o=qm(a);t[i]=()=>o}}},Bx=(e,t)=>{const n=qm(t);e.slots.default=()=>n},lN=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=Zt(t),yf(t,"_",n)):Fx(t,e.slots={})}else e.slots={},t&&Bx(e,t);yf(e.slots,gh,1)},cN=(e,t,n)=>{const{vnode:r,slots:i}=e;let a=!0,o=cn;if(r.shapeFlag&32){const c=t._;c?n&&c===1?a=!1:(on(i,t),!n&&c===1&&delete i._):(a=!t.$stable,Fx(t,i)),o=t}else t&&(Bx(e,t),o={default:1});if(a)for(const c in i)!$x(c)&&o[c]==null&&delete i[c]};function Ef(e,t,n,r,i=!1){if(Xe(e)){e.forEach((v,S)=>Ef(v,t&&(Xe(t)?t[S]:t),n,r,i));return}if(ga(r)&&!i)return;const a=r.shapeFlag&4?mh(r.component)||r.component.proxy:r.el,o=i?null:a,{i:c,r:d}=e,f=t&&t.r,y=c.refs===cn?c.refs={}:c.refs,g=c.setupState;if(f!=null&&f!==d&&(At(f)?(y[f]=null,sn(g,f)&&(g[f]=null)):ir(f)&&(f.value=null)),bt(d))go(d,c,12,[o,y]);else{const v=At(d),S=ir(d),E=e.f;if(v||S){const T=()=>{if(E){const N=v?sn(g,d)?g[d]:y[d]:d.value;i?Xe(N)&&_m(N,a):Xe(N)?N.includes(a)||N.push(a):v?(y[d]=[a],sn(g,d)&&(g[d]=y[d])):(d.value=[a],e.k&&(y[e.k]=d.value))}else v?(y[d]=o,sn(g,d)&&(g[d]=o)):S&&(d.value=o,e.k&&(y[e.k]=o))};i||E?T():(T.id=-1,pr(T,n))}}}let di=!1;const uN=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",dN=e=>e.namespaceURI.includes("MathML"),Dd=e=>{if(uN(e))return"svg";if(dN(e))return"mathml"},Md=e=>e.nodeType===8;function fN(e){const{mt:t,p:n,o:{patchProp:r,createText:i,nextSibling:a,parentNode:o,remove:c,insert:d,createComment:f}}=e,y=(L,R)=>{if(!R.hasChildNodes()){n(null,L,R),_f(),R._vnode=L;return}di=!1,g(R.firstChild,L,null,null,null),_f(),R._vnode=L,di&&console.error("Hydration completed but contains mismatches.")},g=(L,R,U,H,m,K=!1)=>{const F=Md(L)&&L.data==="[",V=()=>T(L,R,U,H,m,F),{type:re,ref:ce,shapeFlag:J,patchFlag:ye}=R;let Me=L.nodeType;R.el=L,ye===-2&&(K=!1,R.dynamicChildren=null);let fe=null;switch(re){case Vo:Me!==3?R.children===""?(d(R.el=i(""),o(L),L),fe=L):fe=V():(L.data!==R.children&&(di=!0,L.data=R.children),fe=a(L));break;case gr:D(L)?(fe=a(L),I(R.el=L.content.firstChild,L,U)):Me!==8||F?fe=V():fe=a(L);break;case Ii:if(F&&(L=a(L),Me=L.nodeType),Me===1||Me===3){fe=L;const Se=!R.children.length;for(let we=0;we{K=K||!!R.dynamicChildren;const{type:F,props:V,patchFlag:re,shapeFlag:ce,dirs:J,transition:ye}=R,Me=F==="input"||F==="option";if(Me||re!==-1){J&&uo(R,null,U,"created");let fe=!1;if(D(L)){fe=Hx(H,ye)&&U&&U.vnode.props&&U.vnode.props.appear;const we=L.content.firstChild;fe&&ye.beforeEnter(we),I(we,L,U),R.el=L=we}if(ce&16&&!(V&&(V.innerHTML||V.textContent))){let we=S(L.firstChild,R,L,U,H,m,K);for(;we;){di=!0;const Qe=we;we=we.nextSibling,c(Qe)}}else ce&8&&L.textContent!==R.children&&(di=!0,L.textContent=R.children);if(V)if(Me||!K||re&48)for(const we in V)(Me&&(we.endsWith("value")||we==="indeterminate")||wa(we)&&!da(we)||we[0]===".")&&r(L,we,null,V[we],void 0,void 0,U);else V.onClick&&r(L,"onClick",null,V.onClick,void 0,void 0,U);let Se;(Se=V&&V.onVnodeBeforeMount)&&qr(Se,U,R),J&&uo(R,null,U,"beforeMount"),((Se=V&&V.onVnodeMounted)||J||fe)&&lx(()=>{Se&&qr(Se,U,R),fe&&ye.enter(L),J&&uo(R,null,U,"mounted")},H)}return L.nextSibling},S=(L,R,U,H,m,K,F)=>{F=F||!!R.dynamicChildren;const V=R.children,re=V.length;for(let ce=0;ce{const{slotScopeIds:F}=R;F&&(m=m?m.concat(F):F);const V=o(L),re=S(a(L),R,V,U,H,m,K);return re&&Md(re)&&re.data==="]"?a(R.anchor=re):(di=!0,d(R.anchor=f("]"),V,re),re)},T=(L,R,U,H,m,K)=>{if(di=!0,R.el=null,K){const re=N(L);for(;;){const ce=a(L);if(ce&&ce!==re)c(ce);else break}}const F=a(L),V=o(L);return c(L),n(null,R,V,F,U,H,Dd(V),m),F},N=(L,R="[",U="]")=>{let H=0;for(;L;)if(L=a(L),L&&Md(L)&&(L.data===R&&H++,L.data===U)){if(H===0)return a(L);H--}return L},I=(L,R,U)=>{const H=R.parentNode;H&&H.replaceChild(L,R);let m=U;for(;m;)m.vnode.el===R&&(m.vnode.el=m.subTree.el=L),m=m.parent},D=L=>L.nodeType===1&&L.tagName.toLowerCase()==="template";return[y,g]}const pr=lx;function Jm(e){return Ux(e)}function Zm(e){return Ux(e,fN)}function Ux(e,t){const n=g1();n.__VUE__=!0;const{insert:r,remove:i,patchProp:a,createElement:o,createText:c,createComment:d,setText:f,setElementText:y,parentNode:g,nextSibling:v,setScopeId:S=sr,insertStaticContent:E}=e,T=(A,C,G,oe=null,te=null,be=null,$e=void 0,Ce=null,Le=!!C.dynamicChildren)=>{if(A===C)return;A&&!Ks(A,C)&&(oe=Lt(A),vt(A,te,be,!0),A=null),C.patchFlag===-2&&(Le=!1,C.dynamicChildren=null);const{type:Te,ref:Fe,shapeFlag:Be}=C;switch(Te){case Vo:N(A,C,G,oe);break;case gr:I(A,C,G,oe);break;case Ii:A==null&&D(C,G,oe,$e);break;case Gt:ce(A,C,G,oe,te,be,$e,Ce,Le);break;default:Be&1?U(A,C,G,oe,te,be,$e,Ce,Le):Be&6?J(A,C,G,oe,te,be,$e,Ce,Le):(Be&64||Be&128)&&Te.process(A,C,G,oe,te,be,$e,Ce,Le,Rt)}Fe!=null&&te&&Ef(Fe,A&&A.ref,be,C||A,!C)},N=(A,C,G,oe)=>{if(A==null)r(C.el=c(C.children),G,oe);else{const te=C.el=A.el;C.children!==A.children&&f(te,C.children)}},I=(A,C,G,oe)=>{A==null?r(C.el=d(C.children||""),G,oe):C.el=A.el},D=(A,C,G,oe)=>{[A.el,A.anchor]=E(A.children,C,G,oe,A.el,A.anchor)},L=({el:A,anchor:C},G,oe)=>{let te;for(;A&&A!==C;)te=v(A),r(A,G,oe),A=te;r(C,G,oe)},R=({el:A,anchor:C})=>{let G;for(;A&&A!==C;)G=v(A),i(A),A=G;i(C)},U=(A,C,G,oe,te,be,$e,Ce,Le)=>{C.type==="svg"?$e="svg":C.type==="math"&&($e="mathml"),A==null?H(C,G,oe,te,be,$e,Ce,Le):F(A,C,te,be,$e,Ce,Le)},H=(A,C,G,oe,te,be,$e,Ce)=>{let Le,Te;const{props:Fe,shapeFlag:Be,transition:X,dirs:ge}=A;if(Le=A.el=o(A.type,be,Fe&&Fe.is,Fe),Be&8?y(Le,A.children):Be&16&&K(A.children,Le,null,oe,te,Qp(A,be),$e,Ce),ge&&uo(A,null,oe,"created"),m(Le,A,A.scopeId,$e,oe),Fe){for(const qe in Fe)qe!=="value"&&!da(qe)&&a(Le,qe,null,Fe[qe],be,A.children,oe,te,yt);"value"in Fe&&a(Le,"value",null,Fe.value,be),(Te=Fe.onVnodeBeforeMount)&&qr(Te,oe,A)}ge&&uo(A,null,oe,"beforeMount");const je=Hx(te,X);je&&X.beforeEnter(Le),r(Le,C,G),((Te=Fe&&Fe.onVnodeMounted)||je||ge)&&pr(()=>{Te&&qr(Te,oe,A),je&&X.enter(Le),ge&&uo(A,null,oe,"mounted")},te)},m=(A,C,G,oe,te)=>{if(G&&S(A,G),oe)for(let be=0;be{for(let Te=Le;Te{const Ce=C.el=A.el;let{patchFlag:Le,dynamicChildren:Te,dirs:Fe}=C;Le|=A.patchFlag&16;const Be=A.props||cn,X=C.props||cn;let ge;if(G&&Qi(G,!1),(ge=X.onVnodeBeforeUpdate)&&qr(ge,G,C,A),Fe&&uo(C,A,G,"beforeUpdate"),G&&Qi(G,!0),Te?V(A.dynamicChildren,Te,Ce,G,oe,Qp(C,te),be):$e||we(A,C,Ce,null,G,oe,Qp(C,te),be,!1),Le>0){if(Le&16)re(Ce,C,Be,X,G,oe,te);else if(Le&2&&Be.class!==X.class&&a(Ce,"class",null,X.class,te),Le&4&&a(Ce,"style",Be.style,X.style,te),Le&8){const je=C.dynamicProps;for(let qe=0;qe{ge&&qr(ge,G,C,A),Fe&&uo(C,A,G,"updated")},oe)},V=(A,C,G,oe,te,be,$e)=>{for(let Ce=0;Ce{if(G!==oe){if(G!==cn)for(const Ce in G)!da(Ce)&&!(Ce in oe)&&a(A,Ce,G[Ce],null,$e,C.children,te,be,yt);for(const Ce in oe){if(da(Ce))continue;const Le=oe[Ce],Te=G[Ce];Le!==Te&&Ce!=="value"&&a(A,Ce,Te,Le,$e,C.children,te,be,yt)}"value"in oe&&a(A,"value",G.value,oe.value,$e)}},ce=(A,C,G,oe,te,be,$e,Ce,Le)=>{const Te=C.el=A?A.el:c(""),Fe=C.anchor=A?A.anchor:c("");let{patchFlag:Be,dynamicChildren:X,slotScopeIds:ge}=C;ge&&(Ce=Ce?Ce.concat(ge):ge),A==null?(r(Te,G,oe),r(Fe,G,oe),K(C.children||[],G,Fe,te,be,$e,Ce,Le)):Be>0&&Be&64&&X&&A.dynamicChildren?(V(A.dynamicChildren,X,G,te,be,$e,Ce),(C.key!=null||te&&C===te.subTree)&&Qm(A,C,!0)):we(A,C,G,Fe,te,be,$e,Ce,Le)},J=(A,C,G,oe,te,be,$e,Ce,Le)=>{C.slotScopeIds=Ce,A==null?C.shapeFlag&512?te.ctx.activate(C,G,oe,$e,Le):ye(C,G,oe,te,be,$e,Le):Me(A,C,Le)},ye=(A,C,G,oe,te,be,$e)=>{const Ce=A.component=qx(A,oe,te);if(ou(A)&&(Ce.ctx.renderer=Rt),Zx(Ce),Ce.asyncDep){if(te&&te.registerDep(Ce,fe),!A.el){const Le=Ce.subTree=mt(gr);I(null,Le,C,G)}}else fe(Ce,A,C,G,te,be,$e)},Me=(A,C,G)=>{const oe=C.component=A.component;if(B2(A,C,G))if(oe.asyncDep&&!oe.asyncResolved){Se(oe,C,G);return}else oe.next=C,L2(oe.update),oe.effect.dirty=!0,oe.update();else C.el=A.el,oe.vnode=C},fe=(A,C,G,oe,te,be,$e)=>{const Ce=()=>{if(A.isMounted){let{next:Fe,bu:Be,u:X,parent:ge,vnode:je}=A;{const Pe=jx(A);if(Pe){Fe&&(Fe.el=je.el,Se(A,Fe,$e)),Pe.asyncDep.then(()=>{A.isUnmounted||Ce()});return}}let qe=Fe,se;Qi(A,!1),Fe?(Fe.el=je.el,Se(A,Fe,$e)):Fe=je,Be&&il(Be),(se=Fe.props&&Fe.props.onVnodeBeforeUpdate)&&qr(se,ge,Fe,je),Qi(A,!0);const le=tf(A),pe=A.subTree;A.subTree=le,T(pe,le,g(pe.el),Lt(pe),A,te,be),Fe.el=le.el,qe===null&&Lm(A,le.el),X&&pr(X,te),(se=Fe.props&&Fe.props.onVnodeUpdated)&&pr(()=>qr(se,ge,Fe,je),te)}else{let Fe;const{el:Be,props:X}=C,{bm:ge,m:je,parent:qe}=A,se=ga(C);if(Qi(A,!1),ge&&il(ge),!se&&(Fe=X&&X.onVnodeBeforeMount)&&qr(Fe,qe,C),Qi(A,!0),Be&&an){const le=()=>{A.subTree=tf(A),an(Be,A.subTree,A,te,null)};se?C.type.__asyncLoader().then(()=>!A.isUnmounted&&le()):le()}else{const le=A.subTree=tf(A);T(null,le,G,oe,A,te,be),C.el=le.el}if(je&&pr(je,te),!se&&(Fe=X&&X.onVnodeMounted)){const le=C;pr(()=>qr(Fe,qe,le),te)}(C.shapeFlag&256||qe&&ga(qe.vnode)&&qe.vnode.shapeFlag&256)&&A.a&&pr(A.a,te),A.isMounted=!0,C=G=oe=null}},Le=A.effect=new va(Ce,sr,()=>lh(Te),A.scope),Te=A.update=()=>{Le.dirty&&Le.run()};Te.id=A.uid,Qi(A,!0),Te()},Se=(A,C,G)=>{C.component=A;const oe=A.vnode.props;A.vnode=C,A.next=null,iN(A,C.props,oe,G),cN(A,C.children,G),Ca(),Jv(A),Ia()},we=(A,C,G,oe,te,be,$e,Ce,Le=!1)=>{const Te=A&&A.children,Fe=A?A.shapeFlag:0,Be=C.children,{patchFlag:X,shapeFlag:ge}=C;if(X>0){if(X&128){ht(Te,Be,G,oe,te,be,$e,Ce,Le);return}else if(X&256){Qe(Te,Be,G,oe,te,be,$e,Ce,Le);return}}ge&8?(Fe&16&&yt(Te,te,be),Be!==Te&&y(G,Be)):Fe&16?ge&16?ht(Te,Be,G,oe,te,be,$e,Ce,Le):yt(Te,te,be,!0):(Fe&8&&y(G,""),ge&16&&K(Be,G,oe,te,be,$e,Ce,Le))},Qe=(A,C,G,oe,te,be,$e,Ce,Le)=>{A=A||sl,C=C||sl;const Te=A.length,Fe=C.length,Be=Math.min(Te,Fe);let X;for(X=0;XFe?yt(A,te,be,!0,!1,Be):K(C,G,oe,te,be,$e,Ce,Le,Be)},ht=(A,C,G,oe,te,be,$e,Ce,Le)=>{let Te=0;const Fe=C.length;let Be=A.length-1,X=Fe-1;for(;Te<=Be&&Te<=X;){const ge=A[Te],je=C[Te]=Le?vi(C[Te]):hs(C[Te]);if(Ks(ge,je))T(ge,je,G,null,te,be,$e,Ce,Le);else break;Te++}for(;Te<=Be&&Te<=X;){const ge=A[Be],je=C[X]=Le?vi(C[X]):hs(C[X]);if(Ks(ge,je))T(ge,je,G,null,te,be,$e,Ce,Le);else break;Be--,X--}if(Te>Be){if(Te<=X){const ge=X+1,je=geX)for(;Te<=Be;)vt(A[Te],te,be,!0),Te++;else{const ge=Te,je=Te,qe=new Map;for(Te=je;Te<=X;Te++){const lt=C[Te]=Le?vi(C[Te]):hs(C[Te]);lt.key!=null&&qe.set(lt.key,Te)}let se,le=0;const pe=X-je+1;let Pe=!1,He=0;const Je=new Array(pe);for(Te=0;Te=pe){vt(lt,te,be,!0);continue}let kt;if(lt.key!=null)kt=qe.get(lt.key);else for(se=je;se<=X;se++)if(Je[se-je]===0&&Ks(lt,C[se])){kt=se;break}kt===void 0?vt(lt,te,be,!0):(Je[kt-je]=Te+1,kt>=He?He=kt:Pe=!0,T(lt,C[kt],G,null,te,be,$e,Ce,Le),le++)}const nt=Pe?hN(Je):sl;for(se=nt.length-1,Te=pe-1;Te>=0;Te--){const lt=je+Te,kt=C[lt],st=lt+1{const{el:be,type:$e,transition:Ce,children:Le,shapeFlag:Te}=A;if(Te&6){at(A.component.subTree,C,G,oe);return}if(Te&128){A.suspense.move(C,G,oe);return}if(Te&64){$e.move(A,C,G,Rt);return}if($e===Gt){r(be,C,G);for(let Be=0;BeCe.enter(be),te);else{const{leave:Be,delayLeave:X,afterLeave:ge}=Ce,je=()=>r(be,C,G),qe=()=>{Be(be,()=>{je(),ge&&ge()})};X?X(be,je,qe):qe()}else r(be,C,G)},vt=(A,C,G,oe=!1,te=!1)=>{const{type:be,props:$e,ref:Ce,children:Le,dynamicChildren:Te,shapeFlag:Fe,patchFlag:Be,dirs:X}=A;if(Ce!=null&&Ef(Ce,null,G,A,!0),Fe&256){C.ctx.deactivate(A);return}const ge=Fe&1&&X,je=!ga(A);let qe;if(je&&(qe=$e&&$e.onVnodeBeforeUnmount)&&qr(qe,C,A),Fe&6)Ft(A.component,G,oe);else{if(Fe&128){A.suspense.unmount(G,oe);return}ge&&uo(A,null,C,"beforeUnmount"),Fe&64?A.type.remove(A,C,G,te,Rt,oe):Te&&(be!==Gt||Be>0&&Be&64)?yt(Te,C,G,!1,!0):(be===Gt&&Be&384||!te&&Fe&16)&&yt(Le,C,G),oe&&Xt(A)}(je&&(qe=$e&&$e.onVnodeUnmounted)||ge)&&pr(()=>{qe&&qr(qe,C,A),ge&&uo(A,null,C,"unmounted")},G)},Xt=A=>{const{type:C,el:G,anchor:oe,transition:te}=A;if(C===Gt){tn(G,oe);return}if(C===Ii){R(A);return}const be=()=>{i(G),te&&!te.persisted&&te.afterLeave&&te.afterLeave()};if(A.shapeFlag&1&&te&&!te.persisted){const{leave:$e,delayLeave:Ce}=te,Le=()=>$e(G,be);Ce?Ce(A.el,be,Le):Le()}else be()},tn=(A,C)=>{let G;for(;A!==C;)G=v(A),i(A),A=G;i(C)},Ft=(A,C,G)=>{const{bum:oe,scope:te,update:be,subTree:$e,um:Ce}=A;oe&&il(oe),te.stop(),be&&(be.active=!1,vt($e,A,C,G)),Ce&&pr(Ce,C),pr(()=>{A.isUnmounted=!0},C),C&&C.pendingBranch&&!C.isUnmounted&&A.asyncDep&&!A.asyncResolved&&A.suspenseId===C.pendingId&&(C.deps--,C.deps===0&&C.resolve())},yt=(A,C,G,oe=!1,te=!1,be=0)=>{for(let $e=be;$eA.shapeFlag&6?Lt(A.component.subTree):A.shapeFlag&128?A.suspense.next():v(A.anchor||A.el);let Qt=!1;const Kt=(A,C,G)=>{A==null?C._vnode&&vt(C._vnode,null,null,!0):T(C._vnode||null,A,C,null,null,null,G),Qt||(Qt=!0,Jv(),_f(),Qt=!1),C._vnode=A},Rt={p:T,um:vt,m:at,r:Xt,mt:ye,mc:K,pc:we,pbc:V,n:Lt,o:e};let yn,an;return t&&([yn,an]=t(Rt)),{render:Kt,hydrate:yn,createApp:sN(Kt,yn)}}function Qp({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Qi({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Hx(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Qm(e,t,n=!1){const r=e.children,i=t.children;if(Xe(r)&&Xe(i))for(let a=0;a>1,e[n[c]]0&&(t[r]=n[a-1]),n[a]=r)}}for(a=n.length,o=n[a-1];a-- >0;)n[a]=o,o=t[o];return n}function jx(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:jx(t)}const pN=e=>e.__isTeleport,wc=e=>e&&(e.disabled||e.disabled===""),c_=e=>typeof SVGElement<"u"&&e instanceof SVGElement,u_=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Dg=(e,t)=>{const n=e&&e.to;return At(n)?t?t(n):null:n},gN={name:"Teleport",__isTeleport:!0,process(e,t,n,r,i,a,o,c,d,f){const{mc:y,pc:g,pbc:v,o:{insert:S,querySelector:E,createText:T,createComment:N}}=f,I=wc(t.props);let{shapeFlag:D,children:L,dynamicChildren:R}=t;if(e==null){const U=t.el=T(""),H=t.anchor=T("");S(U,n,r),S(H,n,r);const m=t.target=Dg(t.props,E),K=t.targetAnchor=T("");m&&(S(K,m),o==="svg"||c_(m)?o="svg":(o==="mathml"||u_(m))&&(o="mathml"));const F=(V,re)=>{D&16&&y(L,V,re,i,a,o,c,d)};I?F(n,H):m&&F(m,K)}else{t.el=e.el;const U=t.anchor=e.anchor,H=t.target=e.target,m=t.targetAnchor=e.targetAnchor,K=wc(e.props),F=K?n:H,V=K?U:m;if(o==="svg"||c_(H)?o="svg":(o==="mathml"||u_(H))&&(o="mathml"),R?(v(e.dynamicChildren,R,F,i,a,o,c),Qm(e,t,!0)):d||g(e,t,F,V,i,a,o,c,!1),I)K?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):$d(t,n,U,f,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const re=t.target=Dg(t.props,E);re&&$d(t,re,null,f,0)}else K&&$d(t,H,m,f,1)}Wx(t)},remove(e,t,n,r,{um:i,o:{remove:a}},o){const{shapeFlag:c,children:d,anchor:f,targetAnchor:y,target:g,props:v}=e;if(g&&a(y),o&&a(f),c&16){const S=o||!wc(v);for(let E=0;E0?Jr||sl:null,Gx(),xa>0&&Jr&&Jr.push(e),e}function Ne(e,t,n,r,i,a){return Kx(w(e,t,n,r,i,a,!0))}function _n(e,t,n,r,i){return Kx(mt(e,t,n,r,i,!0))}function Wo(e){return e?e.__v_isVNode===!0:!1}function Ks(e,t){return e.type===t.type&&e.key===t.key}function zx(e){}const gh="__vInternal",Yx=({key:e})=>e??null,nf=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?At(e)||ir(e)||bt(e)?{i:Kn,r:e,k:t,f:!!n}:e:null);function w(e,t=null,n=null,r=0,i=null,a=e===Gt?0:1,o=!1,c=!1){const d={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Yx(t),ref:t&&nf(t),scopeId:uh,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:a,patchFlag:r,dynamicProps:i,dynamicChildren:null,appContext:null,ctx:Kn};return c?(ty(d,n),a&128&&e.normalize(d)):n&&(d.shapeFlag|=At(n)?8:16),xa>0&&!o&&Jr&&(d.patchFlag>0||a&6)&&d.patchFlag!==32&&Jr.push(d),d}const mt=yN;function yN(e,t=null,n=null,r=0,i=null,a=!1){if((!e||e===rx)&&(e=gr),Wo(e)){const c=Js(e,t,!0);return n&&ty(c,n),xa>0&&!a&&Jr&&(c.shapeFlag&6?Jr[Jr.indexOf(e)]=c:Jr.push(c)),c.patchFlag|=-2,c}if(EN(e)&&(e=e.__vccOpts),t){t=ey(t);let{class:c,style:d}=t;c&&!At(c)&&(t.class=Yt(c)),mn(d)&&(sh(d)&&!Xe(d)&&(d=on({},d)),t.style=wl(d))}const o=At(e)?1:ix(e)?128:pN(e)?64:mn(e)?4:bt(e)?2:0;return w(e,t,n,r,i,o,a,!0)}function ey(e){return e?sh(e)||gh in e?on({},e):e:null}function Js(e,t,n=!1){const{props:r,ref:i,patchFlag:a,children:o}=e,c=t?ny(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:c,key:c&&Yx(c),ref:t&&t.ref?n&&i?Xe(i)?i.concat(nf(t)):[i,nf(t)]:nf(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Gt?a===-1?16:a|16:a,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Js(e.ssContent),ssFallback:e.ssFallback&&Js(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function xn(e=" ",t=0){return mt(Vo,null,e,t)}function Xx(e,t){const n=mt(Ii,null,e);return n.staticCount=t,n}function rt(e="",t=!1){return t?(_e(),_n(gr,null,e)):mt(gr,null,e)}function hs(e){return e==null||typeof e=="boolean"?mt(gr):Xe(e)?mt(Gt,null,e.slice()):typeof e=="object"?vi(e):mt(Vo,null,String(e))}function vi(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Js(e)}function ty(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Xe(t))n=16;else if(typeof t=="object")if(r&65){const i=t.default;i&&(i._c&&(i._d=!1),ty(e,i()),i._c&&(i._d=!0));return}else{n=32;const i=t._;!i&&!(gh in t)?t._ctx=Kn:i===3&&Kn&&(Kn.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else bt(t)?(t={default:t,_ctx:Kn},n=32):(t=String(t),r&64?(n=16,t=[xn(t)]):n=8);e.children=t,e.shapeFlag|=n}function ny(...e){const t={};for(let n=0;nnr||Kn;let wf,Mg;{const e=g1(),t=(n,r)=>{let i;return(i=e[n])||(i=e[n]=[]),i.push(r),a=>{i.length>1?i.forEach(o=>o(a)):i[0](a)}};wf=t("__VUE_INSTANCE_SETTERS__",n=>nr=n),Mg=t("__VUE_SSR_SETTERS__",n=>cu=n)}const Ea=e=>{const t=nr;return wf(e),e.scope.on(),()=>{e.scope.off(),wf(t)}},$g=()=>{nr&&nr.scope.off(),wf(null)};function Jx(e){return e.vnode.shapeFlag&4}let cu=!1;function Zx(e,t=!1){t&&Mg(t);const{props:n,children:r}=e.vnode,i=Jx(e);oN(e,n,i,t),lN(e,r);const a=i?_N(e,t):void 0;return t&&Mg(!1),a}function _N(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=oh(new Proxy(e.ctx,Pg));const{setup:r}=n;if(r){const i=e.setupContext=r.length>1?tE(e):null,a=Ea(e);Ca();const o=go(r,e,0,[e.props,i]);if(Ia(),a(),xm(o)){if(o.then($g,$g),t)return o.then(c=>{Fg(e,c,t)}).catch(c=>{Ri(c,e,0)});e.asyncDep=o}else Fg(e,o,t)}else eE(e,t)}function Fg(e,t,n){bt(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:mn(t)&&(e.setupState=ah(t)),eE(e,n)}let Tf,Bg;function ry(e){Tf=e,Bg=t=>{t.render._rc&&(t.withProxy=new Proxy(t.ctx,J2))}}const Qx=()=>!Tf;function eE(e,t,n){const r=e.type;if(!e.render){if(!t&&Tf&&!r.render){const i=r.template||Xm(e).template;if(i){const{isCustomElement:a,compilerOptions:o}=e.appContext.config,{delimiters:c,compilerOptions:d}=r,f=on(on({isCustomElement:a,delimiters:c},o),d);r.render=Tf(i,f)}}e.render=r.render||sr,Bg&&Bg(e)}{const i=Ea(e);Ca();try{Z2(e)}finally{Ia(),i()}}}function xN(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return es(e,"get","$attrs"),t[n]}}))}function tE(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return xN(e)},slots:e.slots,emit:e.emit,expose:t}}function mh(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(ah(oh(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Sc)return Sc[n](e)},has(t,n){return n in t||n in Sc}}))}function Ug(e,t=!0){return bt(e)?e.displayName||e.name:e.name||t&&e.__name}function EN(e){return bt(e)&&"__vccOpts"in e}const Wn=(e,t)=>w2(e,t,cu);function nE(e,t,n=cn){const r=Fr(),i=Ln(t),a=ps(t),o=Pm((d,f)=>{let y;return Um(()=>{const g=e[t];qs(y,g)&&(y=g,f())}),{get(){return d(),n.get?n.get(y):y},set(g){const v=r.vnode.props;!(v&&(t in v||i in v||a in v)&&(`onUpdate:${t}`in v||`onUpdate:${i}`in v||`onUpdate:${a}`in v))&&qs(g,y)&&(y=g,f()),r.emit(`update:${t}`,n.set?n.set(g):g)}}}),c=t==="modelValue"?"modelModifiers":`${t}Modifiers`;return o[Symbol.iterator]=()=>{let d=0;return{next(){return d<2?{value:d++?e[c]||{}:o,done:!1}:{done:!0}}}},o}function uu(e,t,n){const r=arguments.length;return r===2?mn(t)&&!Xe(t)?Wo(t)?mt(e,null,[t]):mt(e,t):mt(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Wo(n)&&(n=[n]),mt(e,t,n))}function rE(){}function sE(e,t,n,r){const i=n[r];if(i&&sy(i,e))return i;const a=t();return a.memo=e.slice(),n[r]=a}function sy(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let r=0;r0&&Jr&&Jr.push(e),!0}const oy="3.4.15",oE=sr,iE=k2,aE=Qa,lE=Z1,SN={createComponentInstance:qx,setupComponent:Zx,renderComponentRoot:tf,setCurrentRenderingInstance:Bc,isVNode:Wo,normalizeVNode:hs},cE=SN,uE=null,dE=null,fE=null;/** +**/function z1(e,t){}const Y1={SETUP_FUNCTION:0,0:"SETUP_FUNCTION",RENDER_FUNCTION:1,1:"RENDER_FUNCTION",WATCH_GETTER:2,2:"WATCH_GETTER",WATCH_CALLBACK:3,3:"WATCH_CALLBACK",WATCH_CLEANUP:4,4:"WATCH_CLEANUP",NATIVE_EVENT_HANDLER:5,5:"NATIVE_EVENT_HANDLER",COMPONENT_EVENT_HANDLER:6,6:"COMPONENT_EVENT_HANDLER",VNODE_HOOK:7,7:"VNODE_HOOK",DIRECTIVE_HOOK:8,8:"DIRECTIVE_HOOK",TRANSITION_HOOK:9,9:"TRANSITION_HOOK",APP_ERROR_HANDLER:10,10:"APP_ERROR_HANDLER",APP_WARN_HANDLER:11,11:"APP_WARN_HANDLER",FUNCTION_REF:12,12:"FUNCTION_REF",ASYNC_COMPONENT_LOADER:13,13:"ASYNC_COMPONENT_LOADER",SCHEDULER:14,14:"SCHEDULER"},k2={sp:"serverPrefetch hook",bc:"beforeCreate hook",c:"created hook",bm:"beforeMount hook",m:"mounted hook",bu:"beforeUpdate hook",u:"updated",bum:"beforeUnmount hook",um:"unmounted hook",a:"activated hook",da:"deactivated hook",ec:"errorCaptured hook",rtc:"renderTracked hook",rtg:"renderTriggered hook",0:"setup function",1:"render function",2:"watcher getter",3:"watcher callback",4:"watcher cleanup function",5:"native event handler",6:"component event handler",7:"vnode hook",8:"directive hook",9:"transition hook",10:"app errorHandler",11:"app warnHandler",12:"ref function",13:"async component loader",14:"scheduler flush. This is likely a Vue internals bug. Please open an issue at https://github.com/vuejs/core ."};function go(e,t,n,r){let i;try{i=r?e(...r):e()}catch(a){Ri(a,t,n)}return i}function Qr(e,t,n,r){if(bt(e)){const a=go(e,t,n,r);return a&&xm(a)&&a.catch(o=>{Ri(o,t,n)}),a}const i=[];for(let a=0;a>>1,i=wr[r],a=Fc(i);afo&&wr.splice(t,1)}function $c(e){Xe(e)?ll.push(...e):(!yi||!yi.includes(e,e.allowRecurse?aa+1:aa))&&ll.push(e),q1()}function Jv(e,t,n=Mc?fo+1:0){for(;nFc(n)-Fc(r));if(ll.length=0,yi){yi.push(...t);return}for(yi=t,aa=0;aae.id==null?1/0:e.id,R2=(e,t)=>{const n=Fc(e)-Fc(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function J1(e){Og=!1,Mc=!0,wr.sort(R2);try{for(fo=0;foQa.emit(i,...a)),Pd=[]):typeof window<"u"&&window.HTMLElement&&!((r=(n=window.navigator)==null?void 0:n.userAgent)!=null&&r.includes("jsdom"))?((t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(a=>{Z1(a,t)}),setTimeout(()=>{Qa||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,Pd=[])},3e3)):Pd=[]}function D2(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||cn;let i=n;const a=t.startsWith("update:"),o=a&&t.slice(7);if(o&&o in r){const y=`${o==="modelValue"?"model":o}Modifiers`,{number:g,trim:v}=r[y]||cn;v&&(i=n.map(S=>At(S)?S.trim():S)),g&&(i=n.map(Rc))}let c,d=r[c=fa(t)]||r[c=fa(Ln(t))];!d&&a&&(d=r[c=fa(ps(t))]),d&&Qr(d,e,6,i);const f=r[c+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[c])return;e.emitted[c]=!0,Qr(f,e,6,i)}}function Q1(e,t,n=!1){const r=t.emitsCache,i=r.get(e);if(i!==void 0)return i;const a=e.emits;let o={},c=!1;if(!bt(e)){const d=f=>{const y=Q1(f,t,!0);y&&(c=!0,on(o,y))};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}return!a&&!c?(mn(e)&&r.set(e,null),null):(Xe(a)?a.forEach(d=>o[d]=null):on(o,a),mn(e)&&r.set(e,o),o)}function lh(e,t){return!e||!wa(t)?!1:(t=t.slice(2).replace(/Once$/,""),sn(e,t[0].toLowerCase()+t.slice(1))||sn(e,ps(t))||sn(e,t))}let Kn=null,ch=null;function Bc(e){const t=Kn;return Kn=e,ch=e&&e.type.__scopeId||null,t}function ex(e){ch=e}function tx(){ch=null}const nx=e=>Mr;function Mr(e,t=Kn,n){if(!t||e._n)return e;const r=(...i)=>{r._d&&Ef(-1);const a=Bc(t);let o;try{o=e(...i)}finally{Bc(a),r._d&&Ef(1)}return o};return r._n=!0,r._c=!0,r._d=!0,r}function ef(e){const{type:t,vnode:n,proxy:r,withProxy:i,props:a,propsOptions:[o],slots:c,attrs:d,emit:f,render:y,renderCache:g,data:v,setupState:S,ctx:E,inheritAttrs:T}=e;let N,I;const D=Bc(e);try{if(n.shapeFlag&4){const R=i||r,U=R;N=hs(y.call(U,R,g,a,S,v,E)),I=d}else{const R=t;N=hs(R.length>1?R(a,{attrs:d,slots:c,emit:f}):R(a,null)),I=t.props?d:$2(d)}}catch(R){Tc.length=0,Ri(R,e,1),N=mt(gr)}let L=N;if(I&&T!==!1){const R=Object.keys(I),{shapeFlag:U}=L;R.length&&U&7&&(o&&R.some(vm)&&(I=F2(I,o)),L=Js(L,I))}return n.dirs&&(L=Js(L),L.dirs=L.dirs?L.dirs.concat(n.dirs):n.dirs),n.transition&&(L.transition=n.transition),N=L,Bc(D),N}function M2(e,t=!0){let n;for(let r=0;r{let t;for(const n in e)(n==="class"||n==="style"||wa(n))&&((t||(t={}))[n]=e[n]);return t},F2=(e,t)=>{const n={};for(const r in e)(!vm(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function B2(e,t,n){const{props:r,children:i,component:a}=e,{props:o,children:c,patchFlag:d}=t,f=a.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&d>=0){if(d&1024)return!0;if(d&16)return r?Zv(r,o,f):!!o;if(d&8){const y=t.dynamicProps;for(let g=0;ge.__isSuspense;let Ag=0;const H2={name:"Suspense",__isSuspense:!0,process(e,t,n,r,i,a,o,c,d,f){if(e==null)j2(t,n,r,i,a,o,c,d,f);else{if(a&&a.deps>0){t.suspense=e.suspense;return}V2(e,t,n,r,i,o,c,d,f)}},hydrate:W2,create:Mm,normalize:G2},ax=H2;function Uc(e,t){const n=e.props&&e.props[t];bt(n)&&n()}function j2(e,t,n,r,i,a,o,c,d){const{p:f,o:{createElement:y}}=d,g=y("div"),v=e.suspense=Mm(e,i,r,t,g,n,a,o,c,d);f(null,v.pendingBranch=e.ssContent,g,null,r,v,a,o),v.deps>0?(Uc(e,"onPending"),Uc(e,"onFallback"),f(null,e.ssFallback,t,n,r,null,a,o),cl(v,e.ssFallback)):v.resolve(!1,!0)}function V2(e,t,n,r,i,a,o,c,{p:d,um:f,o:{createElement:y}}){const g=t.suspense=e.suspense;g.vnode=t,t.el=e.el;const v=t.ssContent,S=t.ssFallback,{activeBranch:E,pendingBranch:T,isInFallback:N,isHydrating:I}=g;if(T)g.pendingBranch=v,Ks(v,T)?(d(T,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0?g.resolve():N&&(I||(d(E,S,n,r,i,null,a,o,c),cl(g,S)))):(g.pendingId=Ag++,I?(g.isHydrating=!1,g.activeBranch=T):f(T,i,g),g.deps=0,g.effects.length=0,g.hiddenContainer=y("div"),N?(d(null,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0?g.resolve():(d(E,S,n,r,i,null,a,o,c),cl(g,S))):E&&Ks(v,E)?(d(E,v,n,r,i,g,a,o,c),g.resolve(!0)):(d(null,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0&&g.resolve()));else if(E&&Ks(v,E))d(E,v,n,r,i,g,a,o,c),cl(g,v);else if(Uc(t,"onPending"),g.pendingBranch=v,v.shapeFlag&512?g.pendingId=v.component.suspenseId:g.pendingId=Ag++,d(null,v,g.hiddenContainer,null,i,g,a,o,c),g.deps<=0)g.resolve();else{const{timeout:D,pendingId:L}=g;D>0?setTimeout(()=>{g.pendingId===L&&g.fallback(S)},D):D===0&&g.fallback(S)}}function Mm(e,t,n,r,i,a,o,c,d,f,y=!1){const{p:g,m:v,um:S,n:E,o:{parentNode:T,remove:N}}=f;let I;const D=K2(e);D&&t!=null&&t.pendingBranch&&(I=t.pendingId,t.deps++);const L=e.props?yf(e.props.timeout):void 0,R=a,U={vnode:e,parent:t,parentComponent:n,namespace:o,container:r,hiddenContainer:i,deps:0,pendingId:Ag++,timeout:typeof L=="number"?L:-1,activeBranch:null,pendingBranch:null,isInFallback:!y,isHydrating:y,isUnmounted:!1,effects:[],resolve(H=!1,m=!1){const{vnode:K,activeBranch:F,pendingBranch:V,pendingId:re,effects:ce,parentComponent:J,container:ye}=U;let Me=!1;U.isHydrating?U.isHydrating=!1:H||(Me=F&&V.transition&&V.transition.mode==="out-in",Me&&(F.transition.afterLeave=()=>{re===U.pendingId&&(v(V,ye,a===R?E(F):a,0),$c(ce))}),F&&(T(F.el)!==U.hiddenContainer&&(a=E(F)),S(F,J,U,!0)),Me||v(V,ye,a,0)),cl(U,V),U.pendingBranch=null,U.isInFallback=!1;let fe=U.parent,Se=!1;for(;fe;){if(fe.pendingBranch){fe.effects.push(...ce),Se=!0;break}fe=fe.parent}!Se&&!Me&&$c(ce),U.effects=[],D&&t&&t.pendingBranch&&I===t.pendingId&&(t.deps--,t.deps===0&&!m&&t.resolve()),Uc(K,"onResolve")},fallback(H){if(!U.pendingBranch)return;const{vnode:m,activeBranch:K,parentComponent:F,container:V,namespace:re}=U;Uc(m,"onFallback");const ce=E(K),J=()=>{U.isInFallback&&(g(null,H,V,ce,F,null,re,c,d),cl(U,H))},ye=H.transition&&H.transition.mode==="out-in";ye&&(K.transition.afterLeave=J),U.isInFallback=!0,S(K,F,null,!0),ye||J()},move(H,m,K){U.activeBranch&&v(U.activeBranch,H,m,K),U.container=H},next(){return U.activeBranch&&E(U.activeBranch)},registerDep(H,m){const K=!!U.pendingBranch;K&&U.deps++;const F=H.vnode.el;H.asyncDep.catch(V=>{Ri(V,H,0)}).then(V=>{if(H.isUnmounted||U.isUnmounted||U.pendingId!==H.suspenseId)return;H.asyncResolved=!0;const{vnode:re}=H;Fg(H,V,!1),F&&(re.el=F);const ce=!F&&H.subTree.el;m(H,re,T(F||H.subTree.el),F?null:E(H.subTree),U,o,d),ce&&N(ce),Lm(H,re.el),K&&--U.deps===0&&U.resolve()})},unmount(H,m){U.isUnmounted=!0,U.activeBranch&&S(U.activeBranch,n,H,m),U.pendingBranch&&S(U.pendingBranch,n,H,m)}};return U}function W2(e,t,n,r,i,a,o,c,d){const f=t.suspense=Mm(t,r,n,e.parentNode,document.createElement("div"),null,i,a,o,c,!0),y=d(e,f.pendingBranch=t.ssContent,n,f,a,o);return f.deps===0&&f.resolve(!1,!0),y}function G2(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=e_(r?n.default:n),e.ssFallback=r?e_(n.fallback):mt(gr)}function e_(e){let t;if(bt(e)){const n=xa&&e._c;n&&(e._d=!1,_e()),e=e(),n&&(e._d=!0,t=Jr,Gx())}return Xe(e)&&(e=M2(e)),e=hs(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function lx(e,t){t&&t.pendingBranch?Xe(e)?t.effects.push(...e):t.effects.push(e):$c(e)}function cl(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e;let i=t.el;for(;!i&&t.component;)t=t.component.subTree,i=t.el;n.el=i,r&&r.subTree===n&&(r.vnode.el=i,Lm(r,i))}function K2(e){var t;return((t=e.props)==null?void 0:t.suspensible)!=null&&e.props.suspensible!==!1}const $m=Symbol.for("v-scx"),Fm=()=>_n($m);function cx(e,t){return ru(e,null,t)}function Bm(e,t){return ru(e,null,{flush:"post"})}function Um(e,t){return ru(e,null,{flush:"sync"})}const Nd={};function Ns(e,t,n){return ru(e,t,n)}function ru(e,t,{immediate:n,deep:r,flush:i,once:a,onTrack:o,onTrigger:c}=cn){if(t&&a){const H=t;t=(...m)=>{H(...m),U()}}const d=nr,f=H=>r===!0?H:la(H,r===!1?1:void 0);let y,g=!1,v=!1;if(ir(e)?(y=()=>e.value,g=dl(e)):Ci(e)?(y=()=>f(e),g=!0):Xe(e)?(v=!0,g=e.some(H=>Ci(H)||dl(H)),y=()=>e.map(H=>{if(ir(H))return H.value;if(Ci(H))return f(H);if(bt(H))return go(H,d,2)})):bt(e)?t?y=()=>go(e,d,2):y=()=>(S&&S(),Qr(e,d,3,[E])):y=sr,t&&r){const H=y;y=()=>la(H())}let S,E=H=>{S=L.onStop=()=>{go(H,d,4),S=L.onStop=void 0}},T;if(cu)if(E=sr,t?n&&Qr(t,d,3,[y(),v?[]:void 0,E]):y(),i==="sync"){const H=Fm();T=H.__watcherHandles||(H.__watcherHandles=[])}else return sr;let N=v?new Array(e.length).fill(Nd):Nd;const I=()=>{if(!(!L.active||!L.dirty))if(t){const H=L.run();(r||g||(v?H.some((m,K)=>qs(m,N[K])):qs(H,N)))&&(S&&S(),Qr(t,d,3,[H,N===Nd?void 0:v&&N[0]===Nd?[]:N,E]),N=H)}else L.run()};I.allowRecurse=!!t;let D;i==="sync"?D=I:i==="post"?D=()=>pr(I,d&&d.suspense):(I.pre=!0,d&&(I.id=d.uid),D=()=>ah(I));const L=new va(y,sr,D),R=Zf(),U=()=>{L.stop(),R&&_m(R.effects,L)};return t?n?I():N=L.run():i==="post"?pr(L.run.bind(L),d&&d.suspense):L.run(),T&&T.push(U),U}function z2(e,t,n){const r=this.proxy,i=At(e)?e.includes(".")?ux(r,e):()=>r[e]:e.bind(r,r);let a;bt(t)?a=t:(a=t.handler,n=t);const o=Ea(this),c=ru(i,a.bind(r),n);return o(),c}function ux(e,t){const n=t.split(".");return()=>{let r=e;for(let i=0;i0){if(n>=t)return e;n++}if(r=r||new Set,r.has(e))return e;if(r.add(e),ir(e))la(e.value,t,n,r);else if(Xe(e))for(let i=0;i{la(i,t,n,r)});else if(p1(e))for(const i in e)la(e[i],t,n,r);return e}function dn(e,t){if(Kn===null)return e;const n=gh(Kn)||Kn.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;i{e.isMounted=!0}),au(()=>{e.isUnmounting=!0}),e}const Cs=[Function,Array],dh={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Cs,onEnter:Cs,onAfterEnter:Cs,onEnterCancelled:Cs,onBeforeLeave:Cs,onLeave:Cs,onAfterLeave:Cs,onLeaveCancelled:Cs,onBeforeAppear:Cs,onAppear:Cs,onAfterAppear:Cs,onAppearCancelled:Cs},Y2={name:"BaseTransition",props:dh,setup(e,{slots:t}){const n=Fr(),r=uh();let i;return()=>{const a=t.default&&su(t.default(),!0);if(!a||!a.length)return;let o=a[0];if(a.length>1){for(const T of a)if(T.type!==gr){o=T;break}}const c=Zt(e),{mode:d}=c;if(r.isLeaving)return Yp(o);const f=t_(o);if(!f)return Yp(o);const y=_a(f,c,r,n);ki(f,y);const g=n.subTree,v=g&&t_(g);let S=!1;const{getTransitionKey:E}=f.type;if(E){const T=E();i===void 0?i=T:T!==i&&(i=T,S=!0)}if(v&&v.type!==gr&&(!Ks(f,v)||S)){const T=_a(v,c,r,n);if(ki(v,T),d==="out-in")return r.isLeaving=!0,T.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},Yp(o);d==="in-out"&&f.type!==gr&&(T.delayLeave=(N,I,D)=>{const L=dx(r,v);L[String(v.key)]=v,N[bi]=()=>{I(),N[bi]=void 0,delete y.delayedLeave},y.delayedLeave=D})}return o}}},Hm=Y2;function dx(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function _a(e,t,n,r){const{appear:i,mode:a,persisted:o=!1,onBeforeEnter:c,onEnter:d,onAfterEnter:f,onEnterCancelled:y,onBeforeLeave:g,onLeave:v,onAfterLeave:S,onLeaveCancelled:E,onBeforeAppear:T,onAppear:N,onAfterAppear:I,onAppearCancelled:D}=t,L=String(e.key),R=dx(n,e),U=(K,F)=>{K&&Qr(K,r,9,F)},H=(K,F)=>{const V=F[1];U(K,F),Xe(K)?K.every(re=>re.length<=1)&&V():K.length<=1&&V()},m={mode:a,persisted:o,beforeEnter(K){let F=c;if(!n.isMounted)if(i)F=T||c;else return;K[bi]&&K[bi](!0);const V=R[L];V&&Ks(e,V)&&V.el[bi]&&V.el[bi](),U(F,[K])},enter(K){let F=d,V=f,re=y;if(!n.isMounted)if(i)F=N||d,V=I||f,re=D||y;else return;let ce=!1;const J=K[Ld]=ye=>{ce||(ce=!0,ye?U(re,[K]):U(V,[K]),m.delayedLeave&&m.delayedLeave(),K[Ld]=void 0)};F?H(F,[K,J]):J()},leave(K,F){const V=String(e.key);if(K[Ld]&&K[Ld](!0),n.isUnmounting)return F();U(g,[K]);let re=!1;const ce=K[bi]=J=>{re||(re=!0,F(),J?U(E,[K]):U(S,[K]),K[bi]=void 0,R[V]===e&&delete R[V])};R[V]=e,v?H(v,[K,ce]):ce()},clone(K){return _a(K,t,n,r)}};return m}function Yp(e){if(ou(e))return e=Js(e),e.children=null,e}function t_(e){return ou(e)?e.children?e.children[0]:void 0:e}function ki(e,t){e.shapeFlag&6&&e.component?ki(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function su(e,t=!1,n){let r=[],i=0;for(let a=0;a1)for(let a=0;a!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function fx(e){bt(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:i=200,timeout:a,suspensible:o=!0,onError:c}=e;let d=null,f,y=0;const g=()=>(y++,d=null,v()),v=()=>{let S;return d||(S=d=t().catch(E=>{if(E=E instanceof Error?E:new Error(String(E)),c)return new Promise((T,N)=>{c(E,()=>T(g()),()=>N(E),y+1)});throw E}).then(E=>S!==d&&d?d:(E&&(E.__esModule||E[Symbol.toStringTag]==="Module")&&(E=E.default),f=E,E)))};return Oa({name:"AsyncComponentWrapper",__asyncLoader:v,get __asyncResolved(){return f},setup(){const S=nr;if(f)return()=>Xp(f,S);const E=D=>{d=null,Ri(D,S,13,!r)};if(o&&S.suspense||cu)return v().then(D=>()=>Xp(D,S)).catch(D=>(E(D),()=>r?mt(r,{error:D}):null));const T=ft(!1),N=ft(),I=ft(!!i);return i&&setTimeout(()=>{I.value=!1},i),a!=null&&setTimeout(()=>{if(!T.value&&!N.value){const D=new Error(`Async component timed out after ${a}ms.`);E(D),N.value=D}},a),v().then(()=>{T.value=!0,S.parent&&ou(S.parent.vnode)&&(S.parent.effect.dirty=!0,ah(S.parent.update))}).catch(D=>{E(D),N.value=D}),()=>{if(T.value&&f)return Xp(f,S);if(N.value&&r)return mt(r,{error:N.value});if(n&&!I.value)return mt(n)}}})}function Xp(e,t){const{ref:n,props:r,children:i,ce:a}=t.vnode,o=mt(e,r,i);return o.ref=n,o.ce=a,delete t.vnode.ce,o}const ou=e=>e.type.__isKeepAlive,X2={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Fr(),r=n.ctx;if(!r.renderer)return()=>{const D=t.default&&t.default();return D&&D.length===1?D[0]:D};const i=new Map,a=new Set;let o=null;const c=n.suspense,{renderer:{p:d,m:f,um:y,o:{createElement:g}}}=r,v=g("div");r.activate=(D,L,R,U,H)=>{const m=D.component;f(D,L,R,0,c),d(m.vnode,D,L,R,m,c,U,D.slotScopeIds,H),pr(()=>{m.isDeactivated=!1,m.a&&il(m.a);const K=D.props&&D.props.onVnodeMounted;K&&qr(K,m.parent,D)},c)},r.deactivate=D=>{const L=D.component;f(D,v,null,1,c),pr(()=>{L.da&&il(L.da);const R=D.props&&D.props.onVnodeUnmounted;R&&qr(R,L.parent,D),L.isDeactivated=!0},c)};function S(D){qp(D),y(D,n,c,!0)}function E(D){i.forEach((L,R)=>{const U=Ug(L.type);U&&(!D||!D(U))&&T(R)})}function T(D){const L=i.get(D);!o||!Ks(L,o)?S(L):o&&qp(o),i.delete(D),a.delete(D)}Ns(()=>[e.include,e.exclude],([D,L])=>{D&&E(R=>mc(D,R)),L&&E(R=>!mc(L,R))},{flush:"post",deep:!0});let N=null;const I=()=>{N!=null&&i.set(N,Jp(n.subTree))};return Aa(I),iu(I),au(()=>{i.forEach(D=>{const{subTree:L,suspense:R}=n,U=Jp(L);if(D.type===U.type&&D.key===U.key){qp(U);const H=U.component.da;H&&pr(H,R);return}S(D)})}),()=>{if(N=null,!t.default)return null;const D=t.default(),L=D[0];if(D.length>1)return o=null,D;if(!Wo(L)||!(L.shapeFlag&4)&&!(L.shapeFlag&128))return o=null,L;let R=Jp(L);const U=R.type,H=Ug(ga(R)?R.type.__asyncResolved||{}:U),{include:m,exclude:K,max:F}=e;if(m&&(!H||!mc(m,H))||K&&H&&mc(K,H))return o=R,L;const V=R.key==null?U:R.key,re=i.get(V);return R.el&&(R=Js(R),L.shapeFlag&128&&(L.ssContent=R)),N=V,re?(R.el=re.el,R.component=re.component,R.transition&&ki(R,R.transition),R.shapeFlag|=512,a.delete(V),a.add(V)):(a.add(V),F&&a.size>parseInt(F,10)&&T(a.values().next().value)),R.shapeFlag|=256,o=R,ix(L.type)?L:R}}},hx=X2;function mc(e,t){return Xe(e)?e.some(n=>mc(n,t)):At(e)?e.split(",").includes(t):$P(e)?e.test(t):!1}function jm(e,t){px(e,"a",t)}function Vm(e,t){px(e,"da",t)}function px(e,t,n=nr){const r=e.__wdc||(e.__wdc=()=>{let i=n;for(;i;){if(i.isDeactivated)return;i=i.parent}return e()});if(fh(t,r,n),n){let i=n.parent;for(;i&&i.parent;)ou(i.parent.vnode)&&q2(r,t,n,i),i=i.parent}}function q2(e,t,n,r){const i=fh(t,e,r,!0);Tl(()=>{_m(r[t],i)},n)}function qp(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Jp(e){return e.shapeFlag&128?e.ssContent:e}function fh(e,t,n=nr,r=!1){if(n){const i=n[e]||(n[e]=[]),a=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;Ca();const c=Ea(n),d=Qr(t,n,e,o);return c(),Ia(),d});return r?i.unshift(a):i.push(a),a}}const Go=e=>(t,n=nr)=>(!cu||e==="sp")&&fh(e,(...r)=>t(...r),n),hh=Go("bm"),Aa=Go("m"),Wm=Go("bu"),iu=Go("u"),au=Go("bum"),Tl=Go("um"),Gm=Go("sp"),Km=Go("rtg"),zm=Go("rtc");function Ym(e,t=nr){fh("ec",e,t)}function $r(e,t,n,r){let i;const a=n&&n[r];if(Xe(e)||At(e)){i=new Array(e.length);for(let o=0,c=e.length;ot(o,c,void 0,a&&a[c]));else{const o=Object.keys(e);i=new Array(o.length);for(let c=0,d=o.length;c{const a=r.fn(...i);return a&&(a.key=r.key),a}:r.fn)}return e}function lu(e,t,n={},r,i){if(Kn.isCE||Kn.parent&&ga(Kn.parent)&&Kn.parent.isCE)return t!=="default"&&(n.name=t),mt("slot",n,r&&r());let a=e[t];a&&a._c&&(a._d=!1),_e();const o=a&&mx(a(n)),c=wn(Gt,{key:n.key||o&&o.key||`_${t}`},o||(r?r():[]),o&&e._===1?64:-2);return!i&&c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),a&&a._c&&(a._d=!0),c}function mx(e){return e.some(t=>Wo(t)?!(t.type===gr||t.type===Gt&&!mx(t.children)):!0)?e:null}function yx(e,t){const n={};for(const r in e)n[t&&/[A-Z]/.test(r)?`on:${r}`:fa(r)]=e[r];return n}const kg=e=>e?Jx(e)?gh(e)||e.proxy:kg(e.parent):null,Sc=on(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>kg(e.parent),$root:e=>kg(e.root),$emit:e=>e.emit,$options:e=>Xm(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,ah(e.update)}),$nextTick:e=>e.n||(e.n=nu.bind(e.proxy)),$watch:e=>z2.bind(e)}),Zp=(e,t)=>e!==cn&&!e.__isScriptSetup&&sn(e,t),Pg={get({_:e},t){const{ctx:n,setupState:r,data:i,props:a,accessCache:o,type:c,appContext:d}=e;let f;if(t[0]!=="$"){const S=o[t];if(S!==void 0)switch(S){case 1:return r[t];case 2:return i[t];case 4:return n[t];case 3:return a[t]}else{if(Zp(r,t))return o[t]=1,r[t];if(i!==cn&&sn(i,t))return o[t]=2,i[t];if((f=e.propsOptions[0])&&sn(f,t))return o[t]=3,a[t];if(n!==cn&&sn(n,t))return o[t]=4,n[t];Ng&&(o[t]=0)}}const y=Sc[t];let g,v;if(y)return t==="$attrs"&&es(e,"get",t),y(e);if((g=c.__cssModules)&&(g=g[t]))return g;if(n!==cn&&sn(n,t))return o[t]=4,n[t];if(v=d.config.globalProperties,sn(v,t))return v[t]},set({_:e},t,n){const{data:r,setupState:i,ctx:a}=e;return Zp(i,t)?(i[t]=n,!0):r!==cn&&sn(r,t)?(r[t]=n,!0):sn(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(a[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:i,propsOptions:a}},o){let c;return!!n[o]||e!==cn&&sn(e,o)||Zp(t,o)||(c=a[0])&&sn(c,o)||sn(r,o)||sn(Sc,o)||sn(i.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:sn(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},J2=on({},Pg,{get(e,t){if(t!==Symbol.unscopables)return Pg.get(e,t,e)},has(e,t){return t[0]!=="_"&&!VP(t)}});function bx(){return null}function vx(){return null}function _x(e){}function xx(e){}function Ex(){return null}function Sx(){}function wx(e,t){return null}function Tx(){return Ix().slots}function Cx(){return Ix().attrs}function Ix(){const e=Fr();return e.setupContext||(e.setupContext=tE(e))}function Hc(e){return Xe(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function Ox(e,t){const n=Hc(e);for(const r in t){if(r.startsWith("__skip"))continue;let i=n[r];i?Xe(i)||bt(i)?i=n[r]={type:i,default:t[r]}:i.default=t[r]:i===null&&(i=n[r]={default:t[r]}),i&&t[`__skip_${r}`]&&(i.skipFactory=!0)}return n}function Ax(e,t){return!e||!t?e||t:Xe(e)&&Xe(t)?e.concat(t):on({},Hc(e),Hc(t))}function kx(e,t){const n={};for(const r in e)t.includes(r)||Object.defineProperty(n,r,{enumerable:!0,get:()=>e[r]});return n}function Px(e){const t=Fr();let n=e();return $g(),xm(n)&&(n=n.catch(r=>{throw Ea(t),r})),[n,()=>Ea(t)]}let Ng=!0;function Z2(e){const t=Xm(e),n=e.proxy,r=e.ctx;Ng=!1,t.beforeCreate&&n_(t.beforeCreate,e,"bc");const{data:i,computed:a,methods:o,watch:c,provide:d,inject:f,created:y,beforeMount:g,mounted:v,beforeUpdate:S,updated:E,activated:T,deactivated:N,beforeDestroy:I,beforeUnmount:D,destroyed:L,unmounted:R,render:U,renderTracked:H,renderTriggered:m,errorCaptured:K,serverPrefetch:F,expose:V,inheritAttrs:re,components:ce,directives:J,filters:ye}=t;if(f&&Q2(f,r,null),o)for(const Se in o){const we=o[Se];bt(we)&&(r[Se]=we.bind(n))}if(i){const Se=i.call(n,n);mn(Se)&&(e.data=eu(Se))}if(Ng=!0,a)for(const Se in a){const we=a[Se],Qe=bt(we)?we.bind(n,n):bt(we.get)?we.get.bind(n,n):sr,ht=!bt(we)&&bt(we.set)?we.set.bind(n):sr,at=Wn({get:Qe,set:ht});Object.defineProperty(r,Se,{enumerable:!0,configurable:!0,get:()=>at.value,set:vt=>at.value=vt})}if(c)for(const Se in c)Nx(c[Se],r,n,Se);if(d){const Se=bt(d)?d.call(n):d;Reflect.ownKeys(Se).forEach(we=>{Fo(we,Se[we])})}y&&n_(y,e,"c");function fe(Se,we){Xe(we)?we.forEach(Qe=>Se(Qe.bind(n))):we&&Se(we.bind(n))}if(fe(hh,g),fe(Aa,v),fe(Wm,S),fe(iu,E),fe(jm,T),fe(Vm,N),fe(Ym,K),fe(zm,H),fe(Km,m),fe(au,D),fe(Tl,R),fe(Gm,F),Xe(V))if(V.length){const Se=e.exposed||(e.exposed={});V.forEach(we=>{Object.defineProperty(Se,we,{get:()=>n[we],set:Qe=>n[we]=Qe})})}else e.exposed||(e.exposed={});U&&e.render===sr&&(e.render=U),re!=null&&(e.inheritAttrs=re),ce&&(e.components=ce),J&&(e.directives=J)}function Q2(e,t,n=sr){Xe(e)&&(e=Lg(e));for(const r in e){const i=e[r];let a;mn(i)?"default"in i?a=_n(i.from||r,i.default,!0):a=_n(i.from||r):a=_n(i),ir(a)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>a.value,set:o=>a.value=o}):t[r]=a}}function n_(e,t,n){Qr(Xe(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Nx(e,t,n,r){const i=r.includes(".")?ux(n,r):()=>n[r];if(At(e)){const a=t[e];bt(a)&&Ns(i,a)}else if(bt(e))Ns(i,e.bind(n));else if(mn(e))if(Xe(e))e.forEach(a=>Nx(a,t,n,r));else{const a=bt(e.handler)?e.handler.bind(n):t[e.handler];bt(a)&&Ns(i,a,e)}}function Xm(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:i,optionsCache:a,config:{optionMergeStrategies:o}}=e.appContext,c=a.get(t);let d;return c?d=c:!i.length&&!n&&!r?d=t:(d={},i.length&&i.forEach(f=>_f(d,f,o,!0)),_f(d,t,o)),mn(t)&&a.set(t,d),d}function _f(e,t,n,r=!1){const{mixins:i,extends:a}=t;a&&_f(e,a,n,!0),i&&i.forEach(o=>_f(e,o,n,!0));for(const o in t)if(!(r&&o==="expose")){const c=eN[o]||n&&n[o];e[o]=c?c(e[o],t[o]):t[o]}return e}const eN={data:r_,props:s_,emits:s_,methods:yc,computed:yc,beforeCreate:Lr,created:Lr,beforeMount:Lr,mounted:Lr,beforeUpdate:Lr,updated:Lr,beforeDestroy:Lr,beforeUnmount:Lr,destroyed:Lr,unmounted:Lr,activated:Lr,deactivated:Lr,errorCaptured:Lr,serverPrefetch:Lr,components:yc,directives:yc,watch:nN,provide:r_,inject:tN};function r_(e,t){return t?e?function(){return on(bt(e)?e.call(this,this):e,bt(t)?t.call(this,this):t)}:t:e}function tN(e,t){return yc(Lg(e),Lg(t))}function Lg(e){if(Xe(e)){const t={};for(let n=0;n1)return n&&bt(t)?t.call(r&&r.proxy):t}}function Rx(){return!!(nr||Kn||jc)}function oN(e,t,n,r=!1){const i={},a={};mf(a,ph,1),e.propsDefaults=Object.create(null),Dx(e,t,i,a);for(const o in e.propsOptions[0])o in i||(i[o]=void 0);n?e.props=r?i:Om(i):e.type.props?e.props=i:e.props=a,e.attrs=a}function iN(e,t,n,r){const{props:i,attrs:a,vnode:{patchFlag:o}}=e,c=Zt(i),[d]=e.propsOptions;let f=!1;if((r||o>0)&&!(o&16)){if(o&8){const y=e.vnode.dynamicProps;for(let g=0;g{d=!0;const[v,S]=Mx(g,t,!0);on(o,v),S&&c.push(...S)};!n&&t.mixins.length&&t.mixins.forEach(y),e.extends&&y(e.extends),e.mixins&&e.mixins.forEach(y)}if(!a&&!d)return mn(e)&&r.set(e,sl),sl;if(Xe(a))for(let y=0;y-1,S[1]=T<0||E-1||sn(S,"default"))&&c.push(g)}}}const f=[o,c];return mn(e)&&r.set(e,f),f}function o_(e){return e[0]!=="$"}function i_(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function a_(e,t){return i_(e)===i_(t)}function l_(e,t){return Xe(t)?t.findIndex(n=>a_(n,e)):bt(t)&&a_(t,e)?0:-1}const $x=e=>e[0]==="_"||e==="$stable",qm=e=>Xe(e)?e.map(hs):[hs(e)],aN=(e,t,n)=>{if(t._n)return t;const r=Mr((...i)=>qm(t(...i)),n);return r._c=!1,r},Fx=(e,t,n)=>{const r=e._ctx;for(const i in e){if($x(i))continue;const a=e[i];if(bt(a))t[i]=aN(i,a,r);else if(a!=null){const o=qm(a);t[i]=()=>o}}},Bx=(e,t)=>{const n=qm(t);e.slots.default=()=>n},lN=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=Zt(t),mf(t,"_",n)):Fx(t,e.slots={})}else e.slots={},t&&Bx(e,t);mf(e.slots,ph,1)},cN=(e,t,n)=>{const{vnode:r,slots:i}=e;let a=!0,o=cn;if(r.shapeFlag&32){const c=t._;c?n&&c===1?a=!1:(on(i,t),!n&&c===1&&delete i._):(a=!t.$stable,Fx(t,i)),o=t}else t&&(Bx(e,t),o={default:1});if(a)for(const c in i)!$x(c)&&o[c]==null&&delete i[c]};function xf(e,t,n,r,i=!1){if(Xe(e)){e.forEach((v,S)=>xf(v,t&&(Xe(t)?t[S]:t),n,r,i));return}if(ga(r)&&!i)return;const a=r.shapeFlag&4?gh(r.component)||r.component.proxy:r.el,o=i?null:a,{i:c,r:d}=e,f=t&&t.r,y=c.refs===cn?c.refs={}:c.refs,g=c.setupState;if(f!=null&&f!==d&&(At(f)?(y[f]=null,sn(g,f)&&(g[f]=null)):ir(f)&&(f.value=null)),bt(d))go(d,c,12,[o,y]);else{const v=At(d),S=ir(d),E=e.f;if(v||S){const T=()=>{if(E){const N=v?sn(g,d)?g[d]:y[d]:d.value;i?Xe(N)&&_m(N,a):Xe(N)?N.includes(a)||N.push(a):v?(y[d]=[a],sn(g,d)&&(g[d]=y[d])):(d.value=[a],e.k&&(y[e.k]=d.value))}else v?(y[d]=o,sn(g,d)&&(g[d]=o)):S&&(d.value=o,e.k&&(y[e.k]=o))};i||E?T():(T.id=-1,pr(T,n))}}}let di=!1;const uN=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",dN=e=>e.namespaceURI.includes("MathML"),Rd=e=>{if(uN(e))return"svg";if(dN(e))return"mathml"},Dd=e=>e.nodeType===8;function fN(e){const{mt:t,p:n,o:{patchProp:r,createText:i,nextSibling:a,parentNode:o,remove:c,insert:d,createComment:f}}=e,y=(L,R)=>{if(!R.hasChildNodes()){n(null,L,R),vf(),R._vnode=L;return}di=!1,g(R.firstChild,L,null,null,null),vf(),R._vnode=L,di&&console.error("Hydration completed but contains mismatches.")},g=(L,R,U,H,m,K=!1)=>{const F=Dd(L)&&L.data==="[",V=()=>T(L,R,U,H,m,F),{type:re,ref:ce,shapeFlag:J,patchFlag:ye}=R;let Me=L.nodeType;R.el=L,ye===-2&&(K=!1,R.dynamicChildren=null);let fe=null;switch(re){case Vo:Me!==3?R.children===""?(d(R.el=i(""),o(L),L),fe=L):fe=V():(L.data!==R.children&&(di=!0,L.data=R.children),fe=a(L));break;case gr:D(L)?(fe=a(L),I(R.el=L.content.firstChild,L,U)):Me!==8||F?fe=V():fe=a(L);break;case Ii:if(F&&(L=a(L),Me=L.nodeType),Me===1||Me===3){fe=L;const Se=!R.children.length;for(let we=0;we{K=K||!!R.dynamicChildren;const{type:F,props:V,patchFlag:re,shapeFlag:ce,dirs:J,transition:ye}=R,Me=F==="input"||F==="option";if(Me||re!==-1){J&&uo(R,null,U,"created");let fe=!1;if(D(L)){fe=Hx(H,ye)&&U&&U.vnode.props&&U.vnode.props.appear;const we=L.content.firstChild;fe&&ye.beforeEnter(we),I(we,L,U),R.el=L=we}if(ce&16&&!(V&&(V.innerHTML||V.textContent))){let we=S(L.firstChild,R,L,U,H,m,K);for(;we;){di=!0;const Qe=we;we=we.nextSibling,c(Qe)}}else ce&8&&L.textContent!==R.children&&(di=!0,L.textContent=R.children);if(V)if(Me||!K||re&48)for(const we in V)(Me&&(we.endsWith("value")||we==="indeterminate")||wa(we)&&!da(we)||we[0]===".")&&r(L,we,null,V[we],void 0,void 0,U);else V.onClick&&r(L,"onClick",null,V.onClick,void 0,void 0,U);let Se;(Se=V&&V.onVnodeBeforeMount)&&qr(Se,U,R),J&&uo(R,null,U,"beforeMount"),((Se=V&&V.onVnodeMounted)||J||fe)&&lx(()=>{Se&&qr(Se,U,R),fe&&ye.enter(L),J&&uo(R,null,U,"mounted")},H)}return L.nextSibling},S=(L,R,U,H,m,K,F)=>{F=F||!!R.dynamicChildren;const V=R.children,re=V.length;for(let ce=0;ce{const{slotScopeIds:F}=R;F&&(m=m?m.concat(F):F);const V=o(L),re=S(a(L),R,V,U,H,m,K);return re&&Dd(re)&&re.data==="]"?a(R.anchor=re):(di=!0,d(R.anchor=f("]"),V,re),re)},T=(L,R,U,H,m,K)=>{if(di=!0,R.el=null,K){const re=N(L);for(;;){const ce=a(L);if(ce&&ce!==re)c(ce);else break}}const F=a(L),V=o(L);return c(L),n(null,R,V,F,U,H,Rd(V),m),F},N=(L,R="[",U="]")=>{let H=0;for(;L;)if(L=a(L),L&&Dd(L)&&(L.data===R&&H++,L.data===U)){if(H===0)return a(L);H--}return L},I=(L,R,U)=>{const H=R.parentNode;H&&H.replaceChild(L,R);let m=U;for(;m;)m.vnode.el===R&&(m.vnode.el=m.subTree.el=L),m=m.parent},D=L=>L.nodeType===1&&L.tagName.toLowerCase()==="template";return[y,g]}const pr=lx;function Jm(e){return Ux(e)}function Zm(e){return Ux(e,fN)}function Ux(e,t){const n=g1();n.__VUE__=!0;const{insert:r,remove:i,patchProp:a,createElement:o,createText:c,createComment:d,setText:f,setElementText:y,parentNode:g,nextSibling:v,setScopeId:S=sr,insertStaticContent:E}=e,T=(A,C,G,oe=null,te=null,be=null,$e=void 0,Ce=null,Le=!!C.dynamicChildren)=>{if(A===C)return;A&&!Ks(A,C)&&(oe=Lt(A),vt(A,te,be,!0),A=null),C.patchFlag===-2&&(Le=!1,C.dynamicChildren=null);const{type:Te,ref:Fe,shapeFlag:Be}=C;switch(Te){case Vo:N(A,C,G,oe);break;case gr:I(A,C,G,oe);break;case Ii:A==null&&D(C,G,oe,$e);break;case Gt:ce(A,C,G,oe,te,be,$e,Ce,Le);break;default:Be&1?U(A,C,G,oe,te,be,$e,Ce,Le):Be&6?J(A,C,G,oe,te,be,$e,Ce,Le):(Be&64||Be&128)&&Te.process(A,C,G,oe,te,be,$e,Ce,Le,Rt)}Fe!=null&&te&&xf(Fe,A&&A.ref,be,C||A,!C)},N=(A,C,G,oe)=>{if(A==null)r(C.el=c(C.children),G,oe);else{const te=C.el=A.el;C.children!==A.children&&f(te,C.children)}},I=(A,C,G,oe)=>{A==null?r(C.el=d(C.children||""),G,oe):C.el=A.el},D=(A,C,G,oe)=>{[A.el,A.anchor]=E(A.children,C,G,oe,A.el,A.anchor)},L=({el:A,anchor:C},G,oe)=>{let te;for(;A&&A!==C;)te=v(A),r(A,G,oe),A=te;r(C,G,oe)},R=({el:A,anchor:C})=>{let G;for(;A&&A!==C;)G=v(A),i(A),A=G;i(C)},U=(A,C,G,oe,te,be,$e,Ce,Le)=>{C.type==="svg"?$e="svg":C.type==="math"&&($e="mathml"),A==null?H(C,G,oe,te,be,$e,Ce,Le):F(A,C,te,be,$e,Ce,Le)},H=(A,C,G,oe,te,be,$e,Ce)=>{let Le,Te;const{props:Fe,shapeFlag:Be,transition:X,dirs:ge}=A;if(Le=A.el=o(A.type,be,Fe&&Fe.is,Fe),Be&8?y(Le,A.children):Be&16&&K(A.children,Le,null,oe,te,Qp(A,be),$e,Ce),ge&&uo(A,null,oe,"created"),m(Le,A,A.scopeId,$e,oe),Fe){for(const qe in Fe)qe!=="value"&&!da(qe)&&a(Le,qe,null,Fe[qe],be,A.children,oe,te,yt);"value"in Fe&&a(Le,"value",null,Fe.value,be),(Te=Fe.onVnodeBeforeMount)&&qr(Te,oe,A)}ge&&uo(A,null,oe,"beforeMount");const je=Hx(te,X);je&&X.beforeEnter(Le),r(Le,C,G),((Te=Fe&&Fe.onVnodeMounted)||je||ge)&&pr(()=>{Te&&qr(Te,oe,A),je&&X.enter(Le),ge&&uo(A,null,oe,"mounted")},te)},m=(A,C,G,oe,te)=>{if(G&&S(A,G),oe)for(let be=0;be{for(let Te=Le;Te{const Ce=C.el=A.el;let{patchFlag:Le,dynamicChildren:Te,dirs:Fe}=C;Le|=A.patchFlag&16;const Be=A.props||cn,X=C.props||cn;let ge;if(G&&Qi(G,!1),(ge=X.onVnodeBeforeUpdate)&&qr(ge,G,C,A),Fe&&uo(C,A,G,"beforeUpdate"),G&&Qi(G,!0),Te?V(A.dynamicChildren,Te,Ce,G,oe,Qp(C,te),be):$e||we(A,C,Ce,null,G,oe,Qp(C,te),be,!1),Le>0){if(Le&16)re(Ce,C,Be,X,G,oe,te);else if(Le&2&&Be.class!==X.class&&a(Ce,"class",null,X.class,te),Le&4&&a(Ce,"style",Be.style,X.style,te),Le&8){const je=C.dynamicProps;for(let qe=0;qe{ge&&qr(ge,G,C,A),Fe&&uo(C,A,G,"updated")},oe)},V=(A,C,G,oe,te,be,$e)=>{for(let Ce=0;Ce{if(G!==oe){if(G!==cn)for(const Ce in G)!da(Ce)&&!(Ce in oe)&&a(A,Ce,G[Ce],null,$e,C.children,te,be,yt);for(const Ce in oe){if(da(Ce))continue;const Le=oe[Ce],Te=G[Ce];Le!==Te&&Ce!=="value"&&a(A,Ce,Te,Le,$e,C.children,te,be,yt)}"value"in oe&&a(A,"value",G.value,oe.value,$e)}},ce=(A,C,G,oe,te,be,$e,Ce,Le)=>{const Te=C.el=A?A.el:c(""),Fe=C.anchor=A?A.anchor:c("");let{patchFlag:Be,dynamicChildren:X,slotScopeIds:ge}=C;ge&&(Ce=Ce?Ce.concat(ge):ge),A==null?(r(Te,G,oe),r(Fe,G,oe),K(C.children||[],G,Fe,te,be,$e,Ce,Le)):Be>0&&Be&64&&X&&A.dynamicChildren?(V(A.dynamicChildren,X,G,te,be,$e,Ce),(C.key!=null||te&&C===te.subTree)&&Qm(A,C,!0)):we(A,C,G,Fe,te,be,$e,Ce,Le)},J=(A,C,G,oe,te,be,$e,Ce,Le)=>{C.slotScopeIds=Ce,A==null?C.shapeFlag&512?te.ctx.activate(C,G,oe,$e,Le):ye(C,G,oe,te,be,$e,Le):Me(A,C,Le)},ye=(A,C,G,oe,te,be,$e)=>{const Ce=A.component=qx(A,oe,te);if(ou(A)&&(Ce.ctx.renderer=Rt),Zx(Ce),Ce.asyncDep){if(te&&te.registerDep(Ce,fe),!A.el){const Le=Ce.subTree=mt(gr);I(null,Le,C,G)}}else fe(Ce,A,C,G,te,be,$e)},Me=(A,C,G)=>{const oe=C.component=A.component;if(B2(A,C,G))if(oe.asyncDep&&!oe.asyncResolved){Se(oe,C,G);return}else oe.next=C,L2(oe.update),oe.effect.dirty=!0,oe.update();else C.el=A.el,oe.vnode=C},fe=(A,C,G,oe,te,be,$e)=>{const Ce=()=>{if(A.isMounted){let{next:Fe,bu:Be,u:X,parent:ge,vnode:je}=A;{const Pe=jx(A);if(Pe){Fe&&(Fe.el=je.el,Se(A,Fe,$e)),Pe.asyncDep.then(()=>{A.isUnmounted||Ce()});return}}let qe=Fe,se;Qi(A,!1),Fe?(Fe.el=je.el,Se(A,Fe,$e)):Fe=je,Be&&il(Be),(se=Fe.props&&Fe.props.onVnodeBeforeUpdate)&&qr(se,ge,Fe,je),Qi(A,!0);const le=ef(A),pe=A.subTree;A.subTree=le,T(pe,le,g(pe.el),Lt(pe),A,te,be),Fe.el=le.el,qe===null&&Lm(A,le.el),X&&pr(X,te),(se=Fe.props&&Fe.props.onVnodeUpdated)&&pr(()=>qr(se,ge,Fe,je),te)}else{let Fe;const{el:Be,props:X}=C,{bm:ge,m:je,parent:qe}=A,se=ga(C);if(Qi(A,!1),ge&&il(ge),!se&&(Fe=X&&X.onVnodeBeforeMount)&&qr(Fe,qe,C),Qi(A,!0),Be&&an){const le=()=>{A.subTree=ef(A),an(Be,A.subTree,A,te,null)};se?C.type.__asyncLoader().then(()=>!A.isUnmounted&&le()):le()}else{const le=A.subTree=ef(A);T(null,le,G,oe,A,te,be),C.el=le.el}if(je&&pr(je,te),!se&&(Fe=X&&X.onVnodeMounted)){const le=C;pr(()=>qr(Fe,qe,le),te)}(C.shapeFlag&256||qe&&ga(qe.vnode)&&qe.vnode.shapeFlag&256)&&A.a&&pr(A.a,te),A.isMounted=!0,C=G=oe=null}},Le=A.effect=new va(Ce,sr,()=>ah(Te),A.scope),Te=A.update=()=>{Le.dirty&&Le.run()};Te.id=A.uid,Qi(A,!0),Te()},Se=(A,C,G)=>{C.component=A;const oe=A.vnode.props;A.vnode=C,A.next=null,iN(A,C.props,oe,G),cN(A,C.children,G),Ca(),Jv(A),Ia()},we=(A,C,G,oe,te,be,$e,Ce,Le=!1)=>{const Te=A&&A.children,Fe=A?A.shapeFlag:0,Be=C.children,{patchFlag:X,shapeFlag:ge}=C;if(X>0){if(X&128){ht(Te,Be,G,oe,te,be,$e,Ce,Le);return}else if(X&256){Qe(Te,Be,G,oe,te,be,$e,Ce,Le);return}}ge&8?(Fe&16&&yt(Te,te,be),Be!==Te&&y(G,Be)):Fe&16?ge&16?ht(Te,Be,G,oe,te,be,$e,Ce,Le):yt(Te,te,be,!0):(Fe&8&&y(G,""),ge&16&&K(Be,G,oe,te,be,$e,Ce,Le))},Qe=(A,C,G,oe,te,be,$e,Ce,Le)=>{A=A||sl,C=C||sl;const Te=A.length,Fe=C.length,Be=Math.min(Te,Fe);let X;for(X=0;XFe?yt(A,te,be,!0,!1,Be):K(C,G,oe,te,be,$e,Ce,Le,Be)},ht=(A,C,G,oe,te,be,$e,Ce,Le)=>{let Te=0;const Fe=C.length;let Be=A.length-1,X=Fe-1;for(;Te<=Be&&Te<=X;){const ge=A[Te],je=C[Te]=Le?vi(C[Te]):hs(C[Te]);if(Ks(ge,je))T(ge,je,G,null,te,be,$e,Ce,Le);else break;Te++}for(;Te<=Be&&Te<=X;){const ge=A[Be],je=C[X]=Le?vi(C[X]):hs(C[X]);if(Ks(ge,je))T(ge,je,G,null,te,be,$e,Ce,Le);else break;Be--,X--}if(Te>Be){if(Te<=X){const ge=X+1,je=geX)for(;Te<=Be;)vt(A[Te],te,be,!0),Te++;else{const ge=Te,je=Te,qe=new Map;for(Te=je;Te<=X;Te++){const lt=C[Te]=Le?vi(C[Te]):hs(C[Te]);lt.key!=null&&qe.set(lt.key,Te)}let se,le=0;const pe=X-je+1;let Pe=!1,He=0;const Je=new Array(pe);for(Te=0;Te=pe){vt(lt,te,be,!0);continue}let kt;if(lt.key!=null)kt=qe.get(lt.key);else for(se=je;se<=X;se++)if(Je[se-je]===0&&Ks(lt,C[se])){kt=se;break}kt===void 0?vt(lt,te,be,!0):(Je[kt-je]=Te+1,kt>=He?He=kt:Pe=!0,T(lt,C[kt],G,null,te,be,$e,Ce,Le),le++)}const nt=Pe?hN(Je):sl;for(se=nt.length-1,Te=pe-1;Te>=0;Te--){const lt=je+Te,kt=C[lt],rt=lt+1{const{el:be,type:$e,transition:Ce,children:Le,shapeFlag:Te}=A;if(Te&6){at(A.component.subTree,C,G,oe);return}if(Te&128){A.suspense.move(C,G,oe);return}if(Te&64){$e.move(A,C,G,Rt);return}if($e===Gt){r(be,C,G);for(let Be=0;BeCe.enter(be),te);else{const{leave:Be,delayLeave:X,afterLeave:ge}=Ce,je=()=>r(be,C,G),qe=()=>{Be(be,()=>{je(),ge&&ge()})};X?X(be,je,qe):qe()}else r(be,C,G)},vt=(A,C,G,oe=!1,te=!1)=>{const{type:be,props:$e,ref:Ce,children:Le,dynamicChildren:Te,shapeFlag:Fe,patchFlag:Be,dirs:X}=A;if(Ce!=null&&xf(Ce,null,G,A,!0),Fe&256){C.ctx.deactivate(A);return}const ge=Fe&1&&X,je=!ga(A);let qe;if(je&&(qe=$e&&$e.onVnodeBeforeUnmount)&&qr(qe,C,A),Fe&6)$t(A.component,G,oe);else{if(Fe&128){A.suspense.unmount(G,oe);return}ge&&uo(A,null,C,"beforeUnmount"),Fe&64?A.type.remove(A,C,G,te,Rt,oe):Te&&(be!==Gt||Be>0&&Be&64)?yt(Te,C,G,!1,!0):(be===Gt&&Be&384||!te&&Fe&16)&&yt(Le,C,G),oe&&Xt(A)}(je&&(qe=$e&&$e.onVnodeUnmounted)||ge)&&pr(()=>{qe&&qr(qe,C,A),ge&&uo(A,null,C,"unmounted")},G)},Xt=A=>{const{type:C,el:G,anchor:oe,transition:te}=A;if(C===Gt){tn(G,oe);return}if(C===Ii){R(A);return}const be=()=>{i(G),te&&!te.persisted&&te.afterLeave&&te.afterLeave()};if(A.shapeFlag&1&&te&&!te.persisted){const{leave:$e,delayLeave:Ce}=te,Le=()=>$e(G,be);Ce?Ce(A.el,be,Le):Le()}else be()},tn=(A,C)=>{let G;for(;A!==C;)G=v(A),i(A),A=G;i(C)},$t=(A,C,G)=>{const{bum:oe,scope:te,update:be,subTree:$e,um:Ce}=A;oe&&il(oe),te.stop(),be&&(be.active=!1,vt($e,A,C,G)),Ce&&pr(Ce,C),pr(()=>{A.isUnmounted=!0},C),C&&C.pendingBranch&&!C.isUnmounted&&A.asyncDep&&!A.asyncResolved&&A.suspenseId===C.pendingId&&(C.deps--,C.deps===0&&C.resolve())},yt=(A,C,G,oe=!1,te=!1,be=0)=>{for(let $e=be;$eA.shapeFlag&6?Lt(A.component.subTree):A.shapeFlag&128?A.suspense.next():v(A.anchor||A.el);let Qt=!1;const Kt=(A,C,G)=>{A==null?C._vnode&&vt(C._vnode,null,null,!0):T(C._vnode||null,A,C,null,null,null,G),Qt||(Qt=!0,Jv(),vf(),Qt=!1),C._vnode=A},Rt={p:T,um:vt,m:at,r:Xt,mt:ye,mc:K,pc:we,pbc:V,n:Lt,o:e};let yn,an;return t&&([yn,an]=t(Rt)),{render:Kt,hydrate:yn,createApp:sN(Kt,yn)}}function Qp({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Qi({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Hx(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Qm(e,t,n=!1){const r=e.children,i=t.children;if(Xe(r)&&Xe(i))for(let a=0;a>1,e[n[c]]0&&(t[r]=n[a-1]),n[a]=r)}}for(a=n.length,o=n[a-1];a-- >0;)n[a]=o,o=t[o];return n}function jx(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:jx(t)}const pN=e=>e.__isTeleport,wc=e=>e&&(e.disabled||e.disabled===""),c_=e=>typeof SVGElement<"u"&&e instanceof SVGElement,u_=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Dg=(e,t)=>{const n=e&&e.to;return At(n)?t?t(n):null:n},gN={name:"Teleport",__isTeleport:!0,process(e,t,n,r,i,a,o,c,d,f){const{mc:y,pc:g,pbc:v,o:{insert:S,querySelector:E,createText:T,createComment:N}}=f,I=wc(t.props);let{shapeFlag:D,children:L,dynamicChildren:R}=t;if(e==null){const U=t.el=T(""),H=t.anchor=T("");S(U,n,r),S(H,n,r);const m=t.target=Dg(t.props,E),K=t.targetAnchor=T("");m&&(S(K,m),o==="svg"||c_(m)?o="svg":(o==="mathml"||u_(m))&&(o="mathml"));const F=(V,re)=>{D&16&&y(L,V,re,i,a,o,c,d)};I?F(n,H):m&&F(m,K)}else{t.el=e.el;const U=t.anchor=e.anchor,H=t.target=e.target,m=t.targetAnchor=e.targetAnchor,K=wc(e.props),F=K?n:H,V=K?U:m;if(o==="svg"||c_(H)?o="svg":(o==="mathml"||u_(H))&&(o="mathml"),R?(v(e.dynamicChildren,R,F,i,a,o,c),Qm(e,t,!0)):d||g(e,t,F,V,i,a,o,c,!1),I)K?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):Md(t,n,U,f,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const re=t.target=Dg(t.props,E);re&&Md(t,re,null,f,0)}else K&&Md(t,H,m,f,1)}Wx(t)},remove(e,t,n,r,{um:i,o:{remove:a}},o){const{shapeFlag:c,children:d,anchor:f,targetAnchor:y,target:g,props:v}=e;if(g&&a(y),o&&a(f),c&16){const S=o||!wc(v);for(let E=0;E0?Jr||sl:null,Gx(),xa>0&&Jr&&Jr.push(e),e}function Ne(e,t,n,r,i,a){return Kx(w(e,t,n,r,i,a,!0))}function wn(e,t,n,r,i){return Kx(mt(e,t,n,r,i,!0))}function Wo(e){return e?e.__v_isVNode===!0:!1}function Ks(e,t){return e.type===t.type&&e.key===t.key}function zx(e){}const ph="__vInternal",Yx=({key:e})=>e??null,tf=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?At(e)||ir(e)||bt(e)?{i:Kn,r:e,k:t,f:!!n}:e:null);function w(e,t=null,n=null,r=0,i=null,a=e===Gt?0:1,o=!1,c=!1){const d={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Yx(t),ref:t&&tf(t),scopeId:ch,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:a,patchFlag:r,dynamicProps:i,dynamicChildren:null,appContext:null,ctx:Kn};return c?(ty(d,n),a&128&&e.normalize(d)):n&&(d.shapeFlag|=At(n)?8:16),xa>0&&!o&&Jr&&(d.patchFlag>0||a&6)&&d.patchFlag!==32&&Jr.push(d),d}const mt=yN;function yN(e,t=null,n=null,r=0,i=null,a=!1){if((!e||e===rx)&&(e=gr),Wo(e)){const c=Js(e,t,!0);return n&&ty(c,n),xa>0&&!a&&Jr&&(c.shapeFlag&6?Jr[Jr.indexOf(e)]=c:Jr.push(c)),c.patchFlag|=-2,c}if(EN(e)&&(e=e.__vccOpts),t){t=ey(t);let{class:c,style:d}=t;c&&!At(c)&&(t.class=Yt(c)),mn(d)&&(rh(d)&&!Xe(d)&&(d=on({},d)),t.style=wl(d))}const o=At(e)?1:ix(e)?128:pN(e)?64:mn(e)?4:bt(e)?2:0;return w(e,t,n,r,i,o,a,!0)}function ey(e){return e?rh(e)||ph in e?on({},e):e:null}function Js(e,t,n=!1){const{props:r,ref:i,patchFlag:a,children:o}=e,c=t?ny(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:c,key:c&&Yx(c),ref:t&&t.ref?n&&i?Xe(i)?i.concat(tf(t)):[i,tf(t)]:tf(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Gt?a===-1?16:a|16:a,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Js(e.ssContent),ssFallback:e.ssFallback&&Js(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function vn(e=" ",t=0){return mt(Vo,null,e,t)}function Xx(e,t){const n=mt(Ii,null,e);return n.staticCount=t,n}function it(e="",t=!1){return t?(_e(),wn(gr,null,e)):mt(gr,null,e)}function hs(e){return e==null||typeof e=="boolean"?mt(gr):Xe(e)?mt(Gt,null,e.slice()):typeof e=="object"?vi(e):mt(Vo,null,String(e))}function vi(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Js(e)}function ty(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Xe(t))n=16;else if(typeof t=="object")if(r&65){const i=t.default;i&&(i._c&&(i._d=!1),ty(e,i()),i._c&&(i._d=!0));return}else{n=32;const i=t._;!i&&!(ph in t)?t._ctx=Kn:i===3&&Kn&&(Kn.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else bt(t)?(t={default:t,_ctx:Kn},n=32):(t=String(t),r&64?(n=16,t=[vn(t)]):n=8);e.children=t,e.shapeFlag|=n}function ny(...e){const t={};for(let n=0;nnr||Kn;let Sf,Mg;{const e=g1(),t=(n,r)=>{let i;return(i=e[n])||(i=e[n]=[]),i.push(r),a=>{i.length>1?i.forEach(o=>o(a)):i[0](a)}};Sf=t("__VUE_INSTANCE_SETTERS__",n=>nr=n),Mg=t("__VUE_SSR_SETTERS__",n=>cu=n)}const Ea=e=>{const t=nr;return Sf(e),e.scope.on(),()=>{e.scope.off(),Sf(t)}},$g=()=>{nr&&nr.scope.off(),Sf(null)};function Jx(e){return e.vnode.shapeFlag&4}let cu=!1;function Zx(e,t=!1){t&&Mg(t);const{props:n,children:r}=e.vnode,i=Jx(e);oN(e,n,i,t),lN(e,r);const a=i?_N(e,t):void 0;return t&&Mg(!1),a}function _N(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=sh(new Proxy(e.ctx,Pg));const{setup:r}=n;if(r){const i=e.setupContext=r.length>1?tE(e):null,a=Ea(e);Ca();const o=go(r,e,0,[e.props,i]);if(Ia(),a(),xm(o)){if(o.then($g,$g),t)return o.then(c=>{Fg(e,c,t)}).catch(c=>{Ri(c,e,0)});e.asyncDep=o}else Fg(e,o,t)}else eE(e,t)}function Fg(e,t,n){bt(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:mn(t)&&(e.setupState=ih(t)),eE(e,n)}let wf,Bg;function ry(e){wf=e,Bg=t=>{t.render._rc&&(t.withProxy=new Proxy(t.ctx,J2))}}const Qx=()=>!wf;function eE(e,t,n){const r=e.type;if(!e.render){if(!t&&wf&&!r.render){const i=r.template||Xm(e).template;if(i){const{isCustomElement:a,compilerOptions:o}=e.appContext.config,{delimiters:c,compilerOptions:d}=r,f=on(on({isCustomElement:a,delimiters:c},o),d);r.render=wf(i,f)}}e.render=r.render||sr,Bg&&Bg(e)}{const i=Ea(e);Ca();try{Z2(e)}finally{Ia(),i()}}}function xN(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return es(e,"get","$attrs"),t[n]}}))}function tE(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return xN(e)},slots:e.slots,emit:e.emit,expose:t}}function gh(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(ih(sh(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Sc)return Sc[n](e)},has(t,n){return n in t||n in Sc}}))}function Ug(e,t=!0){return bt(e)?e.displayName||e.name:e.name||t&&e.__name}function EN(e){return bt(e)&&"__vccOpts"in e}const Wn=(e,t)=>w2(e,t,cu);function nE(e,t,n=cn){const r=Fr(),i=Ln(t),a=ps(t),o=Pm((d,f)=>{let y;return Um(()=>{const g=e[t];qs(y,g)&&(y=g,f())}),{get(){return d(),n.get?n.get(y):y},set(g){const v=r.vnode.props;!(v&&(t in v||i in v||a in v)&&(`onUpdate:${t}`in v||`onUpdate:${i}`in v||`onUpdate:${a}`in v))&&qs(g,y)&&(y=g,f()),r.emit(`update:${t}`,n.set?n.set(g):g)}}}),c=t==="modelValue"?"modelModifiers":`${t}Modifiers`;return o[Symbol.iterator]=()=>{let d=0;return{next(){return d<2?{value:d++?e[c]||{}:o,done:!1}:{done:!0}}}},o}function uu(e,t,n){const r=arguments.length;return r===2?mn(t)&&!Xe(t)?Wo(t)?mt(e,null,[t]):mt(e,t):mt(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Wo(n)&&(n=[n]),mt(e,t,n))}function rE(){}function sE(e,t,n,r){const i=n[r];if(i&&sy(i,e))return i;const a=t();return a.memo=e.slice(),n[r]=a}function sy(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let r=0;r0&&Jr&&Jr.push(e),!0}const oy="3.4.15",oE=sr,iE=k2,aE=Qa,lE=Z1,SN={createComponentInstance:qx,setupComponent:Zx,renderComponentRoot:ef,setCurrentRenderingInstance:Bc,isVNode:Wo,normalizeVNode:hs},cE=SN,uE=null,dE=null,fE=null;/** * @vue/runtime-dom v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/const wN="http://www.w3.org/2000/svg",TN="http://www.w3.org/1998/Math/MathML",_i=typeof document<"u"?document:null,d_=_i&&_i.createElement("template"),CN={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const i=t==="svg"?_i.createElementNS(wN,e):t==="mathml"?_i.createElementNS(TN,e):_i.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&i.setAttribute("multiple",r.multiple),i},createText:e=>_i.createTextNode(e),createComment:e=>_i.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>_i.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,i,a){const o=n?n.previousSibling:t.lastChild;if(i&&(i===a||i.nextSibling))for(;t.insertBefore(i.cloneNode(!0),n),!(i===a||!(i=i.nextSibling)););else{d_.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const c=d_.content;if(r==="svg"||r==="mathml"){const d=c.firstChild;for(;d.firstChild;)c.appendChild(d.firstChild);c.removeChild(d)}t.insertBefore(c,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},fi="transition",uc="animation",fl=Symbol("_vtc"),Di=(e,{slots:t})=>uu(Hm,pE(e),t);Di.displayName="Transition";const hE={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},IN=Di.props=on({},fh,hE),ea=(e,t=[])=>{Xe(e)?e.forEach(n=>n(...t)):e&&e(...t)},f_=e=>e?Xe(e)?e.some(t=>t.length>1):e.length>1:!1;function pE(e){const t={};for(const ce in e)ce in hE||(t[ce]=e[ce]);if(e.css===!1)return t;const{name:n="v",type:r,duration:i,enterFromClass:a=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:d=a,appearActiveClass:f=o,appearToClass:y=c,leaveFromClass:g=`${n}-leave-from`,leaveActiveClass:v=`${n}-leave-active`,leaveToClass:S=`${n}-leave-to`}=e,E=ON(i),T=E&&E[0],N=E&&E[1],{onBeforeEnter:I,onEnter:D,onEnterCancelled:L,onLeave:R,onLeaveCancelled:U,onBeforeAppear:H=I,onAppear:m=D,onAppearCancelled:K=L}=t,F=(ce,J,ye)=>{mi(ce,J?y:c),mi(ce,J?f:o),ye&&ye()},V=(ce,J)=>{ce._isLeaving=!1,mi(ce,g),mi(ce,S),mi(ce,v),J&&J()},re=ce=>(J,ye)=>{const Me=ce?m:D,fe=()=>F(J,ce,ye);ea(Me,[J,fe]),h_(()=>{mi(J,ce?d:a),Ro(J,ce?y:c),f_(Me)||p_(J,r,T,fe)})};return on(t,{onBeforeEnter(ce){ea(I,[ce]),Ro(ce,a),Ro(ce,o)},onBeforeAppear(ce){ea(H,[ce]),Ro(ce,d),Ro(ce,f)},onEnter:re(!1),onAppear:re(!0),onLeave(ce,J){ce._isLeaving=!0;const ye=()=>V(ce,J);Ro(ce,g),mE(),Ro(ce,v),h_(()=>{ce._isLeaving&&(mi(ce,g),Ro(ce,S),f_(R)||p_(ce,r,N,ye))}),ea(R,[ce,ye])},onEnterCancelled(ce){F(ce,!1),ea(L,[ce])},onAppearCancelled(ce){F(ce,!0),ea(K,[ce])},onLeaveCancelled(ce){V(ce),ea(U,[ce])}})}function ON(e){if(e==null)return null;if(mn(e))return[eg(e.enter),eg(e.leave)];{const t=eg(e);return[t,t]}}function eg(e){return bf(e)}function Ro(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[fl]||(e[fl]=new Set)).add(t)}function mi(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[fl];n&&(n.delete(t),n.size||(e[fl]=void 0))}function h_(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let AN=0;function p_(e,t,n,r){const i=e._endId=++AN,a=()=>{i===e._endId&&r()};if(n)return setTimeout(a,n);const{type:o,timeout:c,propCount:d}=gE(e,t);if(!o)return r();const f=o+"end";let y=0;const g=()=>{e.removeEventListener(f,v),a()},v=S=>{S.target===e&&++y>=d&&g()};setTimeout(()=>{y(n[E]||"").split(", "),i=r(`${fi}Delay`),a=r(`${fi}Duration`),o=g_(i,a),c=r(`${uc}Delay`),d=r(`${uc}Duration`),f=g_(c,d);let y=null,g=0,v=0;t===fi?o>0&&(y=fi,g=o,v=a.length):t===uc?f>0&&(y=uc,g=f,v=d.length):(g=Math.max(o,f),y=g>0?o>f?fi:uc:null,v=y?y===fi?a.length:d.length:0);const S=y===fi&&/\b(transform|all)(,|$)/.test(r(`${fi}Property`).toString());return{type:y,timeout:g,propCount:v,hasTransform:S}}function g_(e,t){for(;e.lengthm_(n)+m_(e[r])))}function m_(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function mE(){return document.body.offsetHeight}function kN(e,t,n){const r=e[fl];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const iy=Symbol("_vod"),yh={beforeMount(e,{value:t},{transition:n}){e[iy]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):dc(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),dc(e,!0),r.enter(e)):r.leave(e,()=>{dc(e,!1)}):dc(e,t))},beforeUnmount(e,{value:t}){dc(e,t)}};function dc(e,t){e.style.display=t?e[iy]:"none"}function PN(){yh.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const yE=Symbol("");function bE(e){const t=Fr();if(!t)return;const n=t.ut=(i=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(a=>jg(a,i))},r=()=>{const i=e(t.proxy);Hg(t.subTree,i),n(i)};Bm(r),Aa(()=>{const i=new MutationObserver(r);i.observe(t.subTree.el.parentNode,{childList:!0}),Tl(()=>i.disconnect())})}function Hg(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{Hg(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)jg(e.el,t);else if(e.type===Gt)e.children.forEach(n=>Hg(n,t));else if(e.type===Ii){let{el:n,anchor:r}=e;for(;n&&(jg(n,t),n!==r);)n=n.nextSibling}}function jg(e,t){if(e.nodeType===1){const n=e.style;let r="";for(const i in t)n.setProperty(`--${i}`,t[i]),r+=`--${i}: ${t[i]};`;n[yE]=r}}function NN(e,t,n){const r=e.style,i=r.display,a=At(n);if(n&&!a){if(t&&!At(t))for(const o in t)n[o]==null&&Vg(r,o,"");for(const o in n)Vg(r,o,n[o])}else if(a){if(t!==n){const o=r[yE];o&&(n+=";"+o),r.cssText=n}}else t&&e.removeAttribute("style");iy in e&&(r.display=i)}const y_=/\s*!important$/;function Vg(e,t,n){if(Xe(n))n.forEach(r=>Vg(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=LN(e,t);y_.test(n)?e.setProperty(ps(r),n.replace(y_,""),"important"):e[r]=n}}const b_=["Webkit","Moz","ms"],tg={};function LN(e,t){const n=tg[t];if(n)return n;let r=Ln(t);if(r!=="filter"&&r in e)return tg[t]=r;r=Li(r);for(let i=0;ing||(BN.then(()=>ng=0),ng=Date.now());function HN(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Qr(jN(r,n.value),t,5,[r])};return n.value=e,n.attached=UN(),n}function jN(e,t){if(Xe(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>i=>!i._stopped&&r&&r(i))}else return t}const E_=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,VN=(e,t,n,r,i,a,o,c,d)=>{const f=i==="svg";t==="class"?kN(e,r,f):t==="style"?NN(e,n,r):wa(t)?vm(t)||$N(e,t,n,r,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):WN(e,t,r,f))?DN(e,t,r,a,o,c,d):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),RN(e,t,r,f))};function WN(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&E_(t)&&bt(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const i=e.tagName;if(i==="IMG"||i==="VIDEO"||i==="CANVAS"||i==="SOURCE")return!1}return E_(t)&&At(n)?!1:t in e}/*! #__NO_SIDE_EFFECTS__ */function ay(e,t){const n=Oa(e);class r extends du{constructor(a){super(n,a,t)}}return r.def=n,r}/*! #__NO_SIDE_EFFECTS__ */const vE=e=>ay(e,ly),GN=typeof HTMLElement<"u"?HTMLElement:class{};class du extends GN{constructor(t,n={},r){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this._ob=null,this.shadowRoot&&r?r(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,this._ob&&(this._ob.disconnect(),this._ob=null),nu(()=>{this._connected||(If(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let r=0;r{for(const i of r)this._setAttr(i.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(r,i=!1)=>{const{props:a,styles:o}=r;let c;if(a&&!Xe(a))for(const d in a){const f=a[d];(f===Number||f&&f.type===Number)&&(d in this._props&&(this._props[d]=bf(this._props[d])),(c||(c=Object.create(null)))[Ln(d)]=!0)}this._numberProps=c,i&&this._resolveProps(r),this._applyStyles(o),this._update()},n=this._def.__asyncLoader;n?n().then(r=>t(r,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,r=Xe(n)?n:Object.keys(n||{});for(const i of Object.keys(this))i[0]!=="_"&&r.includes(i)&&this._setProp(i,this[i],!0,!1);for(const i of r.map(Ln))Object.defineProperty(this,i,{get(){return this._getProp(i)},set(a){this._setProp(i,a)}})}_setAttr(t){let n=this.getAttribute(t);const r=Ln(t);this._numberProps&&this._numberProps[r]&&(n=bf(n)),this._setProp(r,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,r=!0,i=!0){n!==this._props[t]&&(this._props[t]=n,i&&this._instance&&this._update(),r&&(n===!0?this.setAttribute(ps(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(ps(t),n+""):n||this.removeAttribute(ps(t))))}_update(){If(this._createVNode(),this.shadowRoot)}_createVNode(){const t=mt(this._def,on({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const r=(a,o)=>{this.dispatchEvent(new CustomEvent(a,{detail:o}))};n.emit=(a,...o)=>{r(a,o),ps(a)!==a&&r(ps(a),o)};let i=this;for(;i=i&&(i.parentNode||i.host);)if(i instanceof du){n.parent=i._instance,n.provides=i._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const r=document.createElement("style");r.textContent=n,this.shadowRoot.appendChild(r)})}}function _E(e="$style"){{const t=Fr();if(!t)return cn;const n=t.type.__cssModules;if(!n)return cn;const r=n[e];return r||cn}}const xE=new WeakMap,EE=new WeakMap,Cf=Symbol("_moveCb"),S_=Symbol("_enterCb"),SE={name:"TransitionGroup",props:on({},IN,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Fr(),r=dh();let i,a;return iu(()=>{if(!i.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!qN(i[0].el,n.vnode.el,o))return;i.forEach(zN),i.forEach(YN);const c=i.filter(XN);mE(),c.forEach(d=>{const f=d.el,y=f.style;Ro(f,o),y.transform=y.webkitTransform=y.transitionDuration="";const g=f[Cf]=v=>{v&&v.target!==f||(!v||/transform$/.test(v.propertyName))&&(f.removeEventListener("transitionend",g),f[Cf]=null,mi(f,o))};f.addEventListener("transitionend",g)})}),()=>{const o=Zt(e),c=pE(o);let d=o.tag||Gt;i=a,a=t.default?su(t.default()):[];for(let f=0;fdelete e.mode;SE.props;const wE=SE;function zN(e){const t=e.el;t[Cf]&&t[Cf](),t[S_]&&t[S_]()}function YN(e){EE.set(e,e.el.getBoundingClientRect())}function XN(e){const t=xE.get(e),n=EE.get(e),r=t.left-n.left,i=t.top-n.top;if(r||i){const a=e.el.style;return a.transform=a.webkitTransform=`translate(${r}px,${i}px)`,a.transitionDuration="0s",e}}function qN(e,t,n){const r=e.cloneNode(),i=e[fl];i&&i.forEach(c=>{c.split(/\s+/).forEach(d=>d&&r.classList.remove(d))}),n.split(/\s+/).forEach(c=>c&&r.classList.add(c)),r.style.display="none";const a=t.nodeType===1?t:t.parentNode;a.appendChild(r);const{hasTransform:o}=gE(r);return a.removeChild(r),o}const Pi=e=>{const t=e.props["onUpdate:modelValue"]||!1;return Xe(t)?n=>il(t,n):t};function JN(e){e.target.composing=!0}function w_(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Ls=Symbol("_assign"),zn={created(e,{modifiers:{lazy:t,trim:n,number:r}},i){e[Ls]=Pi(i);const a=r||i.props&&i.props.type==="number";Mo(e,t?"change":"input",o=>{if(o.target.composing)return;let c=e.value;n&&(c=c.trim()),a&&(c=Rc(c)),e[Ls](c)}),n&&Mo(e,"change",()=>{e.value=e.value.trim()}),t||(Mo(e,"compositionstart",JN),Mo(e,"compositionend",w_),Mo(e,"change",w_))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:i}},a){if(e[Ls]=Pi(a),e.composing)return;const o=i||e.type==="number"?Rc(e.value):e.value,c=t??"";o!==c&&(document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===c)||(e.value=c))}},fu={deep:!0,created(e,t,n){e[Ls]=Pi(n),Mo(e,"change",()=>{const r=e._modelValue,i=hl(e),a=e.checked,o=e[Ls];if(Xe(r)){const c=Jf(r,i),d=c!==-1;if(a&&!d)o(r.concat(i));else if(!a&&d){const f=[...r];f.splice(c,1),o(f)}}else if(Ta(r)){const c=new Set(r);a?c.add(i):c.delete(i),o(c)}else o(TE(e,a))})},mounted:T_,beforeUpdate(e,t,n){e[Ls]=Pi(n),T_(e,t,n)}};function T_(e,{value:t,oldValue:n},r){e._modelValue=t,Xe(t)?e.checked=Jf(t,r.props.value)>-1:Ta(t)?e.checked=t.has(r.props.value):t!==n&&(e.checked=jo(t,TE(e,!0)))}const bh={created(e,{value:t},n){e.checked=jo(t,n.props.value),e[Ls]=Pi(n),Mo(e,"change",()=>{e[Ls](hl(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e[Ls]=Pi(r),t!==n&&(e.checked=jo(t,r.props.value))}},gs={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const i=Ta(t);Mo(e,"change",()=>{const a=Array.prototype.filter.call(e.options,o=>o.selected).map(o=>n?Rc(hl(o)):hl(o));e[Ls](e.multiple?i?new Set(a):a:a[0]),e._assigning=!0,nu(()=>{e._assigning=!1})}),e[Ls]=Pi(r)},mounted(e,{value:t,oldValue:n,modifiers:{number:r}}){C_(e,t,n,r)},beforeUpdate(e,t,n){e[Ls]=Pi(n)},updated(e,{value:t,oldValue:n,modifiers:{number:r}}){e._assigning||C_(e,t,n,r)}};function C_(e,t,n,r){const i=e.multiple,a=Xe(t);if(!(i&&!a&&!Ta(t))&&!(a&&jo(t,n))){for(let o=0,c=e.options.length;o-1}else d.selected=t.has(f);else if(jo(hl(d),t)){e.selectedIndex!==o&&(e.selectedIndex=o);return}}!i&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function hl(e){return"_value"in e?e._value:e.value}function TE(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Vc={created(e,t,n){Fd(e,t,n,null,"created")},mounted(e,t,n){Fd(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){Fd(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){Fd(e,t,n,r,"updated")}};function CE(e,t){switch(e){case"SELECT":return gs;case"TEXTAREA":return zn;default:switch(t){case"checkbox":return fu;case"radio":return bh;default:return zn}}}function Fd(e,t,n,r,i){const o=CE(e.tagName,n.props&&n.props.type)[i];o&&o(e,t,n,r)}function ZN(){zn.getSSRProps=({value:e})=>({value:e}),bh.getSSRProps=({value:e},t)=>{if(t.props&&jo(t.props.value,e))return{checked:!0}},fu.getSSRProps=({value:e},t)=>{if(Xe(e)){if(t.props&&Jf(e,t.props.value)>-1)return{checked:!0}}else if(Ta(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},Vc.getSSRProps=(e,t)=>{if(typeof t.type!="string")return;const n=CE(t.type.toUpperCase(),t.props&&t.props.type);if(n.getSSRProps)return n.getSSRProps(e,t)}}const QN=["ctrl","shift","alt","meta"],eL={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>QN.some(n=>e[`${n}Key`]&&!t.includes(n))},IE=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(i,...a)=>{for(let o=0;o{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=i=>{if(!("key"in i))return;const a=ps(i.key);if(t.some(o=>o===a||tL[o]===a))return e(i)})},AE=on({patchProp:VN},CN);let Cc,I_=!1;function kE(){return Cc||(Cc=Jm(AE))}function PE(){return Cc=I_?Cc:Zm(AE),I_=!0,Cc}const If=(...e)=>{kE().render(...e)},ly=(...e)=>{PE().hydrate(...e)},cy=(...e)=>{const t=kE().createApp(...e),{mount:n}=t;return t.mount=r=>{const i=RE(r);if(!i)return;const a=t._component;!bt(a)&&!a.render&&!a.template&&(a.template=i.innerHTML),i.innerHTML="";const o=n(i,!1,LE(i));return i instanceof Element&&(i.removeAttribute("v-cloak"),i.setAttribute("data-v-app","")),o},t},NE=(...e)=>{const t=PE().createApp(...e),{mount:n}=t;return t.mount=r=>{const i=RE(r);if(i)return n(i,!0,LE(i))},t};function LE(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function RE(e){return At(e)?document.querySelector(e):e}let O_=!1;const DE=()=>{O_||(O_=!0,ZN(),PN())},nL=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Hm,BaseTransitionPropsValidators:fh,Comment:gr,DeprecationTypes:fE,EffectScope:Zf,ErrorCodes:Y1,ErrorTypeStrings:iE,Fragment:Gt,KeepAlive:hx,ReactiveEffect:va,Static:Ii,Suspense:ax,Teleport:Vx,Text:Vo,TrackOpTypes:G1,Transition:Di,TransitionGroup:wE,TriggerOpTypes:K1,VueElement:du,assertNumber:z1,callWithAsyncErrorHandling:Qr,callWithErrorHandling:go,camelize:Ln,capitalize:Li,cloneVNode:Js,compatUtils:dE,computed:Wn,createApp:cy,createBlock:_n,createCommentVNode:rt,createElementBlock:Ne,createElementVNode:w,createHydrationRenderer:Zm,createPropsRestProxy:kx,createRenderer:Jm,createSSRApp:NE,createSlots:gx,createStaticVNode:Xx,createTextVNode:xn,createVNode:mt,customRef:Pm,defineAsyncComponent:fx,defineComponent:Oa,defineCustomElement:ay,defineEmits:vx,defineExpose:_x,defineModel:Sx,defineOptions:xx,defineProps:bx,defineSSRCustomElement:vE,defineSlots:Ex,devtools:aE,effect:E1,effectScope:Sm,getCurrentInstance:Fr,getCurrentScope:Qf,getTransitionRawChildren:su,guardReactiveProps:ey,h:uu,handleError:Ri,hasInjectionContext:Rx,hydrate:ly,initCustomFormatter:rE,initDirectivesForSSR:DE,inject:En,isMemoSame:sy,isProxy:sh,isReactive:Ci,isReadonly:Ai,isRef:ir,isRuntimeOnly:Qx,isShallow:dl,isVNode:Wo,markRaw:oh,mergeDefaults:Ox,mergeModels:Ax,mergeProps:ny,nextTick:nu,normalizeClass:Yt,normalizeProps:y1,normalizeStyle:wl,onActivated:jm,onBeforeMount:ph,onBeforeUnmount:au,onBeforeUpdate:Wm,onDeactivated:Vm,onErrorCaptured:Ym,onMounted:Aa,onRenderTracked:zm,onRenderTriggered:Km,onScopeDispose:wm,onServerPrefetch:Gm,onUnmounted:Tl,onUpdated:iu,openBlock:_e,popScopeId:tx,provide:Fo,proxyRefs:ah,pushScopeId:ex,queuePostFlushCb:$c,reactive:eu,readonly:nh,ref:ft,registerRuntimeCompiler:ry,render:If,renderList:$r,renderSlot:lu,resolveComponent:Mt,resolveDirective:ox,resolveDynamicComponent:sx,resolveFilter:uE,resolveTransitionHooks:_a,setBlockTracking:Sf,setDevtoolsHook:lE,setTransitionHooks:ki,shallowReactive:Om,shallowReadonly:$1,shallowRef:ih,ssrContextKey:$m,ssrUtils:cE,stop:S1,toDisplayString:ae,toHandlerKey:fa,toHandlers:yx,toRaw:Zt,toRef:V1,toRefs:j1,toValue:H1,transformVNodeArgs:zx,triggerRef:U1,unref:tu,useAttrs:Cx,useCssModule:_E,useCssVars:bE,useModel:nE,useSSRContext:Fm,useSlots:Tx,useTransitionState:dh,vModelCheckbox:fu,vModelDynamic:Vc,vModelRadio:bh,vModelSelect:gs,vModelText:zn,vShow:yh,version:oy,warn:oE,watch:Ns,watchEffect:cx,watchPostEffect:Bm,watchSyncEffect:Um,withAsyncContext:Px,withCtx:Mr,withDefaults:wx,withDirectives:dn,withKeys:OE,withMemo:sE,withModifiers:IE,withScopeId:nx},Symbol.toStringTag,{value:"Module"}));/** +**/const wN="http://www.w3.org/2000/svg",TN="http://www.w3.org/1998/Math/MathML",_i=typeof document<"u"?document:null,d_=_i&&_i.createElement("template"),CN={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const i=t==="svg"?_i.createElementNS(wN,e):t==="mathml"?_i.createElementNS(TN,e):_i.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&i.setAttribute("multiple",r.multiple),i},createText:e=>_i.createTextNode(e),createComment:e=>_i.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>_i.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,i,a){const o=n?n.previousSibling:t.lastChild;if(i&&(i===a||i.nextSibling))for(;t.insertBefore(i.cloneNode(!0),n),!(i===a||!(i=i.nextSibling)););else{d_.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const c=d_.content;if(r==="svg"||r==="mathml"){const d=c.firstChild;for(;d.firstChild;)c.appendChild(d.firstChild);c.removeChild(d)}t.insertBefore(c,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},fi="transition",uc="animation",fl=Symbol("_vtc"),Di=(e,{slots:t})=>uu(Hm,pE(e),t);Di.displayName="Transition";const hE={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},IN=Di.props=on({},dh,hE),ea=(e,t=[])=>{Xe(e)?e.forEach(n=>n(...t)):e&&e(...t)},f_=e=>e?Xe(e)?e.some(t=>t.length>1):e.length>1:!1;function pE(e){const t={};for(const ce in e)ce in hE||(t[ce]=e[ce]);if(e.css===!1)return t;const{name:n="v",type:r,duration:i,enterFromClass:a=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:d=a,appearActiveClass:f=o,appearToClass:y=c,leaveFromClass:g=`${n}-leave-from`,leaveActiveClass:v=`${n}-leave-active`,leaveToClass:S=`${n}-leave-to`}=e,E=ON(i),T=E&&E[0],N=E&&E[1],{onBeforeEnter:I,onEnter:D,onEnterCancelled:L,onLeave:R,onLeaveCancelled:U,onBeforeAppear:H=I,onAppear:m=D,onAppearCancelled:K=L}=t,F=(ce,J,ye)=>{mi(ce,J?y:c),mi(ce,J?f:o),ye&&ye()},V=(ce,J)=>{ce._isLeaving=!1,mi(ce,g),mi(ce,S),mi(ce,v),J&&J()},re=ce=>(J,ye)=>{const Me=ce?m:D,fe=()=>F(J,ce,ye);ea(Me,[J,fe]),h_(()=>{mi(J,ce?d:a),Ro(J,ce?y:c),f_(Me)||p_(J,r,T,fe)})};return on(t,{onBeforeEnter(ce){ea(I,[ce]),Ro(ce,a),Ro(ce,o)},onBeforeAppear(ce){ea(H,[ce]),Ro(ce,d),Ro(ce,f)},onEnter:re(!1),onAppear:re(!0),onLeave(ce,J){ce._isLeaving=!0;const ye=()=>V(ce,J);Ro(ce,g),mE(),Ro(ce,v),h_(()=>{ce._isLeaving&&(mi(ce,g),Ro(ce,S),f_(R)||p_(ce,r,N,ye))}),ea(R,[ce,ye])},onEnterCancelled(ce){F(ce,!1),ea(L,[ce])},onAppearCancelled(ce){F(ce,!0),ea(K,[ce])},onLeaveCancelled(ce){V(ce),ea(U,[ce])}})}function ON(e){if(e==null)return null;if(mn(e))return[eg(e.enter),eg(e.leave)];{const t=eg(e);return[t,t]}}function eg(e){return yf(e)}function Ro(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[fl]||(e[fl]=new Set)).add(t)}function mi(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[fl];n&&(n.delete(t),n.size||(e[fl]=void 0))}function h_(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let AN=0;function p_(e,t,n,r){const i=e._endId=++AN,a=()=>{i===e._endId&&r()};if(n)return setTimeout(a,n);const{type:o,timeout:c,propCount:d}=gE(e,t);if(!o)return r();const f=o+"end";let y=0;const g=()=>{e.removeEventListener(f,v),a()},v=S=>{S.target===e&&++y>=d&&g()};setTimeout(()=>{y(n[E]||"").split(", "),i=r(`${fi}Delay`),a=r(`${fi}Duration`),o=g_(i,a),c=r(`${uc}Delay`),d=r(`${uc}Duration`),f=g_(c,d);let y=null,g=0,v=0;t===fi?o>0&&(y=fi,g=o,v=a.length):t===uc?f>0&&(y=uc,g=f,v=d.length):(g=Math.max(o,f),y=g>0?o>f?fi:uc:null,v=y?y===fi?a.length:d.length:0);const S=y===fi&&/\b(transform|all)(,|$)/.test(r(`${fi}Property`).toString());return{type:y,timeout:g,propCount:v,hasTransform:S}}function g_(e,t){for(;e.lengthm_(n)+m_(e[r])))}function m_(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function mE(){return document.body.offsetHeight}function kN(e,t,n){const r=e[fl];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const iy=Symbol("_vod"),mh={beforeMount(e,{value:t},{transition:n}){e[iy]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):dc(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),dc(e,!0),r.enter(e)):r.leave(e,()=>{dc(e,!1)}):dc(e,t))},beforeUnmount(e,{value:t}){dc(e,t)}};function dc(e,t){e.style.display=t?e[iy]:"none"}function PN(){mh.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const yE=Symbol("");function bE(e){const t=Fr();if(!t)return;const n=t.ut=(i=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(a=>jg(a,i))},r=()=>{const i=e(t.proxy);Hg(t.subTree,i),n(i)};Bm(r),Aa(()=>{const i=new MutationObserver(r);i.observe(t.subTree.el.parentNode,{childList:!0}),Tl(()=>i.disconnect())})}function Hg(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{Hg(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)jg(e.el,t);else if(e.type===Gt)e.children.forEach(n=>Hg(n,t));else if(e.type===Ii){let{el:n,anchor:r}=e;for(;n&&(jg(n,t),n!==r);)n=n.nextSibling}}function jg(e,t){if(e.nodeType===1){const n=e.style;let r="";for(const i in t)n.setProperty(`--${i}`,t[i]),r+=`--${i}: ${t[i]};`;n[yE]=r}}function NN(e,t,n){const r=e.style,i=r.display,a=At(n);if(n&&!a){if(t&&!At(t))for(const o in t)n[o]==null&&Vg(r,o,"");for(const o in n)Vg(r,o,n[o])}else if(a){if(t!==n){const o=r[yE];o&&(n+=";"+o),r.cssText=n}}else t&&e.removeAttribute("style");iy in e&&(r.display=i)}const y_=/\s*!important$/;function Vg(e,t,n){if(Xe(n))n.forEach(r=>Vg(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=LN(e,t);y_.test(n)?e.setProperty(ps(r),n.replace(y_,""),"important"):e[r]=n}}const b_=["Webkit","Moz","ms"],tg={};function LN(e,t){const n=tg[t];if(n)return n;let r=Ln(t);if(r!=="filter"&&r in e)return tg[t]=r;r=Li(r);for(let i=0;ing||(BN.then(()=>ng=0),ng=Date.now());function HN(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Qr(jN(r,n.value),t,5,[r])};return n.value=e,n.attached=UN(),n}function jN(e,t){if(Xe(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>i=>!i._stopped&&r&&r(i))}else return t}const E_=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,VN=(e,t,n,r,i,a,o,c,d)=>{const f=i==="svg";t==="class"?kN(e,r,f):t==="style"?NN(e,n,r):wa(t)?vm(t)||$N(e,t,n,r,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):WN(e,t,r,f))?DN(e,t,r,a,o,c,d):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),RN(e,t,r,f))};function WN(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&E_(t)&&bt(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const i=e.tagName;if(i==="IMG"||i==="VIDEO"||i==="CANVAS"||i==="SOURCE")return!1}return E_(t)&&At(n)?!1:t in e}/*! #__NO_SIDE_EFFECTS__ */function ay(e,t){const n=Oa(e);class r extends du{constructor(a){super(n,a,t)}}return r.def=n,r}/*! #__NO_SIDE_EFFECTS__ */const vE=e=>ay(e,ly),GN=typeof HTMLElement<"u"?HTMLElement:class{};class du extends GN{constructor(t,n={},r){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this._ob=null,this.shadowRoot&&r?r(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,this._ob&&(this._ob.disconnect(),this._ob=null),nu(()=>{this._connected||(Cf(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let r=0;r{for(const i of r)this._setAttr(i.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(r,i=!1)=>{const{props:a,styles:o}=r;let c;if(a&&!Xe(a))for(const d in a){const f=a[d];(f===Number||f&&f.type===Number)&&(d in this._props&&(this._props[d]=yf(this._props[d])),(c||(c=Object.create(null)))[Ln(d)]=!0)}this._numberProps=c,i&&this._resolveProps(r),this._applyStyles(o),this._update()},n=this._def.__asyncLoader;n?n().then(r=>t(r,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,r=Xe(n)?n:Object.keys(n||{});for(const i of Object.keys(this))i[0]!=="_"&&r.includes(i)&&this._setProp(i,this[i],!0,!1);for(const i of r.map(Ln))Object.defineProperty(this,i,{get(){return this._getProp(i)},set(a){this._setProp(i,a)}})}_setAttr(t){let n=this.getAttribute(t);const r=Ln(t);this._numberProps&&this._numberProps[r]&&(n=yf(n)),this._setProp(r,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,r=!0,i=!0){n!==this._props[t]&&(this._props[t]=n,i&&this._instance&&this._update(),r&&(n===!0?this.setAttribute(ps(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(ps(t),n+""):n||this.removeAttribute(ps(t))))}_update(){Cf(this._createVNode(),this.shadowRoot)}_createVNode(){const t=mt(this._def,on({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const r=(a,o)=>{this.dispatchEvent(new CustomEvent(a,{detail:o}))};n.emit=(a,...o)=>{r(a,o),ps(a)!==a&&r(ps(a),o)};let i=this;for(;i=i&&(i.parentNode||i.host);)if(i instanceof du){n.parent=i._instance,n.provides=i._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const r=document.createElement("style");r.textContent=n,this.shadowRoot.appendChild(r)})}}function _E(e="$style"){{const t=Fr();if(!t)return cn;const n=t.type.__cssModules;if(!n)return cn;const r=n[e];return r||cn}}const xE=new WeakMap,EE=new WeakMap,Tf=Symbol("_moveCb"),S_=Symbol("_enterCb"),SE={name:"TransitionGroup",props:on({},IN,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Fr(),r=uh();let i,a;return iu(()=>{if(!i.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!qN(i[0].el,n.vnode.el,o))return;i.forEach(zN),i.forEach(YN);const c=i.filter(XN);mE(),c.forEach(d=>{const f=d.el,y=f.style;Ro(f,o),y.transform=y.webkitTransform=y.transitionDuration="";const g=f[Tf]=v=>{v&&v.target!==f||(!v||/transform$/.test(v.propertyName))&&(f.removeEventListener("transitionend",g),f[Tf]=null,mi(f,o))};f.addEventListener("transitionend",g)})}),()=>{const o=Zt(e),c=pE(o);let d=o.tag||Gt;i=a,a=t.default?su(t.default()):[];for(let f=0;fdelete e.mode;SE.props;const wE=SE;function zN(e){const t=e.el;t[Tf]&&t[Tf](),t[S_]&&t[S_]()}function YN(e){EE.set(e,e.el.getBoundingClientRect())}function XN(e){const t=xE.get(e),n=EE.get(e),r=t.left-n.left,i=t.top-n.top;if(r||i){const a=e.el.style;return a.transform=a.webkitTransform=`translate(${r}px,${i}px)`,a.transitionDuration="0s",e}}function qN(e,t,n){const r=e.cloneNode(),i=e[fl];i&&i.forEach(c=>{c.split(/\s+/).forEach(d=>d&&r.classList.remove(d))}),n.split(/\s+/).forEach(c=>c&&r.classList.add(c)),r.style.display="none";const a=t.nodeType===1?t:t.parentNode;a.appendChild(r);const{hasTransform:o}=gE(r);return a.removeChild(r),o}const Pi=e=>{const t=e.props["onUpdate:modelValue"]||!1;return Xe(t)?n=>il(t,n):t};function JN(e){e.target.composing=!0}function w_(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Ls=Symbol("_assign"),zn={created(e,{modifiers:{lazy:t,trim:n,number:r}},i){e[Ls]=Pi(i);const a=r||i.props&&i.props.type==="number";Mo(e,t?"change":"input",o=>{if(o.target.composing)return;let c=e.value;n&&(c=c.trim()),a&&(c=Rc(c)),e[Ls](c)}),n&&Mo(e,"change",()=>{e.value=e.value.trim()}),t||(Mo(e,"compositionstart",JN),Mo(e,"compositionend",w_),Mo(e,"change",w_))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:i}},a){if(e[Ls]=Pi(a),e.composing)return;const o=i||e.type==="number"?Rc(e.value):e.value,c=t??"";o!==c&&(document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===c)||(e.value=c))}},fu={deep:!0,created(e,t,n){e[Ls]=Pi(n),Mo(e,"change",()=>{const r=e._modelValue,i=hl(e),a=e.checked,o=e[Ls];if(Xe(r)){const c=qf(r,i),d=c!==-1;if(a&&!d)o(r.concat(i));else if(!a&&d){const f=[...r];f.splice(c,1),o(f)}}else if(Ta(r)){const c=new Set(r);a?c.add(i):c.delete(i),o(c)}else o(TE(e,a))})},mounted:T_,beforeUpdate(e,t,n){e[Ls]=Pi(n),T_(e,t,n)}};function T_(e,{value:t,oldValue:n},r){e._modelValue=t,Xe(t)?e.checked=qf(t,r.props.value)>-1:Ta(t)?e.checked=t.has(r.props.value):t!==n&&(e.checked=jo(t,TE(e,!0)))}const yh={created(e,{value:t},n){e.checked=jo(t,n.props.value),e[Ls]=Pi(n),Mo(e,"change",()=>{e[Ls](hl(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e[Ls]=Pi(r),t!==n&&(e.checked=jo(t,r.props.value))}},gs={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const i=Ta(t);Mo(e,"change",()=>{const a=Array.prototype.filter.call(e.options,o=>o.selected).map(o=>n?Rc(hl(o)):hl(o));e[Ls](e.multiple?i?new Set(a):a:a[0]),e._assigning=!0,nu(()=>{e._assigning=!1})}),e[Ls]=Pi(r)},mounted(e,{value:t,oldValue:n,modifiers:{number:r}}){C_(e,t,n,r)},beforeUpdate(e,t,n){e[Ls]=Pi(n)},updated(e,{value:t,oldValue:n,modifiers:{number:r}}){e._assigning||C_(e,t,n,r)}};function C_(e,t,n,r){const i=e.multiple,a=Xe(t);if(!(i&&!a&&!Ta(t))&&!(a&&jo(t,n))){for(let o=0,c=e.options.length;o-1}else d.selected=t.has(f);else if(jo(hl(d),t)){e.selectedIndex!==o&&(e.selectedIndex=o);return}}!i&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function hl(e){return"_value"in e?e._value:e.value}function TE(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Vc={created(e,t,n){$d(e,t,n,null,"created")},mounted(e,t,n){$d(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){$d(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){$d(e,t,n,r,"updated")}};function CE(e,t){switch(e){case"SELECT":return gs;case"TEXTAREA":return zn;default:switch(t){case"checkbox":return fu;case"radio":return yh;default:return zn}}}function $d(e,t,n,r,i){const o=CE(e.tagName,n.props&&n.props.type)[i];o&&o(e,t,n,r)}function ZN(){zn.getSSRProps=({value:e})=>({value:e}),yh.getSSRProps=({value:e},t)=>{if(t.props&&jo(t.props.value,e))return{checked:!0}},fu.getSSRProps=({value:e},t)=>{if(Xe(e)){if(t.props&&qf(e,t.props.value)>-1)return{checked:!0}}else if(Ta(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},Vc.getSSRProps=(e,t)=>{if(typeof t.type!="string")return;const n=CE(t.type.toUpperCase(),t.props&&t.props.type);if(n.getSSRProps)return n.getSSRProps(e,t)}}const QN=["ctrl","shift","alt","meta"],eL={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>QN.some(n=>e[`${n}Key`]&&!t.includes(n))},IE=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(i,...a)=>{for(let o=0;o{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=i=>{if(!("key"in i))return;const a=ps(i.key);if(t.some(o=>o===a||tL[o]===a))return e(i)})},AE=on({patchProp:VN},CN);let Cc,I_=!1;function kE(){return Cc||(Cc=Jm(AE))}function PE(){return Cc=I_?Cc:Zm(AE),I_=!0,Cc}const Cf=(...e)=>{kE().render(...e)},ly=(...e)=>{PE().hydrate(...e)},cy=(...e)=>{const t=kE().createApp(...e),{mount:n}=t;return t.mount=r=>{const i=RE(r);if(!i)return;const a=t._component;!bt(a)&&!a.render&&!a.template&&(a.template=i.innerHTML),i.innerHTML="";const o=n(i,!1,LE(i));return i instanceof Element&&(i.removeAttribute("v-cloak"),i.setAttribute("data-v-app","")),o},t},NE=(...e)=>{const t=PE().createApp(...e),{mount:n}=t;return t.mount=r=>{const i=RE(r);if(i)return n(i,!0,LE(i))},t};function LE(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function RE(e){return At(e)?document.querySelector(e):e}let O_=!1;const DE=()=>{O_||(O_=!0,ZN(),PN())},nL=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Hm,BaseTransitionPropsValidators:dh,Comment:gr,DeprecationTypes:fE,EffectScope:Jf,ErrorCodes:Y1,ErrorTypeStrings:iE,Fragment:Gt,KeepAlive:hx,ReactiveEffect:va,Static:Ii,Suspense:ax,Teleport:Vx,Text:Vo,TrackOpTypes:G1,Transition:Di,TransitionGroup:wE,TriggerOpTypes:K1,VueElement:du,assertNumber:z1,callWithAsyncErrorHandling:Qr,callWithErrorHandling:go,camelize:Ln,capitalize:Li,cloneVNode:Js,compatUtils:dE,computed:Wn,createApp:cy,createBlock:wn,createCommentVNode:it,createElementBlock:Ne,createElementVNode:w,createHydrationRenderer:Zm,createPropsRestProxy:kx,createRenderer:Jm,createSSRApp:NE,createSlots:gx,createStaticVNode:Xx,createTextVNode:vn,createVNode:mt,customRef:Pm,defineAsyncComponent:fx,defineComponent:Oa,defineCustomElement:ay,defineEmits:vx,defineExpose:_x,defineModel:Sx,defineOptions:xx,defineProps:bx,defineSSRCustomElement:vE,defineSlots:Ex,devtools:aE,effect:E1,effectScope:Sm,getCurrentInstance:Fr,getCurrentScope:Zf,getTransitionRawChildren:su,guardReactiveProps:ey,h:uu,handleError:Ri,hasInjectionContext:Rx,hydrate:ly,initCustomFormatter:rE,initDirectivesForSSR:DE,inject:_n,isMemoSame:sy,isProxy:rh,isReactive:Ci,isReadonly:Ai,isRef:ir,isRuntimeOnly:Qx,isShallow:dl,isVNode:Wo,markRaw:sh,mergeDefaults:Ox,mergeModels:Ax,mergeProps:ny,nextTick:nu,normalizeClass:Yt,normalizeProps:y1,normalizeStyle:wl,onActivated:jm,onBeforeMount:hh,onBeforeUnmount:au,onBeforeUpdate:Wm,onDeactivated:Vm,onErrorCaptured:Ym,onMounted:Aa,onRenderTracked:zm,onRenderTriggered:Km,onScopeDispose:wm,onServerPrefetch:Gm,onUnmounted:Tl,onUpdated:iu,openBlock:_e,popScopeId:tx,provide:Fo,proxyRefs:ih,pushScopeId:ex,queuePostFlushCb:$c,reactive:eu,readonly:th,ref:ft,registerRuntimeCompiler:ry,render:Cf,renderList:$r,renderSlot:lu,resolveComponent:Vt,resolveDirective:ox,resolveDynamicComponent:sx,resolveFilter:uE,resolveTransitionHooks:_a,setBlockTracking:Ef,setDevtoolsHook:lE,setTransitionHooks:ki,shallowReactive:Om,shallowReadonly:$1,shallowRef:oh,ssrContextKey:$m,ssrUtils:cE,stop:S1,toDisplayString:ae,toHandlerKey:fa,toHandlers:yx,toRaw:Zt,toRef:V1,toRefs:j1,toValue:H1,transformVNodeArgs:zx,triggerRef:U1,unref:tu,useAttrs:Cx,useCssModule:_E,useCssVars:bE,useModel:nE,useSSRContext:Fm,useSlots:Tx,useTransitionState:uh,vModelCheckbox:fu,vModelDynamic:Vc,vModelRadio:yh,vModelSelect:gs,vModelText:zn,vShow:mh,version:oy,warn:oE,watch:Ns,watchEffect:cx,watchPostEffect:Bm,watchSyncEffect:Um,withAsyncContext:Px,withCtx:Mr,withDefaults:wx,withDirectives:dn,withKeys:OE,withMemo:sE,withModifiers:IE,withScopeId:nx},Symbol.toStringTag,{value:"Module"}));/** * @vue/compiler-core v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/const Wc=Symbol(""),Ic=Symbol(""),uy=Symbol(""),Of=Symbol(""),ME=Symbol(""),Sa=Symbol(""),$E=Symbol(""),FE=Symbol(""),dy=Symbol(""),fy=Symbol(""),hu=Symbol(""),hy=Symbol(""),BE=Symbol(""),py=Symbol(""),gy=Symbol(""),my=Symbol(""),yy=Symbol(""),by=Symbol(""),vy=Symbol(""),UE=Symbol(""),HE=Symbol(""),vh=Symbol(""),Af=Symbol(""),_y=Symbol(""),xy=Symbol(""),Gc=Symbol(""),pu=Symbol(""),Ey=Symbol(""),Wg=Symbol(""),rL=Symbol(""),Gg=Symbol(""),kf=Symbol(""),sL=Symbol(""),oL=Symbol(""),Sy=Symbol(""),iL=Symbol(""),aL=Symbol(""),wy=Symbol(""),jE=Symbol(""),pl={[Wc]:"Fragment",[Ic]:"Teleport",[uy]:"Suspense",[Of]:"KeepAlive",[ME]:"BaseTransition",[Sa]:"openBlock",[$E]:"createBlock",[FE]:"createElementBlock",[dy]:"createVNode",[fy]:"createElementVNode",[hu]:"createCommentVNode",[hy]:"createTextVNode",[BE]:"createStaticVNode",[py]:"resolveComponent",[gy]:"resolveDynamicComponent",[my]:"resolveDirective",[yy]:"resolveFilter",[by]:"withDirectives",[vy]:"renderList",[UE]:"renderSlot",[HE]:"createSlots",[vh]:"toDisplayString",[Af]:"mergeProps",[_y]:"normalizeClass",[xy]:"normalizeStyle",[Gc]:"normalizeProps",[pu]:"guardReactiveProps",[Ey]:"toHandlers",[Wg]:"camelize",[rL]:"capitalize",[Gg]:"toHandlerKey",[kf]:"setBlockTracking",[sL]:"pushScopeId",[oL]:"popScopeId",[Sy]:"withCtx",[iL]:"unref",[aL]:"isRef",[wy]:"withMemo",[jE]:"isMemoSame"};function lL(e){Object.getOwnPropertySymbols(e).forEach(t=>{pl[t]=e[t]})}const ys={start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0},source:""};function cL(e,t=""){return{type:0,source:t,children:e,helpers:new Set,components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:ys}}function Kc(e,t,n,r,i,a,o,c=!1,d=!1,f=!1,y=ys){return e&&(c?(e.helper(Sa),e.helper(yl(e.inSSR,f))):e.helper(ml(e.inSSR,f)),o&&e.helper(by)),{type:13,tag:t,props:n,children:r,patchFlag:i,dynamicProps:a,directives:o,isBlock:c,disableTracking:d,isComponent:f,loc:y}}function gu(e,t=ys){return{type:17,loc:t,elements:e}}function As(e,t=ys){return{type:15,loc:t,properties:e}}function Un(e,t){return{type:16,loc:ys,key:At(e)?$t(e,!0):e,value:t}}function $t(e,t=!1,n=ys,r=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:r}}function Ys(e,t=ys){return{type:8,loc:t,children:e}}function tr(e,t=[],n=ys){return{type:14,loc:n,callee:e,arguments:t}}function gl(e,t=void 0,n=!1,r=!1,i=ys){return{type:18,params:e,returns:t,newline:n,isSlot:r,loc:i}}function Kg(e,t,n,r=!0){return{type:19,test:e,consequent:t,alternate:n,newline:r,loc:ys}}function uL(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:ys}}function dL(e){return{type:21,body:e,loc:ys}}function ml(e,t){return e||t?dy:fy}function yl(e,t){return e||t?$E:FE}function Ty(e,{helper:t,removeHelper:n,inSSR:r}){e.isBlock||(e.isBlock=!0,n(ml(r,e.isComponent)),t(Sa),t(yl(r,e.isComponent)))}const A_=new Uint8Array([123,123]),k_=new Uint8Array([125,125]);function P_(e){return e>=97&&e<=122||e>=65&&e<=90}function fs(e){return e===32||e===10||e===9||e===12||e===13}function hi(e){return e===47||e===62||fs(e)}function Pf(e){const t=new Uint8Array(e.length);for(let n=0;n=0;i--){const a=this.newlines[i];if(t>a){n=i+2,r=t-a;break}}return{column:r,line:n,offset:t}}peek(){return this.buffer.charCodeAt(this.index+1)}stateText(t){t===60?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=5,this.sectionStart=this.index):!this.inVPre&&t===this.delimiterOpen[0]&&(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(t))}stateInterpolationOpen(t){if(t===this.delimiterOpen[this.delimiterIndex])if(this.delimiterIndex===this.delimiterOpen.length-1){const n=this.index+1-this.delimiterOpen.length;n>this.sectionStart&&this.cbs.ontext(this.sectionStart,n),this.state=3,this.sectionStart=n}else this.delimiterIndex++;else this.inRCDATA?(this.state=32,this.stateInRCDATA(t)):(this.state=1,this.stateText(t))}stateInterpolation(t){t===this.delimiterClose[0]&&(this.state=4,this.delimiterIndex=0,this.stateInterpolationClose(t))}stateInterpolationClose(t){t===this.delimiterClose[this.delimiterIndex]?this.delimiterIndex===this.delimiterClose.length-1?(this.cbs.oninterpolation(this.sectionStart,this.index+1),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):this.delimiterIndex++:(this.state=3,this.stateInterpolation(t))}stateSpecialStartSequence(t){const n=this.sequenceIndex===this.currentSequence.length;if(!(n?hi(t):(t|32)===this.currentSequence[this.sequenceIndex]))this.inRCDATA=!1;else if(!n){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=6,this.stateInTagName(t)}stateInRCDATA(t){if(this.sequenceIndex===this.currentSequence.length){if(t===62||fs(t)){const n=this.index-this.currentSequence.length;if(this.sectionStart=t||(this.state===28?this.currentSequence===xr.CdataEnd?this.cbs.oncdata(this.sectionStart,t):this.cbs.oncomment(this.sectionStart,t):this.state===6||this.state===11||this.state===18||this.state===17||this.state===12||this.state===13||this.state===14||this.state===15||this.state===16||this.state===20||this.state===19||this.state===21||this.state===9||this.cbs.ontext(this.sectionStart,t))}emitCodePoint(t,n){}}function N_(e,{compatConfig:t}){const n=t&&t[e];return e==="MODE"?n||3:n}function ma(e,t){const n=N_("MODE",t),r=N_(e,t);return n===3?r===!0:r!==!1}function zc(e,t,n,...r){return ma(e,t)}function Cy(e){throw e}function VE(e){}function On(e,t,n,r){const i=`https://vuejs.org/error-reference/#compiler-${e}`,a=new SyntaxError(String(i));return a.code=e,a.loc=t,a}const Zr=e=>e.type===4&&e.isStatic;function WE(e){switch(e){case"Teleport":case"teleport":return Ic;case"Suspense":case"suspense":return uy;case"KeepAlive":case"keep-alive":return Of;case"BaseTransition":case"base-transition":return ME}}const hL=/^\d|[^\$\w]/,Iy=e=>!hL.test(e),pL=/[A-Za-z_$\xA0-\uFFFF]/,gL=/[\.\?\w$\xA0-\uFFFF]/,mL=/\s+[.[]\s*|\s*[.[]\s+/g,yL=e=>{e=e.trim().replace(mL,o=>o.trim());let t=0,n=[],r=0,i=0,a=null;for(let o=0;ot.type===7&&t.name==="bind"&&(!t.arg||t.arg.type!==4||!t.arg.isStatic))}function rg(e){return e.type===5||e.type===2}function vL(e){return e.type===7&&e.name==="slot"}function Nf(e){return e.type===1&&e.tagType===3}function Lf(e){return e.type===1&&e.tagType===2}const _L=new Set([Gc,pu]);function KE(e,t=[]){if(e&&!At(e)&&e.type===14){const n=e.callee;if(!At(n)&&_L.has(n))return KE(e.arguments[0],t.concat(e))}return[e,t]}function Rf(e,t,n){let r,i=e.type===13?e.props:e.arguments[2],a=[],o;if(i&&!At(i)&&i.type===14){const c=KE(i);i=c[0],a=c[1],o=a[a.length-1]}if(i==null||At(i))r=As([t]);else if(i.type===14){const c=i.arguments[0];!At(c)&&c.type===15?L_(t,c)||c.properties.unshift(t):i.callee===Ey?r=tr(n.helper(Af),[As([t]),i]):i.arguments.unshift(As([t])),!r&&(r=i)}else i.type===15?(L_(t,i)||i.properties.unshift(t),r=i):(r=tr(n.helper(Af),[As([t]),i]),o&&o.callee===pu&&(o=a[a.length-2]));e.type===13?o?o.arguments[0]=r:e.props=r:o?o.arguments[0]=r:e.arguments[2]=r}function L_(e,t){let n=!1;if(e.key.type===4){const r=e.key.content;n=t.properties.some(i=>i.key.type===4&&i.key.content===r)}return n}function Yc(e,t){return`_${t}_${e.replace(/[^\w]/g,(n,r)=>n==="-"?"_":e.charCodeAt(r).toString())}`}function xL(e){return e.type===14&&e.callee===wy?e.arguments[1].returns:e}const EL=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,zE={parseMode:"base",ns:0,delimiters:["{{","}}"],getNamespace:()=>0,isVoidTag:ef,isPreTag:ef,isCustomElement:ef,onError:Cy,onWarn:VE,comments:!1,prefixIdentifiers:!1};let un=zE,Xc=null,ya="",Sr=null,nn=null,Xr="",Do=-1,sa=-1,Df=0,xi=!1,zg=null;const $n=[],Bn=new fL($n,{onerr:No,ontext(e,t){Bd(hr(e,t),e,t)},ontextentity(e,t,n){Bd(e,t,n)},oninterpolation(e,t){if(xi)return Bd(hr(e,t),e,t);let n=e+Bn.delimiterOpen.length,r=t-Bn.delimiterClose.length;for(;fs(ya.charCodeAt(n));)n++;for(;fs(ya.charCodeAt(r-1));)r--;let i=hr(n,r);i.includes("&")&&(i=un.decodeEntities(i,!1)),Yg({type:5,content:sf(i,!1,er(n,r)),loc:er(e,t)})},onopentagname(e,t){const n=hr(e,t);Sr={type:1,tag:n,ns:un.getNamespace(n,$n[0],un.ns),tagType:0,props:[],children:[],loc:er(e-1,t),codegenNode:void 0}},onopentagend(e){D_(e)},onclosetag(e,t){const n=hr(e,t);if(!un.isVoidTag(n)){let r=!1;for(let i=0;i<$n.length;i++)if($n[i].tag.toLowerCase()===n.toLowerCase()){r=!0,i>0&&No(24,$n[0].loc.start.offset);for(let o=0;o<=i;o++){const c=$n.shift();rf(c,t,o(r.type===7?r.rawName:r.name)===n)&&No(2,t)},onattribend(e,t){if(Sr&&nn){if(ua(nn.loc,t),e!==0)if(Xr.includes("&")&&(Xr=un.decodeEntities(Xr,!0)),nn.type===6)nn.name==="class"&&(Xr=qE(Xr).trim()),e===1&&!Xr&&No(13,t),nn.value={type:2,content:Xr,loc:e===1?er(Do,sa):er(Do-1,sa+1)},Bn.inSFCRoot&&Sr.tag==="template"&&nn.name==="lang"&&Xr&&Xr!=="html"&&Bn.enterRCDATA(Pf("-1&&zc("COMPILER_V_BIND_SYNC",un,nn.loc,nn.rawName)&&(nn.name="model",nn.modifiers.splice(r,1))}(nn.type!==7||nn.name!=="pre")&&Sr.props.push(nn)}Xr="",Do=sa=-1},oncomment(e,t){un.comments&&Yg({type:3,content:hr(e,t),loc:er(e-4,t+3)})},onend(){const e=ya.length;for(let t=0;t<$n.length;t++)rf($n[t],e-1),No(24,$n[t].loc.start.offset)},oncdata(e,t){$n[0].ns!==0?Bd(hr(e,t),e,t):No(1,e-9)},onprocessinginstruction(e){($n[0]?$n[0].ns:un.ns)===0&&No(21,e-1)}}),R_=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,SL=/^\(|\)$/g;function wL(e){const t=e.loc,n=e.content,r=n.match(EL);if(!r)return;const[,i,a]=r,o=(g,v,S=!1)=>{const E=t.start.offset+v,T=E+g.length;return sf(g,!1,er(E,T),0,S?1:0)},c={source:o(a.trim(),n.indexOf(a,i.length)),value:void 0,key:void 0,index:void 0,finalized:!1};let d=i.trim().replace(SL,"").trim();const f=i.indexOf(d),y=d.match(R_);if(y){d=d.replace(R_,"").trim();const g=y[1].trim();let v;if(g&&(v=n.indexOf(g,f+d.length),c.key=o(g,v,!0)),y[2]){const S=y[2].trim();S&&(c.index=o(S,n.indexOf(S,c.key?v+g.length:f+d.length),!0))}}return d&&(c.value=o(d,f,!0)),c}function hr(e,t){return ya.slice(e,t)}function D_(e){Bn.inSFCRoot&&(Sr.innerLoc=er(e+1,e+1)),Yg(Sr);const{tag:t,ns:n}=Sr;n===0&&un.isPreTag(t)&&Df++,un.isVoidTag(t)?rf(Sr,e):($n.unshift(Sr),(n===1||n===2)&&(Bn.inXML=!0)),Sr=null}function Bd(e,t,n){var r;{const o=(r=$n[0])==null?void 0:r.tag;o!=="script"&&o!=="style"&&e.includes("&")&&(e=un.decodeEntities(e,!1))}const i=$n[0]||Xc,a=i.children[i.children.length-1];(a==null?void 0:a.type)===2?(a.content+=e,ua(a.loc,n)):i.children.push({type:2,content:e,loc:er(t,n)})}function rf(e,t,n=!1){n?ua(e.loc,YE(t,60)):ua(e.loc,t+1),Bn.inSFCRoot&&(e.children.length?e.innerLoc.end=on({},e.children[e.children.length-1].loc.end):e.innerLoc.end=on({},e.innerLoc.start),e.innerLoc.source=hr(e.innerLoc.start.offset,e.innerLoc.end.offset));const{tag:r,ns:i}=e;xi||(r==="slot"?e.tagType=2:M_(e)?e.tagType=3:CL(e)&&(e.tagType=1)),Bn.inRCDATA||(e.children=XE(e.children,e.tag)),i===0&&un.isPreTag(r)&&Df--,zg===e&&(xi=Bn.inVPre=!1,zg=null),Bn.inXML&&($n[0]?$n[0].ns:un.ns)===0&&(Bn.inXML=!1);{const a=e.props;if(!Bn.inSFCRoot&&ma("COMPILER_NATIVE_TEMPLATE",un)&&e.tag==="template"&&!M_(e)){const c=$n[0]||Xc,d=c.children.indexOf(e);c.children.splice(d,1,...e.children)}const o=a.find(c=>c.type===6&&c.name==="inline-template");o&&zc("COMPILER_INLINE_TEMPLATE",un,o.loc)&&e.children.length&&(o.value={type:2,content:hr(e.children[0].loc.start.offset,e.children[e.children.length-1].loc.end.offset),loc:o.loc})}}function YE(e,t){let n=e;for(;ya.charCodeAt(n)!==t&&n>=0;)n--;return n}const TL=new Set(["if","else","else-if","for","slot"]);function M_({tag:e,props:t}){if(e==="template"){for(let n=0;n64&&e<91}const OL=/\r\n/g;function XE(e,t){var n,r;const i=un.whitespace!=="preserve";let a=!1;for(let o=0;o0){if(d>=2){c.codegenNode.patchFlag="-1",c.codegenNode=t.hoist(c.codegenNode),a++;continue}}else{const f=c.codegenNode;if(f.type===13){const y=tS(f);if((!y||y===512||y===1)&&QE(c,t)>=2){const g=eS(c);g&&(f.props=t.hoist(g))}f.dynamicProps&&(f.dynamicProps=t.hoist(f.dynamicProps))}}}if(c.type===1){const d=c.tagType===1;d&&t.scopes.vSlot++,of(c,t),d&&t.scopes.vSlot--}else if(c.type===11)of(c,t,c.children.length===1);else if(c.type===9)for(let d=0;d1)for(let f=0;fre&&(K.childIndex--,K.onNodeRemoved()),K.parent.children.splice(re,1)},onNodeRemoved:sr,addIdentifiers(F){},removeIdentifiers(F){},hoist(F){At(F)&&(F=$t(F)),K.hoists.push(F);const V=$t(`_hoisted_${K.hoists.length}`,!1,F.loc,2);return V.hoisted=F,V},cache(F,V=!1){return uL(K.cached++,F,V)}};return K.filters=new Set,K}function $L(e,t){const n=ML(e,t);xh(e,n),t.hoistStatic&&RL(e,n),t.ssr||FL(e,n),e.helpers=new Set([...n.helpers.keys()]),e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.transformed=!0,e.filters=[...n.filters]}function FL(e,t){const{helper:n}=t,{children:r}=e;if(r.length===1){const i=r[0];if(JE(e,i)&&i.codegenNode){const a=i.codegenNode;a.type===13&&Ty(a,t),e.codegenNode=a}else e.codegenNode=i}else if(r.length>1){let i=64;e.codegenNode=Kc(t,n(Wc),void 0,e.children,i+"",void 0,void 0,!0,void 0,!1)}}function BL(e,t){let n=0;const r=()=>{n--};for(;nr===e:r=>e.test(r);return(r,i)=>{if(r.type===1){const{props:a}=r;if(r.tagType===3&&a.some(vL))return;const o=[];for(let c=0;c`${pl[e]}: _${pl[e]}`;function $_(e,{mode:t="function",prefixIdentifiers:n=t==="module",sourceMap:r=!1,filename:i="template.vue.html",scopeId:a=null,optimizeImports:o=!1,runtimeGlobalName:c="Vue",runtimeModuleName:d="vue",ssrRuntimeModuleName:f="vue/server-renderer",ssr:y=!1,isTS:g=!1,inSSR:v=!1}){const S={mode:t,prefixIdentifiers:n,sourceMap:r,filename:i,scopeId:a,optimizeImports:o,runtimeGlobalName:c,runtimeModuleName:d,ssrRuntimeModuleName:f,ssr:y,isTS:g,inSSR:v,source:e.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper(T){return`_${pl[T]}`},push(T,N=-2,I){S.code+=T},indent(){E(++S.indentLevel)},deindent(T=!1){T?--S.indentLevel:E(--S.indentLevel)},newline(){E(S.indentLevel)}};function E(T){S.push(` +**/const Wc=Symbol(""),Ic=Symbol(""),uy=Symbol(""),If=Symbol(""),ME=Symbol(""),Sa=Symbol(""),$E=Symbol(""),FE=Symbol(""),dy=Symbol(""),fy=Symbol(""),hu=Symbol(""),hy=Symbol(""),BE=Symbol(""),py=Symbol(""),gy=Symbol(""),my=Symbol(""),yy=Symbol(""),by=Symbol(""),vy=Symbol(""),UE=Symbol(""),HE=Symbol(""),bh=Symbol(""),Of=Symbol(""),_y=Symbol(""),xy=Symbol(""),Gc=Symbol(""),pu=Symbol(""),Ey=Symbol(""),Wg=Symbol(""),rL=Symbol(""),Gg=Symbol(""),Af=Symbol(""),sL=Symbol(""),oL=Symbol(""),Sy=Symbol(""),iL=Symbol(""),aL=Symbol(""),wy=Symbol(""),jE=Symbol(""),pl={[Wc]:"Fragment",[Ic]:"Teleport",[uy]:"Suspense",[If]:"KeepAlive",[ME]:"BaseTransition",[Sa]:"openBlock",[$E]:"createBlock",[FE]:"createElementBlock",[dy]:"createVNode",[fy]:"createElementVNode",[hu]:"createCommentVNode",[hy]:"createTextVNode",[BE]:"createStaticVNode",[py]:"resolveComponent",[gy]:"resolveDynamicComponent",[my]:"resolveDirective",[yy]:"resolveFilter",[by]:"withDirectives",[vy]:"renderList",[UE]:"renderSlot",[HE]:"createSlots",[bh]:"toDisplayString",[Of]:"mergeProps",[_y]:"normalizeClass",[xy]:"normalizeStyle",[Gc]:"normalizeProps",[pu]:"guardReactiveProps",[Ey]:"toHandlers",[Wg]:"camelize",[rL]:"capitalize",[Gg]:"toHandlerKey",[Af]:"setBlockTracking",[sL]:"pushScopeId",[oL]:"popScopeId",[Sy]:"withCtx",[iL]:"unref",[aL]:"isRef",[wy]:"withMemo",[jE]:"isMemoSame"};function lL(e){Object.getOwnPropertySymbols(e).forEach(t=>{pl[t]=e[t]})}const ys={start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0},source:""};function cL(e,t=""){return{type:0,source:t,children:e,helpers:new Set,components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:ys}}function Kc(e,t,n,r,i,a,o,c=!1,d=!1,f=!1,y=ys){return e&&(c?(e.helper(Sa),e.helper(yl(e.inSSR,f))):e.helper(ml(e.inSSR,f)),o&&e.helper(by)),{type:13,tag:t,props:n,children:r,patchFlag:i,dynamicProps:a,directives:o,isBlock:c,disableTracking:d,isComponent:f,loc:y}}function gu(e,t=ys){return{type:17,loc:t,elements:e}}function As(e,t=ys){return{type:15,loc:t,properties:e}}function Un(e,t){return{type:16,loc:ys,key:At(e)?Mt(e,!0):e,value:t}}function Mt(e,t=!1,n=ys,r=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:r}}function Ys(e,t=ys){return{type:8,loc:t,children:e}}function tr(e,t=[],n=ys){return{type:14,loc:n,callee:e,arguments:t}}function gl(e,t=void 0,n=!1,r=!1,i=ys){return{type:18,params:e,returns:t,newline:n,isSlot:r,loc:i}}function Kg(e,t,n,r=!0){return{type:19,test:e,consequent:t,alternate:n,newline:r,loc:ys}}function uL(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:ys}}function dL(e){return{type:21,body:e,loc:ys}}function ml(e,t){return e||t?dy:fy}function yl(e,t){return e||t?$E:FE}function Ty(e,{helper:t,removeHelper:n,inSSR:r}){e.isBlock||(e.isBlock=!0,n(ml(r,e.isComponent)),t(Sa),t(yl(r,e.isComponent)))}const A_=new Uint8Array([123,123]),k_=new Uint8Array([125,125]);function P_(e){return e>=97&&e<=122||e>=65&&e<=90}function fs(e){return e===32||e===10||e===9||e===12||e===13}function hi(e){return e===47||e===62||fs(e)}function kf(e){const t=new Uint8Array(e.length);for(let n=0;n=0;i--){const a=this.newlines[i];if(t>a){n=i+2,r=t-a;break}}return{column:r,line:n,offset:t}}peek(){return this.buffer.charCodeAt(this.index+1)}stateText(t){t===60?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=5,this.sectionStart=this.index):!this.inVPre&&t===this.delimiterOpen[0]&&(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(t))}stateInterpolationOpen(t){if(t===this.delimiterOpen[this.delimiterIndex])if(this.delimiterIndex===this.delimiterOpen.length-1){const n=this.index+1-this.delimiterOpen.length;n>this.sectionStart&&this.cbs.ontext(this.sectionStart,n),this.state=3,this.sectionStart=n}else this.delimiterIndex++;else this.inRCDATA?(this.state=32,this.stateInRCDATA(t)):(this.state=1,this.stateText(t))}stateInterpolation(t){t===this.delimiterClose[0]&&(this.state=4,this.delimiterIndex=0,this.stateInterpolationClose(t))}stateInterpolationClose(t){t===this.delimiterClose[this.delimiterIndex]?this.delimiterIndex===this.delimiterClose.length-1?(this.cbs.oninterpolation(this.sectionStart,this.index+1),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):this.delimiterIndex++:(this.state=3,this.stateInterpolation(t))}stateSpecialStartSequence(t){const n=this.sequenceIndex===this.currentSequence.length;if(!(n?hi(t):(t|32)===this.currentSequence[this.sequenceIndex]))this.inRCDATA=!1;else if(!n){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=6,this.stateInTagName(t)}stateInRCDATA(t){if(this.sequenceIndex===this.currentSequence.length){if(t===62||fs(t)){const n=this.index-this.currentSequence.length;if(this.sectionStart=t||(this.state===28?this.currentSequence===xr.CdataEnd?this.cbs.oncdata(this.sectionStart,t):this.cbs.oncomment(this.sectionStart,t):this.state===6||this.state===11||this.state===18||this.state===17||this.state===12||this.state===13||this.state===14||this.state===15||this.state===16||this.state===20||this.state===19||this.state===21||this.state===9||this.cbs.ontext(this.sectionStart,t))}emitCodePoint(t,n){}}function N_(e,{compatConfig:t}){const n=t&&t[e];return e==="MODE"?n||3:n}function ma(e,t){const n=N_("MODE",t),r=N_(e,t);return n===3?r===!0:r!==!1}function zc(e,t,n,...r){return ma(e,t)}function Cy(e){throw e}function VE(e){}function On(e,t,n,r){const i=`https://vuejs.org/error-reference/#compiler-${e}`,a=new SyntaxError(String(i));return a.code=e,a.loc=t,a}const Zr=e=>e.type===4&&e.isStatic;function WE(e){switch(e){case"Teleport":case"teleport":return Ic;case"Suspense":case"suspense":return uy;case"KeepAlive":case"keep-alive":return If;case"BaseTransition":case"base-transition":return ME}}const hL=/^\d|[^\$\w]/,Iy=e=>!hL.test(e),pL=/[A-Za-z_$\xA0-\uFFFF]/,gL=/[\.\?\w$\xA0-\uFFFF]/,mL=/\s+[.[]\s*|\s*[.[]\s+/g,yL=e=>{e=e.trim().replace(mL,o=>o.trim());let t=0,n=[],r=0,i=0,a=null;for(let o=0;ot.type===7&&t.name==="bind"&&(!t.arg||t.arg.type!==4||!t.arg.isStatic))}function rg(e){return e.type===5||e.type===2}function vL(e){return e.type===7&&e.name==="slot"}function Pf(e){return e.type===1&&e.tagType===3}function Nf(e){return e.type===1&&e.tagType===2}const _L=new Set([Gc,pu]);function KE(e,t=[]){if(e&&!At(e)&&e.type===14){const n=e.callee;if(!At(n)&&_L.has(n))return KE(e.arguments[0],t.concat(e))}return[e,t]}function Lf(e,t,n){let r,i=e.type===13?e.props:e.arguments[2],a=[],o;if(i&&!At(i)&&i.type===14){const c=KE(i);i=c[0],a=c[1],o=a[a.length-1]}if(i==null||At(i))r=As([t]);else if(i.type===14){const c=i.arguments[0];!At(c)&&c.type===15?L_(t,c)||c.properties.unshift(t):i.callee===Ey?r=tr(n.helper(Of),[As([t]),i]):i.arguments.unshift(As([t])),!r&&(r=i)}else i.type===15?(L_(t,i)||i.properties.unshift(t),r=i):(r=tr(n.helper(Of),[As([t]),i]),o&&o.callee===pu&&(o=a[a.length-2]));e.type===13?o?o.arguments[0]=r:e.props=r:o?o.arguments[0]=r:e.arguments[2]=r}function L_(e,t){let n=!1;if(e.key.type===4){const r=e.key.content;n=t.properties.some(i=>i.key.type===4&&i.key.content===r)}return n}function Yc(e,t){return`_${t}_${e.replace(/[^\w]/g,(n,r)=>n==="-"?"_":e.charCodeAt(r).toString())}`}function xL(e){return e.type===14&&e.callee===wy?e.arguments[1].returns:e}const EL=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,zE={parseMode:"base",ns:0,delimiters:["{{","}}"],getNamespace:()=>0,isVoidTag:Qd,isPreTag:Qd,isCustomElement:Qd,onError:Cy,onWarn:VE,comments:!1,prefixIdentifiers:!1};let un=zE,Xc=null,ya="",Sr=null,nn=null,Xr="",Do=-1,sa=-1,Rf=0,xi=!1,zg=null;const $n=[],Bn=new fL($n,{onerr:No,ontext(e,t){Fd(hr(e,t),e,t)},ontextentity(e,t,n){Fd(e,t,n)},oninterpolation(e,t){if(xi)return Fd(hr(e,t),e,t);let n=e+Bn.delimiterOpen.length,r=t-Bn.delimiterClose.length;for(;fs(ya.charCodeAt(n));)n++;for(;fs(ya.charCodeAt(r-1));)r--;let i=hr(n,r);i.includes("&")&&(i=un.decodeEntities(i,!1)),Yg({type:5,content:rf(i,!1,er(n,r)),loc:er(e,t)})},onopentagname(e,t){const n=hr(e,t);Sr={type:1,tag:n,ns:un.getNamespace(n,$n[0],un.ns),tagType:0,props:[],children:[],loc:er(e-1,t),codegenNode:void 0}},onopentagend(e){D_(e)},onclosetag(e,t){const n=hr(e,t);if(!un.isVoidTag(n)){let r=!1;for(let i=0;i<$n.length;i++)if($n[i].tag.toLowerCase()===n.toLowerCase()){r=!0,i>0&&No(24,$n[0].loc.start.offset);for(let o=0;o<=i;o++){const c=$n.shift();nf(c,t,o(r.type===7?r.rawName:r.name)===n)&&No(2,t)},onattribend(e,t){if(Sr&&nn){if(ua(nn.loc,t),e!==0)if(Xr.includes("&")&&(Xr=un.decodeEntities(Xr,!0)),nn.type===6)nn.name==="class"&&(Xr=qE(Xr).trim()),e===1&&!Xr&&No(13,t),nn.value={type:2,content:Xr,loc:e===1?er(Do,sa):er(Do-1,sa+1)},Bn.inSFCRoot&&Sr.tag==="template"&&nn.name==="lang"&&Xr&&Xr!=="html"&&Bn.enterRCDATA(kf("-1&&zc("COMPILER_V_BIND_SYNC",un,nn.loc,nn.rawName)&&(nn.name="model",nn.modifiers.splice(r,1))}(nn.type!==7||nn.name!=="pre")&&Sr.props.push(nn)}Xr="",Do=sa=-1},oncomment(e,t){un.comments&&Yg({type:3,content:hr(e,t),loc:er(e-4,t+3)})},onend(){const e=ya.length;for(let t=0;t<$n.length;t++)nf($n[t],e-1),No(24,$n[t].loc.start.offset)},oncdata(e,t){$n[0].ns!==0?Fd(hr(e,t),e,t):No(1,e-9)},onprocessinginstruction(e){($n[0]?$n[0].ns:un.ns)===0&&No(21,e-1)}}),R_=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,SL=/^\(|\)$/g;function wL(e){const t=e.loc,n=e.content,r=n.match(EL);if(!r)return;const[,i,a]=r,o=(g,v,S=!1)=>{const E=t.start.offset+v,T=E+g.length;return rf(g,!1,er(E,T),0,S?1:0)},c={source:o(a.trim(),n.indexOf(a,i.length)),value:void 0,key:void 0,index:void 0,finalized:!1};let d=i.trim().replace(SL,"").trim();const f=i.indexOf(d),y=d.match(R_);if(y){d=d.replace(R_,"").trim();const g=y[1].trim();let v;if(g&&(v=n.indexOf(g,f+d.length),c.key=o(g,v,!0)),y[2]){const S=y[2].trim();S&&(c.index=o(S,n.indexOf(S,c.key?v+g.length:f+d.length),!0))}}return d&&(c.value=o(d,f,!0)),c}function hr(e,t){return ya.slice(e,t)}function D_(e){Bn.inSFCRoot&&(Sr.innerLoc=er(e+1,e+1)),Yg(Sr);const{tag:t,ns:n}=Sr;n===0&&un.isPreTag(t)&&Rf++,un.isVoidTag(t)?nf(Sr,e):($n.unshift(Sr),(n===1||n===2)&&(Bn.inXML=!0)),Sr=null}function Fd(e,t,n){var r;{const o=(r=$n[0])==null?void 0:r.tag;o!=="script"&&o!=="style"&&e.includes("&")&&(e=un.decodeEntities(e,!1))}const i=$n[0]||Xc,a=i.children[i.children.length-1];(a==null?void 0:a.type)===2?(a.content+=e,ua(a.loc,n)):i.children.push({type:2,content:e,loc:er(t,n)})}function nf(e,t,n=!1){n?ua(e.loc,YE(t,60)):ua(e.loc,t+1),Bn.inSFCRoot&&(e.children.length?e.innerLoc.end=on({},e.children[e.children.length-1].loc.end):e.innerLoc.end=on({},e.innerLoc.start),e.innerLoc.source=hr(e.innerLoc.start.offset,e.innerLoc.end.offset));const{tag:r,ns:i}=e;xi||(r==="slot"?e.tagType=2:M_(e)?e.tagType=3:CL(e)&&(e.tagType=1)),Bn.inRCDATA||(e.children=XE(e.children,e.tag)),i===0&&un.isPreTag(r)&&Rf--,zg===e&&(xi=Bn.inVPre=!1,zg=null),Bn.inXML&&($n[0]?$n[0].ns:un.ns)===0&&(Bn.inXML=!1);{const a=e.props;if(!Bn.inSFCRoot&&ma("COMPILER_NATIVE_TEMPLATE",un)&&e.tag==="template"&&!M_(e)){const c=$n[0]||Xc,d=c.children.indexOf(e);c.children.splice(d,1,...e.children)}const o=a.find(c=>c.type===6&&c.name==="inline-template");o&&zc("COMPILER_INLINE_TEMPLATE",un,o.loc)&&e.children.length&&(o.value={type:2,content:hr(e.children[0].loc.start.offset,e.children[e.children.length-1].loc.end.offset),loc:o.loc})}}function YE(e,t){let n=e;for(;ya.charCodeAt(n)!==t&&n>=0;)n--;return n}const TL=new Set(["if","else","else-if","for","slot"]);function M_({tag:e,props:t}){if(e==="template"){for(let n=0;n64&&e<91}const OL=/\r\n/g;function XE(e,t){var n,r;const i=un.whitespace!=="preserve";let a=!1;for(let o=0;o0){if(d>=2){c.codegenNode.patchFlag="-1",c.codegenNode=t.hoist(c.codegenNode),a++;continue}}else{const f=c.codegenNode;if(f.type===13){const y=tS(f);if((!y||y===512||y===1)&&QE(c,t)>=2){const g=eS(c);g&&(f.props=t.hoist(g))}f.dynamicProps&&(f.dynamicProps=t.hoist(f.dynamicProps))}}}if(c.type===1){const d=c.tagType===1;d&&t.scopes.vSlot++,sf(c,t),d&&t.scopes.vSlot--}else if(c.type===11)sf(c,t,c.children.length===1);else if(c.type===9)for(let d=0;d1)for(let f=0;fre&&(K.childIndex--,K.onNodeRemoved()),K.parent.children.splice(re,1)},onNodeRemoved:sr,addIdentifiers(F){},removeIdentifiers(F){},hoist(F){At(F)&&(F=Mt(F)),K.hoists.push(F);const V=Mt(`_hoisted_${K.hoists.length}`,!1,F.loc,2);return V.hoisted=F,V},cache(F,V=!1){return uL(K.cached++,F,V)}};return K.filters=new Set,K}function $L(e,t){const n=ML(e,t);_h(e,n),t.hoistStatic&&RL(e,n),t.ssr||FL(e,n),e.helpers=new Set([...n.helpers.keys()]),e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.transformed=!0,e.filters=[...n.filters]}function FL(e,t){const{helper:n}=t,{children:r}=e;if(r.length===1){const i=r[0];if(JE(e,i)&&i.codegenNode){const a=i.codegenNode;a.type===13&&Ty(a,t),e.codegenNode=a}else e.codegenNode=i}else if(r.length>1){let i=64;e.codegenNode=Kc(t,n(Wc),void 0,e.children,i+"",void 0,void 0,!0,void 0,!1)}}function BL(e,t){let n=0;const r=()=>{n--};for(;nr===e:r=>e.test(r);return(r,i)=>{if(r.type===1){const{props:a}=r;if(r.tagType===3&&a.some(vL))return;const o=[];for(let c=0;c`${pl[e]}: _${pl[e]}`;function $_(e,{mode:t="function",prefixIdentifiers:n=t==="module",sourceMap:r=!1,filename:i="template.vue.html",scopeId:a=null,optimizeImports:o=!1,runtimeGlobalName:c="Vue",runtimeModuleName:d="vue",ssrRuntimeModuleName:f="vue/server-renderer",ssr:y=!1,isTS:g=!1,inSSR:v=!1}){const S={mode:t,prefixIdentifiers:n,sourceMap:r,filename:i,scopeId:a,optimizeImports:o,runtimeGlobalName:c,runtimeModuleName:d,ssrRuntimeModuleName:f,ssr:y,isTS:g,inSSR:v,source:e.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper(T){return`_${pl[T]}`},push(T,N=-2,I){S.code+=T},indent(){E(++S.indentLevel)},deindent(T=!1){T?--S.indentLevel:E(--S.indentLevel)},newline(){E(S.indentLevel)}};function E(T){S.push(` `+" ".repeat(T),0)}return S}function UL(e,t={}){const n=$_(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:r,push:i,prefixIdentifiers:a,indent:o,deindent:c,newline:d,scopeId:f,ssr:y}=n,g=Array.from(e.helpers),v=g.length>0,S=!a&&r!=="module",E=!1,T=E?$_(e,t):n;HL(e,T);const N=y?"ssrRender":"render",D=(y?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ");if(i(`function ${N}(${D}) {`),o(),S&&(i("with (_ctx) {"),o(),v&&(i(`const { ${g.map(rS).join(", ")} } = _Vue `,-1),d())),e.components.length&&(sg(e.components,"component",n),(e.directives.length||e.temps>0)&&d()),e.directives.length&&(sg(e.directives,"directive",n),e.temps>0&&d()),e.filters&&e.filters.length&&(d(),sg(e.filters,"filter",n),d()),e.temps>0){i("let ");for(let L=0;L0?", ":""}_temp${L}`)}return(e.components.length||e.directives.length||e.temps)&&(i(` `,0),d()),y||i("return "),e.codegenNode?Cr(e.codegenNode,n):i("null"),S&&(c(),i("}")),c(),i("}"),{ast:e,code:n.code,preamble:E?T.code:"",map:n.map?n.map.toJSON():void 0}}function HL(e,t){const{ssr:n,prefixIdentifiers:r,push:i,newline:a,runtimeModuleName:o,runtimeGlobalName:c,ssrRuntimeModuleName:d}=t,f=c,y=Array.from(e.helpers);if(y.length>0&&(i(`const _Vue = ${f} `,-1),e.hoists.length)){const g=[dy,fy,hu,hy,BE].filter(v=>y.includes(v)).map(rS).join(", ");i(`const { ${g} } = _Vue -`,-1)}jL(e.hoists,t),a(),i("return ")}function sg(e,t,{helper:n,push:r,newline:i,isTS:a}){const o=n(t==="filter"?yy:t==="component"?py:my);for(let c=0;c3||!1;t.push("["),n&&t.indent(),mu(e,t,n),n&&t.deindent(),t.push("]")}function mu(e,t,n=!1,r=!0){const{push:i,newline:a}=t;for(let o=0;on||"null")}function XL(e,t){const{push:n,helper:r,pure:i}=t,a=At(e.callee)?e.callee:r(e.callee);i&&n(Eh),n(a+"(",-2,e),mu(e.arguments,t),n(")")}function qL(e,t){const{push:n,indent:r,deindent:i,newline:a}=t,{properties:o}=e;if(!o.length){n("{}",-2,e);return}const c=o.length>1||!1;n(c?"{":"{ "),c&&r();for(let d=0;d "),(d||c)&&(n("{"),r()),o?(d&&n("return "),Xe(o)?Oy(o,t):Cr(o,t)):c&&Cr(c,t),(d||c)&&(i(),n("}")),f&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}function QL(e,t){const{test:n,consequent:r,alternate:i,newline:a}=e,{push:o,indent:c,deindent:d,newline:f}=t;if(n.type===4){const g=!Iy(n.content);g&&o("("),sS(n,t),g&&o(")")}else o("("),Cr(n,t),o(")");a&&c(),t.indentLevel++,a||o(" "),o("? "),Cr(r,t),t.indentLevel--,a&&f(),a||o(" "),o(": ");const y=i.type===19;y||t.indentLevel++,Cr(i,t),y||t.indentLevel--,a&&d(!0)}function eR(e,t){const{push:n,helper:r,indent:i,deindent:a,newline:o}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(i(),n(`${r(kf)}(-1),`),o()),n(`_cache[${e.index}] = `),Cr(e.value,t),e.isVNode&&(n(","),o(),n(`${r(kf)}(1),`),o(),n(`_cache[${e.index}]`),a()),n(")")}new RegExp("\\b"+"arguments,await,break,case,catch,class,const,continue,debugger,default,delete,do,else,export,extends,finally,for,function,if,import,let,new,return,super,switch,throw,try,var,void,while,with,yield".split(",").join("\\b|\\b")+"\\b");const tR=nS(/^(if|else|else-if)$/,(e,t,n)=>nR(e,t,n,(r,i,a)=>{const o=n.parent.children;let c=o.indexOf(r),d=0;for(;c-->=0;){const f=o[c];f&&f.type===9&&(d+=f.branches.length)}return()=>{if(a)r.codegenNode=B_(i,d,n);else{const f=rR(r.codegenNode);f.alternate=B_(i,d+r.branches.length-1,n)}}}));function nR(e,t,n,r){if(t.name!=="else"&&(!t.exp||!t.exp.content.trim())){const i=t.exp?t.exp.loc:e.loc;n.onError(On(28,t.loc)),t.exp=$t("true",!1,i)}if(t.name==="if"){const i=F_(e,t),a={type:9,loc:e.loc,branches:[i]};if(n.replaceNode(a),r)return r(a,i,!0)}else{const i=n.parent.children;let a=i.indexOf(e);for(;a-->=-1;){const o=i[a];if(o&&o.type===3){n.removeNode(o);continue}if(o&&o.type===2&&!o.content.trim().length){n.removeNode(o);continue}if(o&&o.type===9){t.name==="else-if"&&o.branches[o.branches.length-1].condition===void 0&&n.onError(On(30,e.loc)),n.removeNode();const c=F_(e,t);o.branches.push(c);const d=r&&r(o,c,!1);xh(c,n),d&&d(),n.currentNode=null}else n.onError(On(30,e.loc));break}}}function F_(e,t){const n=e.tagType===3;return{type:10,loc:e.loc,condition:t.name==="else"?void 0:t.exp,children:n&&!Gs(e,"for")?e.children:[e],userKey:_h(e,"key"),isTemplateIf:n}}function B_(e,t,n){return e.condition?Kg(e.condition,U_(e,t,n),tr(n.helper(hu),['""',"true"])):U_(e,t,n)}function U_(e,t,n){const{helper:r}=n,i=Un("key",$t(`${t}`,!1,ys,2)),{children:a}=e,o=a[0];if(a.length!==1||o.type!==1)if(a.length===1&&o.type===11){const d=o.codegenNode;return Rf(d,i,n),d}else return Kc(n,r(Wc),As([i]),a,64+"",void 0,void 0,!0,!1,!1,e.loc);else{const d=o.codegenNode,f=xL(d);return f.type===13&&Ty(f,n),Rf(f,i,n),d}}function rR(e){for(;;)if(e.type===19)if(e.alternate.type===19)e=e.alternate;else return e;else e.type===20&&(e=e.value)}const sR=nS("for",(e,t,n)=>{const{helper:r,removeHelper:i}=n;return oR(e,t,n,a=>{const o=tr(r(vy),[a.source]),c=Nf(e),d=Gs(e,"memo"),f=_h(e,"key"),y=f&&(f.type===6?$t(f.value.content,!0):f.exp),g=f?Un("key",y):null,v=a.source.type===4&&a.source.constType>0,S=v?64:f?128:256;return a.codegenNode=Kc(n,r(Wc),void 0,o,S+"",void 0,void 0,!0,!v,!1,e.loc),()=>{let E;const{children:T}=a,N=T.length!==1||T[0].type!==1,I=Lf(e)?e:c&&e.children.length===1&&Lf(e.children[0])?e.children[0]:null;if(I?(E=I.codegenNode,c&&g&&Rf(E,g,n)):N?E=Kc(n,r(Wc),g?As([g]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(E=T[0].codegenNode,c&&g&&Rf(E,g,n),E.isBlock!==!v&&(E.isBlock?(i(Sa),i(yl(n.inSSR,E.isComponent))):i(ml(n.inSSR,E.isComponent))),E.isBlock=!v,E.isBlock?(r(Sa),r(yl(n.inSSR,E.isComponent))):r(ml(n.inSSR,E.isComponent))),d){const D=gl(Xg(a.parseResult,[$t("_cached")]));D.body=dL([Ys(["const _memo = (",d.exp,")"]),Ys(["if (_cached",...y?[" && _cached.key === ",y]:[],` && ${n.helperString(jE)}(_cached, _memo)) return _cached`]),Ys(["const _item = ",E]),$t("_item.memo = _memo"),$t("return _item")]),o.arguments.push(D,$t("_cache"),$t(String(n.cached++)))}else o.arguments.push(gl(Xg(a.parseResult),E,!0))}})});function oR(e,t,n,r){if(!t.exp){n.onError(On(31,t.loc));return}const i=t.forParseResult;if(!i){n.onError(On(32,t.loc));return}iS(i);const{addIdentifiers:a,removeIdentifiers:o,scopes:c}=n,{source:d,value:f,key:y,index:g}=i,v={type:11,loc:t.loc,source:d,valueAlias:f,keyAlias:y,objectIndexAlias:g,parseResult:i,children:Nf(e)?e.children:[e]};n.replaceNode(v),c.vFor++;const S=r&&r(v);return()=>{c.vFor--,S&&S()}}function iS(e,t){e.finalized||(e.finalized=!0)}function Xg({value:e,key:t,index:n},r=[]){return iR([e,t,n,...r])}function iR(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map((n,r)=>n||$t("_".repeat(r+1),!1))}const H_=$t("undefined",!1),aR=(e,t)=>{if(e.type===1&&(e.tagType===1||e.tagType===3)){const n=Gs(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},lR=(e,t,n,r)=>gl(e,n,!1,!0,n.length?n[0].loc:r);function cR(e,t,n=lR){t.helper(Sy);const{children:r,loc:i}=e,a=[],o=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const d=Gs(e,"slot",!0);if(d){const{arg:N,exp:I}=d;N&&!Zr(N)&&(c=!0),a.push(Un(N||$t("default",!0),n(I,void 0,r,i)))}let f=!1,y=!1;const g=[],v=new Set;let S=0;for(let N=0;N{const L=n(I,void 0,D,i);return t.compatConfig&&(L.isNonScopedSlot=!0),Un("default",L)};f?g.length&&g.some(I=>aS(I))&&(y?t.onError(On(39,g[0].loc)):a.push(N(void 0,g))):a.push(N(void 0,r))}const E=c?2:af(e.children)?3:1;let T=As(a.concat(Un("_",$t(E+"",!1))),i);return o.length&&(T=tr(t.helper(HE),[T,gu(o)])),{slots:T,hasDynamicSlots:c}}function Ud(e,t,n){const r=[Un("name",e),Un("fn",t)];return n!=null&&r.push(Un("key",$t(String(n),!0))),As(r)}function af(e){for(let t=0;tfunction(){if(e=t.currentNode,!(e.type===1&&(e.tagType===0||e.tagType===1)))return;const{tag:r,props:i}=e,a=e.tagType===1;let o=a?dR(e,t):`"${r}"`;const c=mn(o)&&o.callee===gy;let d,f,y,g=0,v,S,E,T=c||o===Ic||o===uy||!a&&(r==="svg"||r==="foreignObject");if(i.length>0){const N=cS(e,t,void 0,a,c);d=N.props,g=N.patchFlag,S=N.dynamicPropNames;const I=N.directives;E=I&&I.length?gu(I.map(D=>hR(D,t))):void 0,N.shouldUseBlock&&(T=!0)}if(e.children.length>0)if(o===Of&&(T=!0,g|=1024),a&&o!==Ic&&o!==Of){const{slots:I,hasDynamicSlots:D}=cR(e,t);f=I,D&&(g|=1024)}else if(e.children.length===1&&o!==Ic){const I=e.children[0],D=I.type,L=D===5||D===8;L&&ks(I,t)===0&&(g|=1),L||D===2?f=I:f=e.children}else f=e.children;g!==0&&(y=String(g),S&&S.length&&(v=pR(S))),e.codegenNode=Kc(t,o,d,f,y,v,E,!!T,!1,a,e.loc)};function dR(e,t,n=!1){let{tag:r}=e;const i=qg(r),a=_h(e,"is");if(a)if(i||ma("COMPILER_IS_ON_ELEMENT",t)){const c=a.type===6?a.value&&$t(a.value.content,!0):a.exp;if(c)return tr(t.helper(gy),[c])}else a.type===6&&a.value.content.startsWith("vue:")&&(r=a.value.content.slice(4));const o=WE(r)||t.isBuiltInComponent(r);return o?(n||t.helper(o),o):(t.helper(py),t.components.add(r),Yc(r,"component"))}function cS(e,t,n=e.props,r,i,a=!1){const{tag:o,loc:c,children:d}=e;let f=[];const y=[],g=[],v=d.length>0;let S=!1,E=0,T=!1,N=!1,I=!1,D=!1,L=!1,R=!1;const U=[],H=F=>{f.length&&(y.push(As(j_(f),c)),f=[]),F&&y.push(F)},m=({key:F,value:V})=>{if(Zr(F)){const re=F.content,ce=wa(re);if(ce&&(!r||i)&&re.toLowerCase()!=="onclick"&&re!=="onUpdate:modelValue"&&!da(re)&&(D=!0),ce&&da(re)&&(R=!0),ce&&V.type===14&&(V=V.arguments[0]),V.type===20||(V.type===4||V.type===8)&&ks(V,t)>0)return;re==="ref"?T=!0:re==="class"?N=!0:re==="style"?I=!0:re!=="key"&&!U.includes(re)&&U.push(re),r&&(re==="class"||re==="style")&&!U.includes(re)&&U.push(re)}else L=!0};for(let F=0;F0&&f.push(Un($t("ref_for",!0),$t("true")))),ce==="is"&&(qg(o)||ye&&ye.content.startsWith("vue:")||ma("COMPILER_IS_ON_ELEMENT",t)))continue;f.push(Un($t(ce,!0,J),$t(ye?ye.content:"",Me,ye?ye.loc:re)))}else{const{name:re,arg:ce,exp:J,loc:ye,modifiers:Me}=V,fe=re==="bind",Se=re==="on";if(re==="slot"){r||t.onError(On(40,ye));continue}if(re==="once"||re==="memo"||re==="is"||fe&&ca(ce,"is")&&(qg(o)||ma("COMPILER_IS_ON_ELEMENT",t))||Se&&a)continue;if((fe&&ca(ce,"key")||Se&&v&&ca(ce,"vue:before-update"))&&(S=!0),fe&&ca(ce,"ref")&&t.scopes.vFor>0&&f.push(Un($t("ref_for",!0),$t("true"))),!ce&&(fe||Se)){if(L=!0,J)if(fe){if(H(),ma("COMPILER_V_BIND_OBJECT_ORDER",t)){y.unshift(J);continue}y.push(J)}else H({type:14,loc:ye,callee:t.helper(Ey),arguments:r?[J]:[J,"true"]});else t.onError(On(fe?34:35,ye));continue}fe&&Me.includes("prop")&&(E|=32);const we=t.directiveTransforms[re];if(we){const{props:Qe,needRuntime:ht}=we(V,e,t);!a&&Qe.forEach(m),Se&&ce&&!Zr(ce)?H(As(Qe,c)):f.push(...Qe),ht&&(g.push(V),Xs(ht)&&lS.set(V,ht))}else BP(re)||(g.push(V),v&&(S=!0))}}let K;if(y.length?(H(),y.length>1?K=tr(t.helper(Af),y,c):K=y[0]):f.length&&(K=As(j_(f),c)),L?E|=16:(N&&!r&&(E|=2),I&&!r&&(E|=4),U.length&&(E|=8),D&&(E|=32)),!S&&(E===0||E===32)&&(T||R||g.length>0)&&(E|=512),!t.inSSR&&K)switch(K.type){case 15:let F=-1,V=-1,re=!1;for(let ye=0;yeUn(o,a)),i))}return gu(n,e.loc)}function pR(e){let t="[";for(let n=0,r=e.length;n{if(Lf(e)){const{children:n,loc:r}=e,{slotName:i,slotProps:a}=mR(e,t),o=[t.prefixIdentifiers?"_ctx.$slots":"$slots",i,"{}","undefined","true"];let c=2;a&&(o[2]=a,c=3),n.length&&(o[3]=gl([],n,!1,!1,r),c=4),t.scopeId&&!t.slotted&&(c=5),o.splice(c),e.codegenNode=tr(t.helper(UE),o,r)}};function mR(e,t){let n='"default"',r;const i=[];for(let a=0;a0){const{props:a,directives:o}=cS(e,t,i,!1,!1);r=a,o.length&&t.onError(On(36,o[0].loc))}return{slotName:n,slotProps:r}}const yR=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,uS=(e,t,n,r)=>{const{loc:i,modifiers:a,arg:o}=e;!e.exp&&!a.length&&n.onError(On(35,i));let c;if(o.type===4)if(o.isStatic){let g=o.content;g.startsWith("vue:")&&(g=`vnode-${g.slice(4)}`);const v=t.tagType!==0||g.startsWith("vnode")||!/[A-Z]/.test(g)?fa(Ln(g)):`on:${g}`;c=$t(v,!0,o.loc)}else c=Ys([`${n.helperString(Gg)}(`,o,")"]);else c=o,c.children.unshift(`${n.helperString(Gg)}(`),c.children.push(")");let d=e.exp;d&&!d.content.trim()&&(d=void 0);let f=n.cacheHandlers&&!d&&!n.inVOnce;if(d){const g=GE(d.content),v=!(g||yR.test(d.content)),S=d.content.includes(";");(v||f&&g)&&(d=Ys([`${v?"$event":"(...args)"} => ${S?"{":"("}`,d,S?"}":")"]))}let y={props:[Un(c,d||$t("() => {}",!1,i))]};return r&&(y=r(y)),f&&(y.props[0].value=n.cache(y.props[0].value)),y.props.forEach(g=>g.key.isHandlerKey=!0),y},bR=(e,t,n)=>{const{modifiers:r,loc:i}=e,a=e.arg;let{exp:o}=e;if(!o&&a.type===4){const c=Ln(a.content);o=e.exp=$t(c,!1,a.loc)}return a.type!==4?(a.children.unshift("("),a.children.push(') || ""')):a.isStatic||(a.content=`${a.content} || ""`),r.includes("camel")&&(a.type===4?a.isStatic?a.content=Ln(a.content):a.content=`${n.helperString(Wg)}(${a.content})`:(a.children.unshift(`${n.helperString(Wg)}(`),a.children.push(")"))),n.inSSR||(r.includes("prop")&&V_(a,"."),r.includes("attr")&&V_(a,"^")),!o||o.type===4&&!o.content.trim()?(n.onError(On(34,i)),{props:[Un(a,$t("",!0,i))]}):{props:[Un(a,o)]}},V_=(e,t)=>{e.type===4?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},vR=(e,t)=>{if(e.type===0||e.type===1||e.type===11||e.type===10)return()=>{const n=e.children;let r,i=!1;for(let a=0;aa.type===7&&!t.directiveTransforms[a.name])&&e.tag!=="template")))for(let a=0;a{if(e.type===1&&Gs(e,"once",!0))return W_.has(e)||t.inVOnce||t.inSSR?void 0:(W_.add(e),t.inVOnce=!0,t.helper(kf),()=>{t.inVOnce=!1;const n=t.currentNode;n.codegenNode&&(n.codegenNode=t.cache(n.codegenNode,!0))})},dS=(e,t,n)=>{const{exp:r,arg:i}=e;if(!r)return n.onError(On(41,e.loc)),Hd();const a=r.loc.source,o=r.type===4?r.content:a,c=n.bindingMetadata[a];if(c==="props"||c==="props-aliased")return n.onError(On(44,r.loc)),Hd();if(!o.trim()||!GE(o)&&!!1)return n.onError(On(42,r.loc)),Hd();const f=i||$t("modelValue",!0),y=i?Zr(i)?`onUpdate:${Ln(i.content)}`:Ys(['"onUpdate:" + ',i]):"onUpdate:modelValue";let g;const v=n.isTS?"($event: any)":"$event";g=Ys([`${v} => ((`,r,") = $event)"]);const S=[Un(f,e.exp),Un(y,g)];if(e.modifiers.length&&t.tagType===1){const E=e.modifiers.map(N=>(Iy(N)?N:JSON.stringify(N))+": true").join(", "),T=i?Zr(i)?`${i.content}Modifiers`:Ys([i,' + "Modifiers"']):"modelModifiers";S.push(Un(T,$t(`{ ${E} }`,!1,e.loc,2)))}return Hd(S)};function Hd(e=[]){return{props:e}}const xR=/[\w).+\-_$\]]/,ER=(e,t)=>{ma("COMPILER_FILTERS",t)&&(e.type===5&&Mf(e.content,t),e.type===1&&e.props.forEach(n=>{n.type===7&&n.name!=="for"&&n.exp&&Mf(n.exp,t)}))};function Mf(e,t){if(e.type===4)G_(e,t);else for(let n=0;n=0&&(D=n.charAt(I),D===" ");I--);(!D||!xR.test(D))&&(o=!0)}}E===void 0?E=n.slice(0,S).trim():y!==0&&N();function N(){T.push(n.slice(y,S).trim()),y=S+1}if(T.length){for(S=0;S{if(e.type===1){const n=Gs(e,"memo");return!n||K_.has(e)?void 0:(K_.add(e),()=>{const r=e.codegenNode||t.currentNode.codegenNode;r&&r.type===13&&(e.tagType!==1&&Ty(r,t),e.codegenNode=tr(t.helper(wy),[n.exp,gl(void 0,r),"_cache",String(t.cached++)]))})}};function TR(e){return[[_R,tR,wR,sR,ER,gR,uR,aR,vR],{on:uS,bind:bR,model:dS}]}function CR(e,t={}){const n=t.onError||Cy,r=t.mode==="module";t.prefixIdentifiers===!0?n(On(47)):r&&n(On(48));const i=!1;t.cacheHandlers&&n(On(49)),t.scopeId&&!r&&n(On(50));const a=on({},t,{prefixIdentifiers:i}),o=At(e)?LL(e,a):e,[c,d]=TR();return $L(o,on({},a,{nodeTransforms:[...c,...t.nodeTransforms||[]],directiveTransforms:on({},d,t.directiveTransforms||{})})),UL(o,a)}const IR=()=>({props:[]});/** +`,-1)}jL(e.hoists,t),a(),i("return ")}function sg(e,t,{helper:n,push:r,newline:i,isTS:a}){const o=n(t==="filter"?yy:t==="component"?py:my);for(let c=0;c3||!1;t.push("["),n&&t.indent(),mu(e,t,n),n&&t.deindent(),t.push("]")}function mu(e,t,n=!1,r=!0){const{push:i,newline:a}=t;for(let o=0;on||"null")}function XL(e,t){const{push:n,helper:r,pure:i}=t,a=At(e.callee)?e.callee:r(e.callee);i&&n(xh),n(a+"(",-2,e),mu(e.arguments,t),n(")")}function qL(e,t){const{push:n,indent:r,deindent:i,newline:a}=t,{properties:o}=e;if(!o.length){n("{}",-2,e);return}const c=o.length>1||!1;n(c?"{":"{ "),c&&r();for(let d=0;d "),(d||c)&&(n("{"),r()),o?(d&&n("return "),Xe(o)?Oy(o,t):Cr(o,t)):c&&Cr(c,t),(d||c)&&(i(),n("}")),f&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}function QL(e,t){const{test:n,consequent:r,alternate:i,newline:a}=e,{push:o,indent:c,deindent:d,newline:f}=t;if(n.type===4){const g=!Iy(n.content);g&&o("("),sS(n,t),g&&o(")")}else o("("),Cr(n,t),o(")");a&&c(),t.indentLevel++,a||o(" "),o("? "),Cr(r,t),t.indentLevel--,a&&f(),a||o(" "),o(": ");const y=i.type===19;y||t.indentLevel++,Cr(i,t),y||t.indentLevel--,a&&d(!0)}function eR(e,t){const{push:n,helper:r,indent:i,deindent:a,newline:o}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(i(),n(`${r(Af)}(-1),`),o()),n(`_cache[${e.index}] = `),Cr(e.value,t),e.isVNode&&(n(","),o(),n(`${r(Af)}(1),`),o(),n(`_cache[${e.index}]`),a()),n(")")}new RegExp("\\b"+"arguments,await,break,case,catch,class,const,continue,debugger,default,delete,do,else,export,extends,finally,for,function,if,import,let,new,return,super,switch,throw,try,var,void,while,with,yield".split(",").join("\\b|\\b")+"\\b");const tR=nS(/^(if|else|else-if)$/,(e,t,n)=>nR(e,t,n,(r,i,a)=>{const o=n.parent.children;let c=o.indexOf(r),d=0;for(;c-->=0;){const f=o[c];f&&f.type===9&&(d+=f.branches.length)}return()=>{if(a)r.codegenNode=B_(i,d,n);else{const f=rR(r.codegenNode);f.alternate=B_(i,d+r.branches.length-1,n)}}}));function nR(e,t,n,r){if(t.name!=="else"&&(!t.exp||!t.exp.content.trim())){const i=t.exp?t.exp.loc:e.loc;n.onError(On(28,t.loc)),t.exp=Mt("true",!1,i)}if(t.name==="if"){const i=F_(e,t),a={type:9,loc:e.loc,branches:[i]};if(n.replaceNode(a),r)return r(a,i,!0)}else{const i=n.parent.children;let a=i.indexOf(e);for(;a-->=-1;){const o=i[a];if(o&&o.type===3){n.removeNode(o);continue}if(o&&o.type===2&&!o.content.trim().length){n.removeNode(o);continue}if(o&&o.type===9){t.name==="else-if"&&o.branches[o.branches.length-1].condition===void 0&&n.onError(On(30,e.loc)),n.removeNode();const c=F_(e,t);o.branches.push(c);const d=r&&r(o,c,!1);_h(c,n),d&&d(),n.currentNode=null}else n.onError(On(30,e.loc));break}}}function F_(e,t){const n=e.tagType===3;return{type:10,loc:e.loc,condition:t.name==="else"?void 0:t.exp,children:n&&!Gs(e,"for")?e.children:[e],userKey:vh(e,"key"),isTemplateIf:n}}function B_(e,t,n){return e.condition?Kg(e.condition,U_(e,t,n),tr(n.helper(hu),['""',"true"])):U_(e,t,n)}function U_(e,t,n){const{helper:r}=n,i=Un("key",Mt(`${t}`,!1,ys,2)),{children:a}=e,o=a[0];if(a.length!==1||o.type!==1)if(a.length===1&&o.type===11){const d=o.codegenNode;return Lf(d,i,n),d}else return Kc(n,r(Wc),As([i]),a,64+"",void 0,void 0,!0,!1,!1,e.loc);else{const d=o.codegenNode,f=xL(d);return f.type===13&&Ty(f,n),Lf(f,i,n),d}}function rR(e){for(;;)if(e.type===19)if(e.alternate.type===19)e=e.alternate;else return e;else e.type===20&&(e=e.value)}const sR=nS("for",(e,t,n)=>{const{helper:r,removeHelper:i}=n;return oR(e,t,n,a=>{const o=tr(r(vy),[a.source]),c=Pf(e),d=Gs(e,"memo"),f=vh(e,"key"),y=f&&(f.type===6?Mt(f.value.content,!0):f.exp),g=f?Un("key",y):null,v=a.source.type===4&&a.source.constType>0,S=v?64:f?128:256;return a.codegenNode=Kc(n,r(Wc),void 0,o,S+"",void 0,void 0,!0,!v,!1,e.loc),()=>{let E;const{children:T}=a,N=T.length!==1||T[0].type!==1,I=Nf(e)?e:c&&e.children.length===1&&Nf(e.children[0])?e.children[0]:null;if(I?(E=I.codegenNode,c&&g&&Lf(E,g,n)):N?E=Kc(n,r(Wc),g?As([g]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(E=T[0].codegenNode,c&&g&&Lf(E,g,n),E.isBlock!==!v&&(E.isBlock?(i(Sa),i(yl(n.inSSR,E.isComponent))):i(ml(n.inSSR,E.isComponent))),E.isBlock=!v,E.isBlock?(r(Sa),r(yl(n.inSSR,E.isComponent))):r(ml(n.inSSR,E.isComponent))),d){const D=gl(Xg(a.parseResult,[Mt("_cached")]));D.body=dL([Ys(["const _memo = (",d.exp,")"]),Ys(["if (_cached",...y?[" && _cached.key === ",y]:[],` && ${n.helperString(jE)}(_cached, _memo)) return _cached`]),Ys(["const _item = ",E]),Mt("_item.memo = _memo"),Mt("return _item")]),o.arguments.push(D,Mt("_cache"),Mt(String(n.cached++)))}else o.arguments.push(gl(Xg(a.parseResult),E,!0))}})});function oR(e,t,n,r){if(!t.exp){n.onError(On(31,t.loc));return}const i=t.forParseResult;if(!i){n.onError(On(32,t.loc));return}iS(i);const{addIdentifiers:a,removeIdentifiers:o,scopes:c}=n,{source:d,value:f,key:y,index:g}=i,v={type:11,loc:t.loc,source:d,valueAlias:f,keyAlias:y,objectIndexAlias:g,parseResult:i,children:Pf(e)?e.children:[e]};n.replaceNode(v),c.vFor++;const S=r&&r(v);return()=>{c.vFor--,S&&S()}}function iS(e,t){e.finalized||(e.finalized=!0)}function Xg({value:e,key:t,index:n},r=[]){return iR([e,t,n,...r])}function iR(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map((n,r)=>n||Mt("_".repeat(r+1),!1))}const H_=Mt("undefined",!1),aR=(e,t)=>{if(e.type===1&&(e.tagType===1||e.tagType===3)){const n=Gs(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},lR=(e,t,n,r)=>gl(e,n,!1,!0,n.length?n[0].loc:r);function cR(e,t,n=lR){t.helper(Sy);const{children:r,loc:i}=e,a=[],o=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const d=Gs(e,"slot",!0);if(d){const{arg:N,exp:I}=d;N&&!Zr(N)&&(c=!0),a.push(Un(N||Mt("default",!0),n(I,void 0,r,i)))}let f=!1,y=!1;const g=[],v=new Set;let S=0;for(let N=0;N{const L=n(I,void 0,D,i);return t.compatConfig&&(L.isNonScopedSlot=!0),Un("default",L)};f?g.length&&g.some(I=>aS(I))&&(y?t.onError(On(39,g[0].loc)):a.push(N(void 0,g))):a.push(N(void 0,r))}const E=c?2:of(e.children)?3:1;let T=As(a.concat(Un("_",Mt(E+"",!1))),i);return o.length&&(T=tr(t.helper(HE),[T,gu(o)])),{slots:T,hasDynamicSlots:c}}function Bd(e,t,n){const r=[Un("name",e),Un("fn",t)];return n!=null&&r.push(Un("key",Mt(String(n),!0))),As(r)}function of(e){for(let t=0;tfunction(){if(e=t.currentNode,!(e.type===1&&(e.tagType===0||e.tagType===1)))return;const{tag:r,props:i}=e,a=e.tagType===1;let o=a?dR(e,t):`"${r}"`;const c=mn(o)&&o.callee===gy;let d,f,y,g=0,v,S,E,T=c||o===Ic||o===uy||!a&&(r==="svg"||r==="foreignObject");if(i.length>0){const N=cS(e,t,void 0,a,c);d=N.props,g=N.patchFlag,S=N.dynamicPropNames;const I=N.directives;E=I&&I.length?gu(I.map(D=>hR(D,t))):void 0,N.shouldUseBlock&&(T=!0)}if(e.children.length>0)if(o===If&&(T=!0,g|=1024),a&&o!==Ic&&o!==If){const{slots:I,hasDynamicSlots:D}=cR(e,t);f=I,D&&(g|=1024)}else if(e.children.length===1&&o!==Ic){const I=e.children[0],D=I.type,L=D===5||D===8;L&&ks(I,t)===0&&(g|=1),L||D===2?f=I:f=e.children}else f=e.children;g!==0&&(y=String(g),S&&S.length&&(v=pR(S))),e.codegenNode=Kc(t,o,d,f,y,v,E,!!T,!1,a,e.loc)};function dR(e,t,n=!1){let{tag:r}=e;const i=qg(r),a=vh(e,"is");if(a)if(i||ma("COMPILER_IS_ON_ELEMENT",t)){const c=a.type===6?a.value&&Mt(a.value.content,!0):a.exp;if(c)return tr(t.helper(gy),[c])}else a.type===6&&a.value.content.startsWith("vue:")&&(r=a.value.content.slice(4));const o=WE(r)||t.isBuiltInComponent(r);return o?(n||t.helper(o),o):(t.helper(py),t.components.add(r),Yc(r,"component"))}function cS(e,t,n=e.props,r,i,a=!1){const{tag:o,loc:c,children:d}=e;let f=[];const y=[],g=[],v=d.length>0;let S=!1,E=0,T=!1,N=!1,I=!1,D=!1,L=!1,R=!1;const U=[],H=F=>{f.length&&(y.push(As(j_(f),c)),f=[]),F&&y.push(F)},m=({key:F,value:V})=>{if(Zr(F)){const re=F.content,ce=wa(re);if(ce&&(!r||i)&&re.toLowerCase()!=="onclick"&&re!=="onUpdate:modelValue"&&!da(re)&&(D=!0),ce&&da(re)&&(R=!0),ce&&V.type===14&&(V=V.arguments[0]),V.type===20||(V.type===4||V.type===8)&&ks(V,t)>0)return;re==="ref"?T=!0:re==="class"?N=!0:re==="style"?I=!0:re!=="key"&&!U.includes(re)&&U.push(re),r&&(re==="class"||re==="style")&&!U.includes(re)&&U.push(re)}else L=!0};for(let F=0;F0&&f.push(Un(Mt("ref_for",!0),Mt("true")))),ce==="is"&&(qg(o)||ye&&ye.content.startsWith("vue:")||ma("COMPILER_IS_ON_ELEMENT",t)))continue;f.push(Un(Mt(ce,!0,J),Mt(ye?ye.content:"",Me,ye?ye.loc:re)))}else{const{name:re,arg:ce,exp:J,loc:ye,modifiers:Me}=V,fe=re==="bind",Se=re==="on";if(re==="slot"){r||t.onError(On(40,ye));continue}if(re==="once"||re==="memo"||re==="is"||fe&&ca(ce,"is")&&(qg(o)||ma("COMPILER_IS_ON_ELEMENT",t))||Se&&a)continue;if((fe&&ca(ce,"key")||Se&&v&&ca(ce,"vue:before-update"))&&(S=!0),fe&&ca(ce,"ref")&&t.scopes.vFor>0&&f.push(Un(Mt("ref_for",!0),Mt("true"))),!ce&&(fe||Se)){if(L=!0,J)if(fe){if(H(),ma("COMPILER_V_BIND_OBJECT_ORDER",t)){y.unshift(J);continue}y.push(J)}else H({type:14,loc:ye,callee:t.helper(Ey),arguments:r?[J]:[J,"true"]});else t.onError(On(fe?34:35,ye));continue}fe&&Me.includes("prop")&&(E|=32);const we=t.directiveTransforms[re];if(we){const{props:Qe,needRuntime:ht}=we(V,e,t);!a&&Qe.forEach(m),Se&&ce&&!Zr(ce)?H(As(Qe,c)):f.push(...Qe),ht&&(g.push(V),Xs(ht)&&lS.set(V,ht))}else BP(re)||(g.push(V),v&&(S=!0))}}let K;if(y.length?(H(),y.length>1?K=tr(t.helper(Of),y,c):K=y[0]):f.length&&(K=As(j_(f),c)),L?E|=16:(N&&!r&&(E|=2),I&&!r&&(E|=4),U.length&&(E|=8),D&&(E|=32)),!S&&(E===0||E===32)&&(T||R||g.length>0)&&(E|=512),!t.inSSR&&K)switch(K.type){case 15:let F=-1,V=-1,re=!1;for(let ye=0;yeUn(o,a)),i))}return gu(n,e.loc)}function pR(e){let t="[";for(let n=0,r=e.length;n{if(Nf(e)){const{children:n,loc:r}=e,{slotName:i,slotProps:a}=mR(e,t),o=[t.prefixIdentifiers?"_ctx.$slots":"$slots",i,"{}","undefined","true"];let c=2;a&&(o[2]=a,c=3),n.length&&(o[3]=gl([],n,!1,!1,r),c=4),t.scopeId&&!t.slotted&&(c=5),o.splice(c),e.codegenNode=tr(t.helper(UE),o,r)}};function mR(e,t){let n='"default"',r;const i=[];for(let a=0;a0){const{props:a,directives:o}=cS(e,t,i,!1,!1);r=a,o.length&&t.onError(On(36,o[0].loc))}return{slotName:n,slotProps:r}}const yR=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,uS=(e,t,n,r)=>{const{loc:i,modifiers:a,arg:o}=e;!e.exp&&!a.length&&n.onError(On(35,i));let c;if(o.type===4)if(o.isStatic){let g=o.content;g.startsWith("vue:")&&(g=`vnode-${g.slice(4)}`);const v=t.tagType!==0||g.startsWith("vnode")||!/[A-Z]/.test(g)?fa(Ln(g)):`on:${g}`;c=Mt(v,!0,o.loc)}else c=Ys([`${n.helperString(Gg)}(`,o,")"]);else c=o,c.children.unshift(`${n.helperString(Gg)}(`),c.children.push(")");let d=e.exp;d&&!d.content.trim()&&(d=void 0);let f=n.cacheHandlers&&!d&&!n.inVOnce;if(d){const g=GE(d.content),v=!(g||yR.test(d.content)),S=d.content.includes(";");(v||f&&g)&&(d=Ys([`${v?"$event":"(...args)"} => ${S?"{":"("}`,d,S?"}":")"]))}let y={props:[Un(c,d||Mt("() => {}",!1,i))]};return r&&(y=r(y)),f&&(y.props[0].value=n.cache(y.props[0].value)),y.props.forEach(g=>g.key.isHandlerKey=!0),y},bR=(e,t,n)=>{const{modifiers:r,loc:i}=e,a=e.arg;let{exp:o}=e;if(!o&&a.type===4){const c=Ln(a.content);o=e.exp=Mt(c,!1,a.loc)}return a.type!==4?(a.children.unshift("("),a.children.push(') || ""')):a.isStatic||(a.content=`${a.content} || ""`),r.includes("camel")&&(a.type===4?a.isStatic?a.content=Ln(a.content):a.content=`${n.helperString(Wg)}(${a.content})`:(a.children.unshift(`${n.helperString(Wg)}(`),a.children.push(")"))),n.inSSR||(r.includes("prop")&&V_(a,"."),r.includes("attr")&&V_(a,"^")),!o||o.type===4&&!o.content.trim()?(n.onError(On(34,i)),{props:[Un(a,Mt("",!0,i))]}):{props:[Un(a,o)]}},V_=(e,t)=>{e.type===4?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},vR=(e,t)=>{if(e.type===0||e.type===1||e.type===11||e.type===10)return()=>{const n=e.children;let r,i=!1;for(let a=0;aa.type===7&&!t.directiveTransforms[a.name])&&e.tag!=="template")))for(let a=0;a{if(e.type===1&&Gs(e,"once",!0))return W_.has(e)||t.inVOnce||t.inSSR?void 0:(W_.add(e),t.inVOnce=!0,t.helper(Af),()=>{t.inVOnce=!1;const n=t.currentNode;n.codegenNode&&(n.codegenNode=t.cache(n.codegenNode,!0))})},dS=(e,t,n)=>{const{exp:r,arg:i}=e;if(!r)return n.onError(On(41,e.loc)),Ud();const a=r.loc.source,o=r.type===4?r.content:a,c=n.bindingMetadata[a];if(c==="props"||c==="props-aliased")return n.onError(On(44,r.loc)),Ud();if(!o.trim()||!GE(o)&&!!1)return n.onError(On(42,r.loc)),Ud();const f=i||Mt("modelValue",!0),y=i?Zr(i)?`onUpdate:${Ln(i.content)}`:Ys(['"onUpdate:" + ',i]):"onUpdate:modelValue";let g;const v=n.isTS?"($event: any)":"$event";g=Ys([`${v} => ((`,r,") = $event)"]);const S=[Un(f,e.exp),Un(y,g)];if(e.modifiers.length&&t.tagType===1){const E=e.modifiers.map(N=>(Iy(N)?N:JSON.stringify(N))+": true").join(", "),T=i?Zr(i)?`${i.content}Modifiers`:Ys([i,' + "Modifiers"']):"modelModifiers";S.push(Un(T,Mt(`{ ${E} }`,!1,e.loc,2)))}return Ud(S)};function Ud(e=[]){return{props:e}}const xR=/[\w).+\-_$\]]/,ER=(e,t)=>{ma("COMPILER_FILTERS",t)&&(e.type===5&&Df(e.content,t),e.type===1&&e.props.forEach(n=>{n.type===7&&n.name!=="for"&&n.exp&&Df(n.exp,t)}))};function Df(e,t){if(e.type===4)G_(e,t);else for(let n=0;n=0&&(D=n.charAt(I),D===" ");I--);(!D||!xR.test(D))&&(o=!0)}}E===void 0?E=n.slice(0,S).trim():y!==0&&N();function N(){T.push(n.slice(y,S).trim()),y=S+1}if(T.length){for(S=0;S{if(e.type===1){const n=Gs(e,"memo");return!n||K_.has(e)?void 0:(K_.add(e),()=>{const r=e.codegenNode||t.currentNode.codegenNode;r&&r.type===13&&(e.tagType!==1&&Ty(r,t),e.codegenNode=tr(t.helper(wy),[n.exp,gl(void 0,r),"_cache",String(t.cached++)]))})}};function TR(e){return[[_R,tR,wR,sR,ER,gR,uR,aR,vR],{on:uS,bind:bR,model:dS}]}function CR(e,t={}){const n=t.onError||Cy,r=t.mode==="module";t.prefixIdentifiers===!0?n(On(47)):r&&n(On(48));const i=!1;t.cacheHandlers&&n(On(49)),t.scopeId&&!r&&n(On(50));const a=on({},t,{prefixIdentifiers:i}),o=At(e)?LL(e,a):e,[c,d]=TR();return $L(o,on({},a,{nodeTransforms:[...c,...t.nodeTransforms||[]],directiveTransforms:on({},d,t.directiveTransforms||{})})),UL(o,a)}const IR=()=>({props:[]});/** * @vue/compiler-dom v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/const fS=Symbol(""),hS=Symbol(""),pS=Symbol(""),gS=Symbol(""),Jg=Symbol(""),mS=Symbol(""),yS=Symbol(""),bS=Symbol(""),vS=Symbol(""),_S=Symbol("");lL({[fS]:"vModelRadio",[hS]:"vModelCheckbox",[pS]:"vModelText",[gS]:"vModelSelect",[Jg]:"vModelDynamic",[mS]:"withModifiers",[yS]:"withKeys",[bS]:"vShow",[vS]:"Transition",[_S]:"TransitionGroup"});let Xa;function OR(e,t=!1){return Xa||(Xa=document.createElement("div")),t?(Xa.innerHTML=`
`,Xa.children[0].getAttribute("foo")):(Xa.innerHTML=e,Xa.textContent)}const AR={parseMode:"html",isVoidTag:e2,isNativeTag:e=>JP(e)||ZP(e)||QP(e),isPreTag:e=>e==="pre",decodeEntities:OR,isBuiltInComponent:e=>{if(e==="Transition"||e==="transition")return vS;if(e==="TransitionGroup"||e==="transition-group")return _S},getNamespace(e,t,n){let r=t?t.ns:n;if(t&&r===2)if(t.tag==="annotation-xml"){if(e==="svg")return 1;t.props.some(i=>i.type===6&&i.name==="encoding"&&i.value!=null&&(i.value.content==="text/html"||i.value.content==="application/xhtml+xml"))&&(r=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&e!=="mglyph"&&e!=="malignmark"&&(r=0);else t&&r===1&&(t.tag==="foreignObject"||t.tag==="desc"||t.tag==="title")&&(r=0);if(r===0){if(e==="svg")return 1;if(e==="math")return 2}return r}},kR=e=>{e.type===1&&e.props.forEach((t,n)=>{t.type===6&&t.name==="style"&&t.value&&(e.props[n]={type:7,name:"bind",arg:$t("style",!0,t.loc),exp:PR(t.value.content,t.loc),modifiers:[],loc:t.loc})})},PR=(e,t)=>{const n=m1(e);return $t(JSON.stringify(n),!1,t,3)};function Oi(e,t){return On(e,t)}const NR=(e,t,n)=>{const{exp:r,loc:i}=e;return r||n.onError(Oi(53,i)),t.children.length&&(n.onError(Oi(54,i)),t.children.length=0),{props:[Un($t("innerHTML",!0,i),r||$t("",!0))]}},LR=(e,t,n)=>{const{exp:r,loc:i}=e;return r||n.onError(Oi(55,i)),t.children.length&&(n.onError(Oi(56,i)),t.children.length=0),{props:[Un($t("textContent",!0),r?ks(r,n)>0?r:tr(n.helperString(vh),[r],i):$t("",!0))]}},RR=(e,t,n)=>{const r=dS(e,t,n);if(!r.props.length||t.tagType===1)return r;e.arg&&n.onError(Oi(58,e.arg.loc));const{tag:i}=t,a=n.isCustomElement(i);if(i==="input"||i==="textarea"||i==="select"||a){let o=pS,c=!1;if(i==="input"||a){const d=_h(t,"type");if(d){if(d.type===7)o=Jg;else if(d.value)switch(d.value.content){case"radio":o=fS;break;case"checkbox":o=hS;break;case"file":c=!0,n.onError(Oi(59,e.loc));break}}else bL(t)&&(o=Jg)}else i==="select"&&(o=gS);c||(r.needRuntime=n.helper(o))}else n.onError(Oi(57,e.loc));return r.props=r.props.filter(o=>!(o.key.type===4&&o.key.content==="modelValue")),r},DR=ms("passive,once,capture"),MR=ms("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),$R=ms("left,right"),xS=ms("onkeyup,onkeydown,onkeypress",!0),FR=(e,t,n,r)=>{const i=[],a=[],o=[];for(let c=0;cZr(e)&&e.content.toLowerCase()==="onclick"?$t(t,!0):e.type!==4?Ys(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,BR=(e,t,n)=>uS(e,t,n,r=>{const{modifiers:i}=e;if(!i.length)return r;let{key:a,value:o}=r.props[0];const{keyModifiers:c,nonKeyModifiers:d,eventOptionModifiers:f}=FR(a,i,n,e.loc);if(d.includes("right")&&(a=z_(a,"onContextmenu")),d.includes("middle")&&(a=z_(a,"onMouseup")),d.length&&(o=tr(n.helper(mS),[o,JSON.stringify(d)])),c.length&&(!Zr(a)||xS(a.content))&&(o=tr(n.helper(yS),[o,JSON.stringify(c)])),f.length){const y=f.map(Li).join("");a=Zr(a)?$t(`${a.content}${y}`,!0):Ys(["(",a,`) + "${y}"`])}return{props:[Un(a,o)]}}),UR=(e,t,n)=>{const{exp:r,loc:i}=e;return r||n.onError(Oi(61,i)),{props:[],needRuntime:n.helper(bS)}},HR=(e,t)=>{e.type===1&&e.tagType===0&&(e.tag==="script"||e.tag==="style")&&t.removeNode()},jR=[kR],VR={cloak:IR,html:NR,text:LR,model:RR,on:BR,show:UR};function WR(e,t={}){return CR(e,on({},AR,t,{nodeTransforms:[HR,...jR,...t.nodeTransforms||[]],directiveTransforms:on({},VR,t.directiveTransforms||{}),transformHoist:null}))}/** +**/const fS=Symbol(""),hS=Symbol(""),pS=Symbol(""),gS=Symbol(""),Jg=Symbol(""),mS=Symbol(""),yS=Symbol(""),bS=Symbol(""),vS=Symbol(""),_S=Symbol("");lL({[fS]:"vModelRadio",[hS]:"vModelCheckbox",[pS]:"vModelText",[gS]:"vModelSelect",[Jg]:"vModelDynamic",[mS]:"withModifiers",[yS]:"withKeys",[bS]:"vShow",[vS]:"Transition",[_S]:"TransitionGroup"});let Xa;function OR(e,t=!1){return Xa||(Xa=document.createElement("div")),t?(Xa.innerHTML=`
`,Xa.children[0].getAttribute("foo")):(Xa.innerHTML=e,Xa.textContent)}const AR={parseMode:"html",isVoidTag:e2,isNativeTag:e=>JP(e)||ZP(e)||QP(e),isPreTag:e=>e==="pre",decodeEntities:OR,isBuiltInComponent:e=>{if(e==="Transition"||e==="transition")return vS;if(e==="TransitionGroup"||e==="transition-group")return _S},getNamespace(e,t,n){let r=t?t.ns:n;if(t&&r===2)if(t.tag==="annotation-xml"){if(e==="svg")return 1;t.props.some(i=>i.type===6&&i.name==="encoding"&&i.value!=null&&(i.value.content==="text/html"||i.value.content==="application/xhtml+xml"))&&(r=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&e!=="mglyph"&&e!=="malignmark"&&(r=0);else t&&r===1&&(t.tag==="foreignObject"||t.tag==="desc"||t.tag==="title")&&(r=0);if(r===0){if(e==="svg")return 1;if(e==="math")return 2}return r}},kR=e=>{e.type===1&&e.props.forEach((t,n)=>{t.type===6&&t.name==="style"&&t.value&&(e.props[n]={type:7,name:"bind",arg:Mt("style",!0,t.loc),exp:PR(t.value.content,t.loc),modifiers:[],loc:t.loc})})},PR=(e,t)=>{const n=m1(e);return Mt(JSON.stringify(n),!1,t,3)};function Oi(e,t){return On(e,t)}const NR=(e,t,n)=>{const{exp:r,loc:i}=e;return r||n.onError(Oi(53,i)),t.children.length&&(n.onError(Oi(54,i)),t.children.length=0),{props:[Un(Mt("innerHTML",!0,i),r||Mt("",!0))]}},LR=(e,t,n)=>{const{exp:r,loc:i}=e;return r||n.onError(Oi(55,i)),t.children.length&&(n.onError(Oi(56,i)),t.children.length=0),{props:[Un(Mt("textContent",!0),r?ks(r,n)>0?r:tr(n.helperString(bh),[r],i):Mt("",!0))]}},RR=(e,t,n)=>{const r=dS(e,t,n);if(!r.props.length||t.tagType===1)return r;e.arg&&n.onError(Oi(58,e.arg.loc));const{tag:i}=t,a=n.isCustomElement(i);if(i==="input"||i==="textarea"||i==="select"||a){let o=pS,c=!1;if(i==="input"||a){const d=vh(t,"type");if(d){if(d.type===7)o=Jg;else if(d.value)switch(d.value.content){case"radio":o=fS;break;case"checkbox":o=hS;break;case"file":c=!0,n.onError(Oi(59,e.loc));break}}else bL(t)&&(o=Jg)}else i==="select"&&(o=gS);c||(r.needRuntime=n.helper(o))}else n.onError(Oi(57,e.loc));return r.props=r.props.filter(o=>!(o.key.type===4&&o.key.content==="modelValue")),r},DR=ms("passive,once,capture"),MR=ms("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),$R=ms("left,right"),xS=ms("onkeyup,onkeydown,onkeypress",!0),FR=(e,t,n,r)=>{const i=[],a=[],o=[];for(let c=0;cZr(e)&&e.content.toLowerCase()==="onclick"?Mt(t,!0):e.type!==4?Ys(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,BR=(e,t,n)=>uS(e,t,n,r=>{const{modifiers:i}=e;if(!i.length)return r;let{key:a,value:o}=r.props[0];const{keyModifiers:c,nonKeyModifiers:d,eventOptionModifiers:f}=FR(a,i,n,e.loc);if(d.includes("right")&&(a=z_(a,"onContextmenu")),d.includes("middle")&&(a=z_(a,"onMouseup")),d.length&&(o=tr(n.helper(mS),[o,JSON.stringify(d)])),c.length&&(!Zr(a)||xS(a.content))&&(o=tr(n.helper(yS),[o,JSON.stringify(c)])),f.length){const y=f.map(Li).join("");a=Zr(a)?Mt(`${a.content}${y}`,!0):Ys(["(",a,`) + "${y}"`])}return{props:[Un(a,o)]}}),UR=(e,t,n)=>{const{exp:r,loc:i}=e;return r||n.onError(Oi(61,i)),{props:[],needRuntime:n.helper(bS)}},HR=(e,t)=>{e.type===1&&e.tagType===0&&(e.tag==="script"||e.tag==="style")&&t.removeNode()},jR=[kR],VR={cloak:IR,html:NR,text:LR,model:RR,on:BR,show:UR};function WR(e,t={}){return CR(e,on({},AR,t,{nodeTransforms:[HR,...jR,...t.nodeTransforms||[]],directiveTransforms:on({},VR,t.directiveTransforms||{}),transformHoist:null}))}/** * vue v3.4.15 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/const Y_=new WeakMap;function GR(e){let t=Y_.get(e??cn);return t||(t=Object.create(null),Y_.set(e??cn,t)),t}function ES(e,t){if(!At(e))if(e.nodeType)e=e.innerHTML;else return sr;const n=e,r=GR(t),i=r[n];if(i)return i;if(e[0]==="#"){const d=document.querySelector(e);e=d?d.innerHTML:""}const a=on({hoistStatic:!0,onError:void 0,onWarn:sr},t);!a.isCustomElement&&typeof customElements<"u"&&(a.isCustomElement=d=>!!customElements.get(d));const{code:o}=WR(e,a),c=new Function("Vue",o)(nL);return c._rc=!0,r[n]=c}ry(ES);const KR=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Hm,BaseTransitionPropsValidators:fh,Comment:gr,DeprecationTypes:fE,EffectScope:Zf,ErrorCodes:Y1,ErrorTypeStrings:iE,Fragment:Gt,KeepAlive:hx,ReactiveEffect:va,Static:Ii,Suspense:ax,Teleport:Vx,Text:Vo,TrackOpTypes:G1,Transition:Di,TransitionGroup:wE,TriggerOpTypes:K1,VueElement:du,assertNumber:z1,callWithAsyncErrorHandling:Qr,callWithErrorHandling:go,camelize:Ln,capitalize:Li,cloneVNode:Js,compatUtils:dE,compile:ES,computed:Wn,createApp:cy,createBlock:_n,createCommentVNode:rt,createElementBlock:Ne,createElementVNode:w,createHydrationRenderer:Zm,createPropsRestProxy:kx,createRenderer:Jm,createSSRApp:NE,createSlots:gx,createStaticVNode:Xx,createTextVNode:xn,createVNode:mt,customRef:Pm,defineAsyncComponent:fx,defineComponent:Oa,defineCustomElement:ay,defineEmits:vx,defineExpose:_x,defineModel:Sx,defineOptions:xx,defineProps:bx,defineSSRCustomElement:vE,defineSlots:Ex,devtools:aE,effect:E1,effectScope:Sm,getCurrentInstance:Fr,getCurrentScope:Qf,getTransitionRawChildren:su,guardReactiveProps:ey,h:uu,handleError:Ri,hasInjectionContext:Rx,hydrate:ly,initCustomFormatter:rE,initDirectivesForSSR:DE,inject:En,isMemoSame:sy,isProxy:sh,isReactive:Ci,isReadonly:Ai,isRef:ir,isRuntimeOnly:Qx,isShallow:dl,isVNode:Wo,markRaw:oh,mergeDefaults:Ox,mergeModels:Ax,mergeProps:ny,nextTick:nu,normalizeClass:Yt,normalizeProps:y1,normalizeStyle:wl,onActivated:jm,onBeforeMount:ph,onBeforeUnmount:au,onBeforeUpdate:Wm,onDeactivated:Vm,onErrorCaptured:Ym,onMounted:Aa,onRenderTracked:zm,onRenderTriggered:Km,onScopeDispose:wm,onServerPrefetch:Gm,onUnmounted:Tl,onUpdated:iu,openBlock:_e,popScopeId:tx,provide:Fo,proxyRefs:ah,pushScopeId:ex,queuePostFlushCb:$c,reactive:eu,readonly:nh,ref:ft,registerRuntimeCompiler:ry,render:If,renderList:$r,renderSlot:lu,resolveComponent:Mt,resolveDirective:ox,resolveDynamicComponent:sx,resolveFilter:uE,resolveTransitionHooks:_a,setBlockTracking:Sf,setDevtoolsHook:lE,setTransitionHooks:ki,shallowReactive:Om,shallowReadonly:$1,shallowRef:ih,ssrContextKey:$m,ssrUtils:cE,stop:S1,toDisplayString:ae,toHandlerKey:fa,toHandlers:yx,toRaw:Zt,toRef:V1,toRefs:j1,toValue:H1,transformVNodeArgs:zx,triggerRef:U1,unref:tu,useAttrs:Cx,useCssModule:_E,useCssVars:bE,useModel:nE,useSSRContext:Fm,useSlots:Tx,useTransitionState:dh,vModelCheckbox:fu,vModelDynamic:Vc,vModelRadio:bh,vModelSelect:gs,vModelText:zn,vShow:yh,version:oy,warn:oE,watch:Ns,watchEffect:cx,watchPostEffect:Bm,watchSyncEffect:Um,withAsyncContext:Px,withCtx:Mr,withDefaults:wx,withDirectives:dn,withKeys:OE,withMemo:sE,withModifiers:IE,withScopeId:nx},Symbol.toStringTag,{value:"Module"}));/*! +**/const Y_=new WeakMap;function GR(e){let t=Y_.get(e??cn);return t||(t=Object.create(null),Y_.set(e??cn,t)),t}function ES(e,t){if(!At(e))if(e.nodeType)e=e.innerHTML;else return sr;const n=e,r=GR(t),i=r[n];if(i)return i;if(e[0]==="#"){const d=document.querySelector(e);e=d?d.innerHTML:""}const a=on({hoistStatic:!0,onError:void 0,onWarn:sr},t);!a.isCustomElement&&typeof customElements<"u"&&(a.isCustomElement=d=>!!customElements.get(d));const{code:o}=WR(e,a),c=new Function("Vue",o)(nL);return c._rc=!0,r[n]=c}ry(ES);const KR=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:Hm,BaseTransitionPropsValidators:dh,Comment:gr,DeprecationTypes:fE,EffectScope:Jf,ErrorCodes:Y1,ErrorTypeStrings:iE,Fragment:Gt,KeepAlive:hx,ReactiveEffect:va,Static:Ii,Suspense:ax,Teleport:Vx,Text:Vo,TrackOpTypes:G1,Transition:Di,TransitionGroup:wE,TriggerOpTypes:K1,VueElement:du,assertNumber:z1,callWithAsyncErrorHandling:Qr,callWithErrorHandling:go,camelize:Ln,capitalize:Li,cloneVNode:Js,compatUtils:dE,compile:ES,computed:Wn,createApp:cy,createBlock:wn,createCommentVNode:it,createElementBlock:Ne,createElementVNode:w,createHydrationRenderer:Zm,createPropsRestProxy:kx,createRenderer:Jm,createSSRApp:NE,createSlots:gx,createStaticVNode:Xx,createTextVNode:vn,createVNode:mt,customRef:Pm,defineAsyncComponent:fx,defineComponent:Oa,defineCustomElement:ay,defineEmits:vx,defineExpose:_x,defineModel:Sx,defineOptions:xx,defineProps:bx,defineSSRCustomElement:vE,defineSlots:Ex,devtools:aE,effect:E1,effectScope:Sm,getCurrentInstance:Fr,getCurrentScope:Zf,getTransitionRawChildren:su,guardReactiveProps:ey,h:uu,handleError:Ri,hasInjectionContext:Rx,hydrate:ly,initCustomFormatter:rE,initDirectivesForSSR:DE,inject:_n,isMemoSame:sy,isProxy:rh,isReactive:Ci,isReadonly:Ai,isRef:ir,isRuntimeOnly:Qx,isShallow:dl,isVNode:Wo,markRaw:sh,mergeDefaults:Ox,mergeModels:Ax,mergeProps:ny,nextTick:nu,normalizeClass:Yt,normalizeProps:y1,normalizeStyle:wl,onActivated:jm,onBeforeMount:hh,onBeforeUnmount:au,onBeforeUpdate:Wm,onDeactivated:Vm,onErrorCaptured:Ym,onMounted:Aa,onRenderTracked:zm,onRenderTriggered:Km,onScopeDispose:wm,onServerPrefetch:Gm,onUnmounted:Tl,onUpdated:iu,openBlock:_e,popScopeId:tx,provide:Fo,proxyRefs:ih,pushScopeId:ex,queuePostFlushCb:$c,reactive:eu,readonly:th,ref:ft,registerRuntimeCompiler:ry,render:Cf,renderList:$r,renderSlot:lu,resolveComponent:Vt,resolveDirective:ox,resolveDynamicComponent:sx,resolveFilter:uE,resolveTransitionHooks:_a,setBlockTracking:Ef,setDevtoolsHook:lE,setTransitionHooks:ki,shallowReactive:Om,shallowReadonly:$1,shallowRef:oh,ssrContextKey:$m,ssrUtils:cE,stop:S1,toDisplayString:ae,toHandlerKey:fa,toHandlers:yx,toRaw:Zt,toRef:V1,toRefs:j1,toValue:H1,transformVNodeArgs:zx,triggerRef:U1,unref:tu,useAttrs:Cx,useCssModule:_E,useCssVars:bE,useModel:nE,useSSRContext:Fm,useSlots:Tx,useTransitionState:uh,vModelCheckbox:fu,vModelDynamic:Vc,vModelRadio:yh,vModelSelect:gs,vModelText:zn,vShow:mh,version:oy,warn:oE,watch:Ns,watchEffect:cx,watchPostEffect:Bm,watchSyncEffect:Um,withAsyncContext:Px,withCtx:Mr,withDefaults:wx,withDirectives:dn,withKeys:OE,withMemo:sE,withModifiers:IE,withScopeId:nx},Symbol.toStringTag,{value:"Module"}));/*! * shared v9.9.0 * (c) 2024 kazuya kawaguchi * Released under the MIT License. - */const $f=typeof window<"u",Mi=(e,t=!1)=>t?Symbol.for(e):Symbol(e),zR=(e,t,n)=>YR({l:e,k:t,s:n}),YR=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),rr=e=>typeof e=="number"&&isFinite(e),XR=e=>wS(e)==="[object Date]",Ni=e=>wS(e)==="[object RegExp]",Sh=e=>Et(e)&&Object.keys(e).length===0,mr=Object.assign;let X_;const $o=()=>X_||(X_=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function q_(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const qR=Object.prototype.hasOwnProperty;function Ff(e,t){return qR.call(e,t)}const Tn=Array.isArray,wn=e=>typeof e=="function",Ge=e=>typeof e=="string",Wt=e=>typeof e=="boolean",pn=e=>e!==null&&typeof e=="object",JR=e=>pn(e)&&wn(e.then)&&wn(e.catch),SS=Object.prototype.toString,wS=e=>SS.call(e),Et=e=>{if(!pn(e))return!1;const t=Object.getPrototypeOf(e);return t===null||t.constructor===Object},ZR=e=>e==null?"":Tn(e)||Et(e)&&e.toString===SS?JSON.stringify(e,null,2):String(e);function QR(e,t=""){return e.reduce((n,r,i)=>i===0?n+r:n+t+r,"")}function Ay(e){let t=e;return()=>++t}function eD(e,t){typeof console<"u"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const jd=e=>!pn(e)||Tn(e);function lf(e,t){if(jd(e)||jd(t))throw new Error("Invalid value");const n=[{src:e,des:t}];for(;n.length;){const{src:r,des:i}=n.pop();Object.keys(r).forEach(a=>{jd(r[a])||jd(i[a])?i[a]=r[a]:n.push({src:r[a],des:i[a]})})}}/*! + */const Mf=typeof window<"u",Mi=(e,t=!1)=>t?Symbol.for(e):Symbol(e),zR=(e,t,n)=>YR({l:e,k:t,s:n}),YR=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),rr=e=>typeof e=="number"&&isFinite(e),XR=e=>wS(e)==="[object Date]",Ni=e=>wS(e)==="[object RegExp]",Eh=e=>Et(e)&&Object.keys(e).length===0,mr=Object.assign;let X_;const $o=()=>X_||(X_=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function q_(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const qR=Object.prototype.hasOwnProperty;function $f(e,t){return qR.call(e,t)}const Tn=Array.isArray,Sn=e=>typeof e=="function",Ge=e=>typeof e=="string",Wt=e=>typeof e=="boolean",pn=e=>e!==null&&typeof e=="object",JR=e=>pn(e)&&Sn(e.then)&&Sn(e.catch),SS=Object.prototype.toString,wS=e=>SS.call(e),Et=e=>{if(!pn(e))return!1;const t=Object.getPrototypeOf(e);return t===null||t.constructor===Object},ZR=e=>e==null?"":Tn(e)||Et(e)&&e.toString===SS?JSON.stringify(e,null,2):String(e);function QR(e,t=""){return e.reduce((n,r,i)=>i===0?n+r:n+t+r,"")}function Ay(e){let t=e;return()=>++t}function eD(e,t){typeof console<"u"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const Hd=e=>!pn(e)||Tn(e);function af(e,t){if(Hd(e)||Hd(t))throw new Error("Invalid value");const n=[{src:e,des:t}];for(;n.length;){const{src:r,des:i}=n.pop();Object.keys(r).forEach(a=>{Hd(r[a])||Hd(i[a])?i[a]=r[a]:n.push({src:r[a],des:i[a]})})}}/*! * message-compiler v9.9.0 * (c) 2024 kazuya kawaguchi * Released under the MIT License. */function tD(e,t,n){return{line:e,column:t,offset:n}}function Zg(e,t,n){const r={start:e,end:t};return n!=null&&(r.source=n),r}const nD=/\{([0-9a-zA-Z]+)\}/g;function rD(e,...t){return t.length===1&&sD(t[0])&&(t=t[0]),(!t||!t.hasOwnProperty)&&(t={}),e.replace(nD,(n,r)=>t.hasOwnProperty(r)?t[r]:"")}const TS=Object.assign,J_=e=>typeof e=="string",sD=e=>e!==null&&typeof e=="object";function CS(e,t=""){return e.reduce((n,r,i)=>i===0?n+r:n+t+r,"")}const gt={EXPECTED_TOKEN:1,INVALID_TOKEN_IN_PLACEHOLDER:2,UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER:3,UNKNOWN_ESCAPE_SEQUENCE:4,INVALID_UNICODE_ESCAPE_SEQUENCE:5,UNBALANCED_CLOSING_BRACE:6,UNTERMINATED_CLOSING_BRACE:7,EMPTY_PLACEHOLDER:8,NOT_ALLOW_NEST_PLACEHOLDER:9,INVALID_LINKED_FORMAT:10,MUST_HAVE_MESSAGES_IN_PLURAL:11,UNEXPECTED_EMPTY_LINKED_MODIFIER:12,UNEXPECTED_EMPTY_LINKED_KEY:13,UNEXPECTED_LEXICAL_ANALYSIS:14,UNHANDLED_CODEGEN_NODE_TYPE:15,UNHANDLED_MINIFIER_NODE_TYPE:16,__EXTEND_POINT__:17},oD={[gt.EXPECTED_TOKEN]:"Expected token: '{0}'",[gt.INVALID_TOKEN_IN_PLACEHOLDER]:"Invalid token in placeholder: '{0}'",[gt.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]:"Unterminated single quote in placeholder",[gt.UNKNOWN_ESCAPE_SEQUENCE]:"Unknown escape sequence: \\{0}",[gt.INVALID_UNICODE_ESCAPE_SEQUENCE]:"Invalid unicode escape sequence: {0}",[gt.UNBALANCED_CLOSING_BRACE]:"Unbalanced closing brace",[gt.UNTERMINATED_CLOSING_BRACE]:"Unterminated closing brace",[gt.EMPTY_PLACEHOLDER]:"Empty placeholder",[gt.NOT_ALLOW_NEST_PLACEHOLDER]:"Not allowed nest placeholder",[gt.INVALID_LINKED_FORMAT]:"Invalid linked format",[gt.MUST_HAVE_MESSAGES_IN_PLURAL]:"Plural must have messages",[gt.UNEXPECTED_EMPTY_LINKED_MODIFIER]:"Unexpected empty linked modifier",[gt.UNEXPECTED_EMPTY_LINKED_KEY]:"Unexpected empty linked key",[gt.UNEXPECTED_LEXICAL_ANALYSIS]:"Unexpected lexical analysis in token: '{0}'",[gt.UNHANDLED_CODEGEN_NODE_TYPE]:"unhandled codegen node type: '{0}'",[gt.UNHANDLED_MINIFIER_NODE_TYPE]:"unhandled mimifier node type: '{0}'"};function Cl(e,t,n={}){const{domain:r,messages:i,args:a}=n,o=rD((i||oD)[e]||"",...a||[]),c=new SyntaxError(String(o));return c.code=e,t&&(c.location=t),c.domain=r,c}function iD(e){throw e}const Lo=" ",aD="\r",Dr=` -`,lD="\u2028",cD="\u2029";function uD(e){const t=e;let n=0,r=1,i=1,a=0;const o=m=>t[m]===aD&&t[m+1]===Dr,c=m=>t[m]===Dr,d=m=>t[m]===cD,f=m=>t[m]===lD,y=m=>o(m)||c(m)||d(m)||f(m),g=()=>n,v=()=>r,S=()=>i,E=()=>a,T=m=>o(m)||d(m)||f(m)?Dr:t[m],N=()=>T(n),I=()=>T(n+a);function D(){return a=0,y(n)&&(r++,i=0),o(n)&&n++,n++,i++,t[n]}function L(){return o(n+a)&&a++,a++,t[n+a]}function R(){n=0,r=1,i=1,a=0}function U(m=0){a=m}function H(){const m=n+a;for(;m!==n;)D();a=0}return{index:g,line:v,column:S,peekOffset:E,charAt:T,currentChar:N,currentPeek:I,next:D,peek:L,reset:R,resetPeek:U,skipToPeek:H}}const pi=void 0,dD=".",Z_="'",fD="tokenizer";function hD(e,t={}){const n=t.location!==!1,r=uD(e),i=()=>r.index(),a=()=>tD(r.line(),r.column(),r.index()),o=a(),c=i(),d={currentType:14,offset:c,startLoc:o,endLoc:o,lastType:14,lastOffset:c,lastStartLoc:o,lastEndLoc:o,braceNest:0,inLinked:!1,text:""},f=()=>d,{onError:y}=t;function g(A,C,G,...oe){const te=f();if(C.column+=G,C.offset+=G,y){const be=n?Zg(te.startLoc,C):null,$e=Cl(A,be,{domain:fD,args:oe});y($e)}}function v(A,C,G){A.endLoc=a(),A.currentType=C;const oe={type:C};return n&&(oe.loc=Zg(A.startLoc,A.endLoc)),G!=null&&(oe.value=G),oe}const S=A=>v(A,14);function E(A,C){return A.currentChar()===C?(A.next(),C):(g(gt.EXPECTED_TOKEN,a(),0,C),"")}function T(A){let C="";for(;A.currentPeek()===Lo||A.currentPeek()===Dr;)C+=A.currentPeek(),A.peek();return C}function N(A){const C=T(A);return A.skipToPeek(),C}function I(A){if(A===pi)return!1;const C=A.charCodeAt(0);return C>=97&&C<=122||C>=65&&C<=90||C===95}function D(A){if(A===pi)return!1;const C=A.charCodeAt(0);return C>=48&&C<=57}function L(A,C){const{currentType:G}=C;if(G!==2)return!1;T(A);const oe=I(A.currentPeek());return A.resetPeek(),oe}function R(A,C){const{currentType:G}=C;if(G!==2)return!1;T(A);const oe=A.currentPeek()==="-"?A.peek():A.currentPeek(),te=D(oe);return A.resetPeek(),te}function U(A,C){const{currentType:G}=C;if(G!==2)return!1;T(A);const oe=A.currentPeek()===Z_;return A.resetPeek(),oe}function H(A,C){const{currentType:G}=C;if(G!==8)return!1;T(A);const oe=A.currentPeek()===".";return A.resetPeek(),oe}function m(A,C){const{currentType:G}=C;if(G!==9)return!1;T(A);const oe=I(A.currentPeek());return A.resetPeek(),oe}function K(A,C){const{currentType:G}=C;if(!(G===8||G===12))return!1;T(A);const oe=A.currentPeek()===":";return A.resetPeek(),oe}function F(A,C){const{currentType:G}=C;if(G!==10)return!1;const oe=()=>{const be=A.currentPeek();return be==="{"?I(A.peek()):be==="@"||be==="%"||be==="|"||be===":"||be==="."||be===Lo||!be?!1:be===Dr?(A.peek(),oe()):I(be)},te=oe();return A.resetPeek(),te}function V(A){T(A);const C=A.currentPeek()==="|";return A.resetPeek(),C}function re(A){const C=T(A),G=A.currentPeek()==="%"&&A.peek()==="{";return A.resetPeek(),{isModulo:G,hasSpace:C.length>0}}function ce(A,C=!0){const G=(te=!1,be="",$e=!1)=>{const Ce=A.currentPeek();return Ce==="{"?be==="%"?!1:te:Ce==="@"||!Ce?be==="%"?!0:te:Ce==="%"?(A.peek(),G(te,"%",!0)):Ce==="|"?be==="%"||$e?!0:!(be===Lo||be===Dr):Ce===Lo?(A.peek(),G(!0,Lo,$e)):Ce===Dr?(A.peek(),G(!0,Dr,$e)):!0},oe=G();return C&&A.resetPeek(),oe}function J(A,C){const G=A.currentChar();return G===pi?pi:C(G)?(A.next(),G):null}function ye(A){return J(A,G=>{const oe=G.charCodeAt(0);return oe>=97&&oe<=122||oe>=65&&oe<=90||oe>=48&&oe<=57||oe===95||oe===36})}function Me(A){return J(A,G=>{const oe=G.charCodeAt(0);return oe>=48&&oe<=57})}function fe(A){return J(A,G=>{const oe=G.charCodeAt(0);return oe>=48&&oe<=57||oe>=65&&oe<=70||oe>=97&&oe<=102})}function Se(A){let C="",G="";for(;C=Me(A);)G+=C;return G}function we(A){N(A);const C=A.currentChar();return C!=="%"&&g(gt.EXPECTED_TOKEN,a(),0,C),A.next(),"%"}function Qe(A){let C="";for(;;){const G=A.currentChar();if(G==="{"||G==="}"||G==="@"||G==="|"||!G)break;if(G==="%")if(ce(A))C+=G,A.next();else break;else if(G===Lo||G===Dr)if(ce(A))C+=G,A.next();else{if(V(A))break;C+=G,A.next()}else C+=G,A.next()}return C}function ht(A){N(A);let C="",G="";for(;C=ye(A);)G+=C;return A.currentChar()===pi&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),G}function at(A){N(A);let C="";return A.currentChar()==="-"?(A.next(),C+=`-${Se(A)}`):C+=Se(A),A.currentChar()===pi&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),C}function vt(A){N(A),E(A,"'");let C="",G="";const oe=be=>be!==Z_&&be!==Dr;for(;C=J(A,oe);)C==="\\"?G+=Xt(A):G+=C;const te=A.currentChar();return te===Dr||te===pi?(g(gt.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER,a(),0),te===Dr&&(A.next(),E(A,"'")),G):(E(A,"'"),G)}function Xt(A){const C=A.currentChar();switch(C){case"\\":case"'":return A.next(),`\\${C}`;case"u":return tn(A,C,4);case"U":return tn(A,C,6);default:return g(gt.UNKNOWN_ESCAPE_SEQUENCE,a(),0,C),""}}function tn(A,C,G){E(A,C);let oe="";for(let te=0;tete!=="{"&&te!=="}"&&te!==Lo&&te!==Dr;for(;C=J(A,oe);)G+=C;return G}function yt(A){let C="",G="";for(;C=ye(A);)G+=C;return G}function Lt(A){const C=(G=!1,oe)=>{const te=A.currentChar();return te==="{"||te==="%"||te==="@"||te==="|"||te==="("||te===")"||!te||te===Lo?oe:te===Dr||te===dD?(oe+=te,A.next(),C(G,oe)):(oe+=te,A.next(),C(!0,oe))};return C(!1,"")}function Qt(A){N(A);const C=E(A,"|");return N(A),C}function Kt(A,C){let G=null;switch(A.currentChar()){case"{":return C.braceNest>=1&&g(gt.NOT_ALLOW_NEST_PLACEHOLDER,a(),0),A.next(),G=v(C,2,"{"),N(A),C.braceNest++,G;case"}":return C.braceNest>0&&C.currentType===2&&g(gt.EMPTY_PLACEHOLDER,a(),0),A.next(),G=v(C,3,"}"),C.braceNest--,C.braceNest>0&&N(A),C.inLinked&&C.braceNest===0&&(C.inLinked=!1),G;case"@":return C.braceNest>0&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),G=Rt(A,C)||S(C),C.braceNest=0,G;default:let te=!0,be=!0,$e=!0;if(V(A))return C.braceNest>0&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),G=v(C,1,Qt(A)),C.braceNest=0,C.inLinked=!1,G;if(C.braceNest>0&&(C.currentType===5||C.currentType===6||C.currentType===7))return g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),C.braceNest=0,yn(A,C);if(te=L(A,C))return G=v(C,5,ht(A)),N(A),G;if(be=R(A,C))return G=v(C,6,at(A)),N(A),G;if($e=U(A,C))return G=v(C,7,vt(A)),N(A),G;if(!te&&!be&&!$e)return G=v(C,13,Ft(A)),g(gt.INVALID_TOKEN_IN_PLACEHOLDER,a(),0,G.value),N(A),G;break}return G}function Rt(A,C){const{currentType:G}=C;let oe=null;const te=A.currentChar();switch((G===8||G===9||G===12||G===10)&&(te===Dr||te===Lo)&&g(gt.INVALID_LINKED_FORMAT,a(),0),te){case"@":return A.next(),oe=v(C,8,"@"),C.inLinked=!0,oe;case".":return N(A),A.next(),v(C,9,".");case":":return N(A),A.next(),v(C,10,":");default:return V(A)?(oe=v(C,1,Qt(A)),C.braceNest=0,C.inLinked=!1,oe):H(A,C)||K(A,C)?(N(A),Rt(A,C)):m(A,C)?(N(A),v(C,12,yt(A))):F(A,C)?(N(A),te==="{"?Kt(A,C)||oe:v(C,11,Lt(A))):(G===8&&g(gt.INVALID_LINKED_FORMAT,a(),0),C.braceNest=0,C.inLinked=!1,yn(A,C))}}function yn(A,C){let G={type:14};if(C.braceNest>0)return Kt(A,C)||S(C);if(C.inLinked)return Rt(A,C)||S(C);switch(A.currentChar()){case"{":return Kt(A,C)||S(C);case"}":return g(gt.UNBALANCED_CLOSING_BRACE,a(),0),A.next(),v(C,3,"}");case"@":return Rt(A,C)||S(C);default:if(V(A))return G=v(C,1,Qt(A)),C.braceNest=0,C.inLinked=!1,G;const{isModulo:te,hasSpace:be}=re(A);if(te)return be?v(C,0,Qe(A)):v(C,4,we(A));if(ce(A))return v(C,0,Qe(A));break}return G}function an(){const{currentType:A,offset:C,startLoc:G,endLoc:oe}=d;return d.lastType=A,d.lastOffset=C,d.lastStartLoc=G,d.lastEndLoc=oe,d.offset=i(),d.startLoc=a(),r.currentChar()===pi?v(d,14):yn(r,d)}return{nextToken:an,currentOffset:i,currentPosition:a,context:f}}const pD="parser",gD=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function mD(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const r=parseInt(t||n,16);return r<=55295||r>=57344?String.fromCodePoint(r):"�"}}}function yD(e={}){const t=e.location!==!1,{onError:n}=e;function r(I,D,L,R,...U){const H=I.currentPosition();if(H.offset+=R,H.column+=R,n){const m=t?Zg(L,H):null,K=Cl(D,m,{domain:pD,args:U});n(K)}}function i(I,D,L){const R={type:I};return t&&(R.start=D,R.end=D,R.loc={start:L,end:L}),R}function a(I,D,L,R){R&&(I.type=R),t&&(I.end=D,I.loc&&(I.loc.end=L))}function o(I,D){const L=I.context(),R=i(3,L.offset,L.startLoc);return R.value=D,a(R,I.currentOffset(),I.currentPosition()),R}function c(I,D){const L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(5,R,U);return H.index=parseInt(D,10),I.nextToken(),a(H,I.currentOffset(),I.currentPosition()),H}function d(I,D){const L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(4,R,U);return H.key=D,I.nextToken(),a(H,I.currentOffset(),I.currentPosition()),H}function f(I,D){const L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(9,R,U);return H.value=D.replace(gD,mD),I.nextToken(),a(H,I.currentOffset(),I.currentPosition()),H}function y(I){const D=I.nextToken(),L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(8,R,U);return D.type!==12?(r(I,gt.UNEXPECTED_EMPTY_LINKED_MODIFIER,L.lastStartLoc,0),H.value="",a(H,R,U),{nextConsumeToken:D,node:H}):(D.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,L.lastStartLoc,0,co(D)),H.value=D.value||"",a(H,I.currentOffset(),I.currentPosition()),{node:H})}function g(I,D){const L=I.context(),R=i(7,L.offset,L.startLoc);return R.value=D,a(R,I.currentOffset(),I.currentPosition()),R}function v(I){const D=I.context(),L=i(6,D.offset,D.startLoc);let R=I.nextToken();if(R.type===9){const U=y(I);L.modifier=U.node,R=U.nextConsumeToken||I.nextToken()}switch(R.type!==10&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),R=I.nextToken(),R.type===2&&(R=I.nextToken()),R.type){case 11:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=g(I,R.value||"");break;case 5:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=d(I,R.value||"");break;case 6:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=c(I,R.value||"");break;case 7:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=f(I,R.value||"");break;default:r(I,gt.UNEXPECTED_EMPTY_LINKED_KEY,D.lastStartLoc,0);const U=I.context(),H=i(7,U.offset,U.startLoc);return H.value="",a(H,U.offset,U.startLoc),L.key=H,a(L,U.offset,U.startLoc),{nextConsumeToken:R,node:L}}return a(L,I.currentOffset(),I.currentPosition()),{node:L}}function S(I){const D=I.context(),L=D.currentType===1?I.currentOffset():D.offset,R=D.currentType===1?D.endLoc:D.startLoc,U=i(2,L,R);U.items=[];let H=null;do{const F=H||I.nextToken();switch(H=null,F.type){case 0:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(o(I,F.value||""));break;case 6:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(c(I,F.value||""));break;case 5:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(d(I,F.value||""));break;case 7:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(f(I,F.value||""));break;case 8:const V=v(I);U.items.push(V.node),H=V.nextConsumeToken||null;break}}while(D.currentType!==14&&D.currentType!==1);const m=D.currentType===1?D.lastOffset:I.currentOffset(),K=D.currentType===1?D.lastEndLoc:I.currentPosition();return a(U,m,K),U}function E(I,D,L,R){const U=I.context();let H=R.items.length===0;const m=i(1,D,L);m.cases=[],m.cases.push(R);do{const K=S(I);H||(H=K.items.length===0),m.cases.push(K)}while(U.currentType!==14);return H&&r(I,gt.MUST_HAVE_MESSAGES_IN_PLURAL,L,0),a(m,I.currentOffset(),I.currentPosition()),m}function T(I){const D=I.context(),{offset:L,startLoc:R}=D,U=S(I);return D.currentType===14?U:E(I,L,R,U)}function N(I){const D=hD(I,TS({},e)),L=D.context(),R=i(0,L.offset,L.startLoc);return t&&R.loc&&(R.loc.source=I),R.body=T(D),e.onCacheKey&&(R.cacheKey=e.onCacheKey(I)),L.currentType!==14&&r(D,gt.UNEXPECTED_LEXICAL_ANALYSIS,L.lastStartLoc,0,I[L.offset]||""),a(R,D.currentOffset(),D.currentPosition()),R}return{parse:N}}function co(e){if(e.type===14)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"…":t}function bD(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:a=>(n.helpers.add(a),a)}}function Q_(e,t){for(let n=0;ne0(n)),e}function e0(e){if(e.items.length===1){const t=e.items[0];(t.type===3||t.type===9)&&(e.static=t.value,delete t.value)}else{const t=[];for(let n=0;nc;function f(N,I){c.code+=N}function y(N,I=!0){const D=I?i:"";f(a?D+" ".repeat(N):D)}function g(N=!0){const I=++c.indentLevel;N&&y(I)}function v(N=!0){const I=--c.indentLevel;N&&y(I)}function S(){y(c.indentLevel)}return{context:d,push:f,indent:g,deindent:v,newline:S,helper:N=>`_${N}`,needIndent:()=>c.needIndent}}function wD(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),bl(e,t.key),t.modifier?(e.push(", "),bl(e,t.modifier),e.push(", _type")):e.push(", undefined, _type"),e.push(")")}function TD(e,t){const{helper:n,needIndent:r}=e;e.push(`${n("normalize")}([`),e.indent(r());const i=t.items.length;for(let a=0;a1){e.push(`${n("plural")}([`),e.indent(r());const i=t.cases.length;for(let a=0;a{const n=J_(t.mode)?t.mode:"normal",r=J_(t.filename)?t.filename:"message.intl",i=!!t.sourceMap,a=t.breakLineCode!=null?t.breakLineCode:n==="arrow"?";":` +`,lD="\u2028",cD="\u2029";function uD(e){const t=e;let n=0,r=1,i=1,a=0;const o=m=>t[m]===aD&&t[m+1]===Dr,c=m=>t[m]===Dr,d=m=>t[m]===cD,f=m=>t[m]===lD,y=m=>o(m)||c(m)||d(m)||f(m),g=()=>n,v=()=>r,S=()=>i,E=()=>a,T=m=>o(m)||d(m)||f(m)?Dr:t[m],N=()=>T(n),I=()=>T(n+a);function D(){return a=0,y(n)&&(r++,i=0),o(n)&&n++,n++,i++,t[n]}function L(){return o(n+a)&&a++,a++,t[n+a]}function R(){n=0,r=1,i=1,a=0}function U(m=0){a=m}function H(){const m=n+a;for(;m!==n;)D();a=0}return{index:g,line:v,column:S,peekOffset:E,charAt:T,currentChar:N,currentPeek:I,next:D,peek:L,reset:R,resetPeek:U,skipToPeek:H}}const pi=void 0,dD=".",Z_="'",fD="tokenizer";function hD(e,t={}){const n=t.location!==!1,r=uD(e),i=()=>r.index(),a=()=>tD(r.line(),r.column(),r.index()),o=a(),c=i(),d={currentType:14,offset:c,startLoc:o,endLoc:o,lastType:14,lastOffset:c,lastStartLoc:o,lastEndLoc:o,braceNest:0,inLinked:!1,text:""},f=()=>d,{onError:y}=t;function g(A,C,G,...oe){const te=f();if(C.column+=G,C.offset+=G,y){const be=n?Zg(te.startLoc,C):null,$e=Cl(A,be,{domain:fD,args:oe});y($e)}}function v(A,C,G){A.endLoc=a(),A.currentType=C;const oe={type:C};return n&&(oe.loc=Zg(A.startLoc,A.endLoc)),G!=null&&(oe.value=G),oe}const S=A=>v(A,14);function E(A,C){return A.currentChar()===C?(A.next(),C):(g(gt.EXPECTED_TOKEN,a(),0,C),"")}function T(A){let C="";for(;A.currentPeek()===Lo||A.currentPeek()===Dr;)C+=A.currentPeek(),A.peek();return C}function N(A){const C=T(A);return A.skipToPeek(),C}function I(A){if(A===pi)return!1;const C=A.charCodeAt(0);return C>=97&&C<=122||C>=65&&C<=90||C===95}function D(A){if(A===pi)return!1;const C=A.charCodeAt(0);return C>=48&&C<=57}function L(A,C){const{currentType:G}=C;if(G!==2)return!1;T(A);const oe=I(A.currentPeek());return A.resetPeek(),oe}function R(A,C){const{currentType:G}=C;if(G!==2)return!1;T(A);const oe=A.currentPeek()==="-"?A.peek():A.currentPeek(),te=D(oe);return A.resetPeek(),te}function U(A,C){const{currentType:G}=C;if(G!==2)return!1;T(A);const oe=A.currentPeek()===Z_;return A.resetPeek(),oe}function H(A,C){const{currentType:G}=C;if(G!==8)return!1;T(A);const oe=A.currentPeek()===".";return A.resetPeek(),oe}function m(A,C){const{currentType:G}=C;if(G!==9)return!1;T(A);const oe=I(A.currentPeek());return A.resetPeek(),oe}function K(A,C){const{currentType:G}=C;if(!(G===8||G===12))return!1;T(A);const oe=A.currentPeek()===":";return A.resetPeek(),oe}function F(A,C){const{currentType:G}=C;if(G!==10)return!1;const oe=()=>{const be=A.currentPeek();return be==="{"?I(A.peek()):be==="@"||be==="%"||be==="|"||be===":"||be==="."||be===Lo||!be?!1:be===Dr?(A.peek(),oe()):I(be)},te=oe();return A.resetPeek(),te}function V(A){T(A);const C=A.currentPeek()==="|";return A.resetPeek(),C}function re(A){const C=T(A),G=A.currentPeek()==="%"&&A.peek()==="{";return A.resetPeek(),{isModulo:G,hasSpace:C.length>0}}function ce(A,C=!0){const G=(te=!1,be="",$e=!1)=>{const Ce=A.currentPeek();return Ce==="{"?be==="%"?!1:te:Ce==="@"||!Ce?be==="%"?!0:te:Ce==="%"?(A.peek(),G(te,"%",!0)):Ce==="|"?be==="%"||$e?!0:!(be===Lo||be===Dr):Ce===Lo?(A.peek(),G(!0,Lo,$e)):Ce===Dr?(A.peek(),G(!0,Dr,$e)):!0},oe=G();return C&&A.resetPeek(),oe}function J(A,C){const G=A.currentChar();return G===pi?pi:C(G)?(A.next(),G):null}function ye(A){return J(A,G=>{const oe=G.charCodeAt(0);return oe>=97&&oe<=122||oe>=65&&oe<=90||oe>=48&&oe<=57||oe===95||oe===36})}function Me(A){return J(A,G=>{const oe=G.charCodeAt(0);return oe>=48&&oe<=57})}function fe(A){return J(A,G=>{const oe=G.charCodeAt(0);return oe>=48&&oe<=57||oe>=65&&oe<=70||oe>=97&&oe<=102})}function Se(A){let C="",G="";for(;C=Me(A);)G+=C;return G}function we(A){N(A);const C=A.currentChar();return C!=="%"&&g(gt.EXPECTED_TOKEN,a(),0,C),A.next(),"%"}function Qe(A){let C="";for(;;){const G=A.currentChar();if(G==="{"||G==="}"||G==="@"||G==="|"||!G)break;if(G==="%")if(ce(A))C+=G,A.next();else break;else if(G===Lo||G===Dr)if(ce(A))C+=G,A.next();else{if(V(A))break;C+=G,A.next()}else C+=G,A.next()}return C}function ht(A){N(A);let C="",G="";for(;C=ye(A);)G+=C;return A.currentChar()===pi&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),G}function at(A){N(A);let C="";return A.currentChar()==="-"?(A.next(),C+=`-${Se(A)}`):C+=Se(A),A.currentChar()===pi&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),C}function vt(A){N(A),E(A,"'");let C="",G="";const oe=be=>be!==Z_&&be!==Dr;for(;C=J(A,oe);)C==="\\"?G+=Xt(A):G+=C;const te=A.currentChar();return te===Dr||te===pi?(g(gt.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER,a(),0),te===Dr&&(A.next(),E(A,"'")),G):(E(A,"'"),G)}function Xt(A){const C=A.currentChar();switch(C){case"\\":case"'":return A.next(),`\\${C}`;case"u":return tn(A,C,4);case"U":return tn(A,C,6);default:return g(gt.UNKNOWN_ESCAPE_SEQUENCE,a(),0,C),""}}function tn(A,C,G){E(A,C);let oe="";for(let te=0;tete!=="{"&&te!=="}"&&te!==Lo&&te!==Dr;for(;C=J(A,oe);)G+=C;return G}function yt(A){let C="",G="";for(;C=ye(A);)G+=C;return G}function Lt(A){const C=(G=!1,oe)=>{const te=A.currentChar();return te==="{"||te==="%"||te==="@"||te==="|"||te==="("||te===")"||!te||te===Lo?oe:te===Dr||te===dD?(oe+=te,A.next(),C(G,oe)):(oe+=te,A.next(),C(!0,oe))};return C(!1,"")}function Qt(A){N(A);const C=E(A,"|");return N(A),C}function Kt(A,C){let G=null;switch(A.currentChar()){case"{":return C.braceNest>=1&&g(gt.NOT_ALLOW_NEST_PLACEHOLDER,a(),0),A.next(),G=v(C,2,"{"),N(A),C.braceNest++,G;case"}":return C.braceNest>0&&C.currentType===2&&g(gt.EMPTY_PLACEHOLDER,a(),0),A.next(),G=v(C,3,"}"),C.braceNest--,C.braceNest>0&&N(A),C.inLinked&&C.braceNest===0&&(C.inLinked=!1),G;case"@":return C.braceNest>0&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),G=Rt(A,C)||S(C),C.braceNest=0,G;default:let te=!0,be=!0,$e=!0;if(V(A))return C.braceNest>0&&g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),G=v(C,1,Qt(A)),C.braceNest=0,C.inLinked=!1,G;if(C.braceNest>0&&(C.currentType===5||C.currentType===6||C.currentType===7))return g(gt.UNTERMINATED_CLOSING_BRACE,a(),0),C.braceNest=0,yn(A,C);if(te=L(A,C))return G=v(C,5,ht(A)),N(A),G;if(be=R(A,C))return G=v(C,6,at(A)),N(A),G;if($e=U(A,C))return G=v(C,7,vt(A)),N(A),G;if(!te&&!be&&!$e)return G=v(C,13,$t(A)),g(gt.INVALID_TOKEN_IN_PLACEHOLDER,a(),0,G.value),N(A),G;break}return G}function Rt(A,C){const{currentType:G}=C;let oe=null;const te=A.currentChar();switch((G===8||G===9||G===12||G===10)&&(te===Dr||te===Lo)&&g(gt.INVALID_LINKED_FORMAT,a(),0),te){case"@":return A.next(),oe=v(C,8,"@"),C.inLinked=!0,oe;case".":return N(A),A.next(),v(C,9,".");case":":return N(A),A.next(),v(C,10,":");default:return V(A)?(oe=v(C,1,Qt(A)),C.braceNest=0,C.inLinked=!1,oe):H(A,C)||K(A,C)?(N(A),Rt(A,C)):m(A,C)?(N(A),v(C,12,yt(A))):F(A,C)?(N(A),te==="{"?Kt(A,C)||oe:v(C,11,Lt(A))):(G===8&&g(gt.INVALID_LINKED_FORMAT,a(),0),C.braceNest=0,C.inLinked=!1,yn(A,C))}}function yn(A,C){let G={type:14};if(C.braceNest>0)return Kt(A,C)||S(C);if(C.inLinked)return Rt(A,C)||S(C);switch(A.currentChar()){case"{":return Kt(A,C)||S(C);case"}":return g(gt.UNBALANCED_CLOSING_BRACE,a(),0),A.next(),v(C,3,"}");case"@":return Rt(A,C)||S(C);default:if(V(A))return G=v(C,1,Qt(A)),C.braceNest=0,C.inLinked=!1,G;const{isModulo:te,hasSpace:be}=re(A);if(te)return be?v(C,0,Qe(A)):v(C,4,we(A));if(ce(A))return v(C,0,Qe(A));break}return G}function an(){const{currentType:A,offset:C,startLoc:G,endLoc:oe}=d;return d.lastType=A,d.lastOffset=C,d.lastStartLoc=G,d.lastEndLoc=oe,d.offset=i(),d.startLoc=a(),r.currentChar()===pi?v(d,14):yn(r,d)}return{nextToken:an,currentOffset:i,currentPosition:a,context:f}}const pD="parser",gD=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function mD(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const r=parseInt(t||n,16);return r<=55295||r>=57344?String.fromCodePoint(r):"�"}}}function yD(e={}){const t=e.location!==!1,{onError:n}=e;function r(I,D,L,R,...U){const H=I.currentPosition();if(H.offset+=R,H.column+=R,n){const m=t?Zg(L,H):null,K=Cl(D,m,{domain:pD,args:U});n(K)}}function i(I,D,L){const R={type:I};return t&&(R.start=D,R.end=D,R.loc={start:L,end:L}),R}function a(I,D,L,R){R&&(I.type=R),t&&(I.end=D,I.loc&&(I.loc.end=L))}function o(I,D){const L=I.context(),R=i(3,L.offset,L.startLoc);return R.value=D,a(R,I.currentOffset(),I.currentPosition()),R}function c(I,D){const L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(5,R,U);return H.index=parseInt(D,10),I.nextToken(),a(H,I.currentOffset(),I.currentPosition()),H}function d(I,D){const L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(4,R,U);return H.key=D,I.nextToken(),a(H,I.currentOffset(),I.currentPosition()),H}function f(I,D){const L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(9,R,U);return H.value=D.replace(gD,mD),I.nextToken(),a(H,I.currentOffset(),I.currentPosition()),H}function y(I){const D=I.nextToken(),L=I.context(),{lastOffset:R,lastStartLoc:U}=L,H=i(8,R,U);return D.type!==12?(r(I,gt.UNEXPECTED_EMPTY_LINKED_MODIFIER,L.lastStartLoc,0),H.value="",a(H,R,U),{nextConsumeToken:D,node:H}):(D.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,L.lastStartLoc,0,co(D)),H.value=D.value||"",a(H,I.currentOffset(),I.currentPosition()),{node:H})}function g(I,D){const L=I.context(),R=i(7,L.offset,L.startLoc);return R.value=D,a(R,I.currentOffset(),I.currentPosition()),R}function v(I){const D=I.context(),L=i(6,D.offset,D.startLoc);let R=I.nextToken();if(R.type===9){const U=y(I);L.modifier=U.node,R=U.nextConsumeToken||I.nextToken()}switch(R.type!==10&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),R=I.nextToken(),R.type===2&&(R=I.nextToken()),R.type){case 11:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=g(I,R.value||"");break;case 5:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=d(I,R.value||"");break;case 6:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=c(I,R.value||"");break;case 7:R.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(R)),L.key=f(I,R.value||"");break;default:r(I,gt.UNEXPECTED_EMPTY_LINKED_KEY,D.lastStartLoc,0);const U=I.context(),H=i(7,U.offset,U.startLoc);return H.value="",a(H,U.offset,U.startLoc),L.key=H,a(L,U.offset,U.startLoc),{nextConsumeToken:R,node:L}}return a(L,I.currentOffset(),I.currentPosition()),{node:L}}function S(I){const D=I.context(),L=D.currentType===1?I.currentOffset():D.offset,R=D.currentType===1?D.endLoc:D.startLoc,U=i(2,L,R);U.items=[];let H=null;do{const F=H||I.nextToken();switch(H=null,F.type){case 0:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(o(I,F.value||""));break;case 6:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(c(I,F.value||""));break;case 5:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(d(I,F.value||""));break;case 7:F.value==null&&r(I,gt.UNEXPECTED_LEXICAL_ANALYSIS,D.lastStartLoc,0,co(F)),U.items.push(f(I,F.value||""));break;case 8:const V=v(I);U.items.push(V.node),H=V.nextConsumeToken||null;break}}while(D.currentType!==14&&D.currentType!==1);const m=D.currentType===1?D.lastOffset:I.currentOffset(),K=D.currentType===1?D.lastEndLoc:I.currentPosition();return a(U,m,K),U}function E(I,D,L,R){const U=I.context();let H=R.items.length===0;const m=i(1,D,L);m.cases=[],m.cases.push(R);do{const K=S(I);H||(H=K.items.length===0),m.cases.push(K)}while(U.currentType!==14);return H&&r(I,gt.MUST_HAVE_MESSAGES_IN_PLURAL,L,0),a(m,I.currentOffset(),I.currentPosition()),m}function T(I){const D=I.context(),{offset:L,startLoc:R}=D,U=S(I);return D.currentType===14?U:E(I,L,R,U)}function N(I){const D=hD(I,TS({},e)),L=D.context(),R=i(0,L.offset,L.startLoc);return t&&R.loc&&(R.loc.source=I),R.body=T(D),e.onCacheKey&&(R.cacheKey=e.onCacheKey(I)),L.currentType!==14&&r(D,gt.UNEXPECTED_LEXICAL_ANALYSIS,L.lastStartLoc,0,I[L.offset]||""),a(R,D.currentOffset(),D.currentPosition()),R}return{parse:N}}function co(e){if(e.type===14)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"…":t}function bD(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:a=>(n.helpers.add(a),a)}}function Q_(e,t){for(let n=0;ne0(n)),e}function e0(e){if(e.items.length===1){const t=e.items[0];(t.type===3||t.type===9)&&(e.static=t.value,delete t.value)}else{const t=[];for(let n=0;nc;function f(N,I){c.code+=N}function y(N,I=!0){const D=I?i:"";f(a?D+" ".repeat(N):D)}function g(N=!0){const I=++c.indentLevel;N&&y(I)}function v(N=!0){const I=--c.indentLevel;N&&y(I)}function S(){y(c.indentLevel)}return{context:d,push:f,indent:g,deindent:v,newline:S,helper:N=>`_${N}`,needIndent:()=>c.needIndent}}function wD(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),bl(e,t.key),t.modifier?(e.push(", "),bl(e,t.modifier),e.push(", _type")):e.push(", undefined, _type"),e.push(")")}function TD(e,t){const{helper:n,needIndent:r}=e;e.push(`${n("normalize")}([`),e.indent(r());const i=t.items.length;for(let a=0;a1){e.push(`${n("plural")}([`),e.indent(r());const i=t.cases.length;for(let a=0;a{const n=J_(t.mode)?t.mode:"normal",r=J_(t.filename)?t.filename:"message.intl",i=!!t.sourceMap,a=t.breakLineCode!=null?t.breakLineCode:n==="arrow"?";":` `,o=t.needIndent?t.needIndent:n!=="arrow",c=e.helpers||[],d=SD(e,{mode:n,filename:r,sourceMap:i,breakLineCode:a,needIndent:o});d.push(n==="normal"?"function __msg__ (ctx) {":"(ctx) => {"),d.indent(o),c.length>0&&(d.push(`const { ${CS(c.map(g=>`${g}: _${g}`),", ")} } = ctx`),d.newline()),d.push("return "),bl(d,e),d.deindent(o),d.push("}"),delete e.helpers;const{code:f,map:y}=d.context();return{ast:e,code:f,map:y?y.toJSON():void 0}};function AD(e,t={}){const n=TS({},t),r=!!n.jit,i=!!n.minify,a=n.optimize==null?!0:n.optimize,c=yD(n).parse(e);return r?(a&&_D(c),i&&el(c),{ast:c,code:""}):(vD(c,n),OD(c,n))}/*! * core-base v9.9.0 * (c) 2024 kazuya kawaguchi * Released under the MIT License. - */function kD(){typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&($o().__INTLIFY_PROD_DEVTOOLS__=!1),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&($o().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&($o().__INTLIFY_DROP_MESSAGE_COMPILER__=!1)}const $i=[];$i[0]={w:[0],i:[3,0],"[":[4],o:[7]};$i[1]={w:[1],".":[2],"[":[4],o:[7]};$i[2]={w:[2],i:[3,0],0:[3,0]};$i[3]={i:[3,0],0:[3,0],w:[1,1],".":[2,1],"[":[4,1],o:[7,1]};$i[4]={"'":[5,0],'"':[6,0],"[":[4,2],"]":[1,3],o:8,l:[4,0]};$i[5]={"'":[4,0],o:8,l:[5,0]};$i[6]={'"':[4,0],o:8,l:[6,0]};const PD=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function ND(e){return PD.test(e)}function LD(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t===n&&(t===34||t===39)?e.slice(1,-1):e}function RD(e){if(e==null)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function DD(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:ND(t)?LD(t):"*"+t}function MD(e){const t=[];let n=-1,r=0,i=0,a,o,c,d,f,y,g;const v=[];v[0]=()=>{o===void 0?o=c:o+=c},v[1]=()=>{o!==void 0&&(t.push(o),o=void 0)},v[2]=()=>{v[0](),i++},v[3]=()=>{if(i>0)i--,r=4,v[0]();else{if(i=0,o===void 0||(o=DD(o),o===!1))return!1;v[1]()}};function S(){const E=e[n+1];if(r===5&&E==="'"||r===6&&E==='"')return n++,c="\\"+E,v[0](),!0}for(;r!==null;)if(n++,a=e[n],!(a==="\\"&&S())){if(d=RD(a),g=$i[r],f=g[d]||g.l||8,f===8||(r=f[0],f[1]!==void 0&&(y=v[f[1]],y&&(c=a,y()===!1))))return;if(r===7)return t}}const t0=new Map;function $D(e,t){return pn(e)?e[t]:null}function FD(e,t){if(!pn(e))return null;let n=t0.get(t);if(n||(n=MD(t),n&&t0.set(t,n)),!n)return null;const r=n.length;let i=e,a=0;for(;ae,UD=e=>"",HD="text",jD=e=>e.length===0?"":QR(e),VD=ZR;function n0(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function WD(e){const t=rr(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(rr(e.named.count)||rr(e.named.n))?rr(e.named.count)?e.named.count:rr(e.named.n)?e.named.n:t:t}function GD(e,t){t.count||(t.count=e),t.n||(t.n=e)}function KD(e={}){const t=e.locale,n=WD(e),r=pn(e.pluralRules)&&Ge(t)&&wn(e.pluralRules[t])?e.pluralRules[t]:n0,i=pn(e.pluralRules)&&Ge(t)&&wn(e.pluralRules[t])?n0:void 0,a=I=>I[r(n,I.length,i)],o=e.list||[],c=I=>o[I],d=e.named||{};rr(e.pluralIndex)&&GD(n,d);const f=I=>d[I];function y(I){const D=wn(e.messages)?e.messages(I):pn(e.messages)?e.messages[I]:!1;return D||(e.parent?e.parent.message(I):UD)}const g=I=>e.modifiers?e.modifiers[I]:BD,v=Et(e.processor)&&wn(e.processor.normalize)?e.processor.normalize:jD,S=Et(e.processor)&&wn(e.processor.interpolate)?e.processor.interpolate:VD,E=Et(e.processor)&&Ge(e.processor.type)?e.processor.type:HD,N={list:c,named:f,plural:a,linked:(I,...D)=>{const[L,R]=D;let U="text",H="";D.length===1?pn(L)?(H=L.modifier||H,U=L.type||U):Ge(L)&&(H=L||H):D.length===2&&(Ge(L)&&(H=L||H),Ge(R)&&(U=R||U));const m=y(I)(N),K=U==="vnode"&&Tn(m)&&H?m[0]:m;return H?g(H)(K,U):K},message:y,type:E,interpolate:S,normalize:v,values:mr({},o,d)};return N}let qc=null;function zD(e){qc=e}function YD(e,t,n){qc&&qc.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const XD=qD("function:translate");function qD(e){return t=>qc&&qc.emit(e,t)}const JD={NOT_FOUND_KEY:1,FALLBACK_TO_TRANSLATE:2,CANNOT_FORMAT_NUMBER:3,FALLBACK_TO_NUMBER_FORMAT:4,CANNOT_FORMAT_DATE:5,FALLBACK_TO_DATE_FORMAT:6,EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER:7,__EXTEND_POINT__:8},IS=gt.__EXTEND_POINT__,ta=Ay(IS),zs={INVALID_ARGUMENT:IS,INVALID_DATE_ARGUMENT:ta(),INVALID_ISO_DATE_ARGUMENT:ta(),NOT_SUPPORT_NON_STRING_MESSAGE:ta(),NOT_SUPPORT_LOCALE_PROMISE_VALUE:ta(),NOT_SUPPORT_LOCALE_ASYNC_FUNCTION:ta(),NOT_SUPPORT_LOCALE_TYPE:ta(),__EXTEND_POINT__:ta()};function po(e){return Cl(e,null,void 0)}function Py(e,t){return t.locale!=null?r0(t.locale):r0(e.locale)}let og;function r0(e){if(Ge(e))return e;if(wn(e)){if(e.resolvedOnce&&og!=null)return og;if(e.constructor.name==="Function"){const t=e();if(JR(t))throw po(zs.NOT_SUPPORT_LOCALE_PROMISE_VALUE);return og=t}else throw po(zs.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION)}else throw po(zs.NOT_SUPPORT_LOCALE_TYPE)}function ZD(e,t,n){return[...new Set([n,...Tn(t)?t:pn(t)?Object.keys(t):Ge(t)?[t]:[n]])]}function OS(e,t,n){const r=Ge(n)?n:vl,i=e;i.__localeChainCache||(i.__localeChainCache=new Map);let a=i.__localeChainCache.get(r);if(!a){a=[];let o=[n];for(;Tn(o);)o=s0(a,o,t);const c=Tn(t)||!Et(t)?t:t.default?t.default:null;o=Ge(c)?[c]:c,Tn(o)&&s0(a,o,!1),i.__localeChainCache.set(r,a)}return a}function s0(e,t,n){let r=!0;for(let i=0;i`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function nM(){return{upper:(e,t)=>t==="text"&&Ge(e)?e.toUpperCase():t==="vnode"&&pn(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>t==="text"&&Ge(e)?e.toLowerCase():t==="vnode"&&pn(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>t==="text"&&Ge(e)?i0(e):t==="vnode"&&pn(e)&&"__v_isVNode"in e?i0(e.children):e}}let AS;function a0(e){AS=e}let kS;function rM(e){kS=e}let PS;function sM(e){PS=e}let NS=null;const oM=e=>{NS=e},iM=()=>NS;let LS=null;const l0=e=>{LS=e},aM=()=>LS;let c0=0;function lM(e={}){const t=wn(e.onWarn)?e.onWarn:eD,n=Ge(e.version)?e.version:tM,r=Ge(e.locale)||wn(e.locale)?e.locale:vl,i=wn(r)?vl:r,a=Tn(e.fallbackLocale)||Et(e.fallbackLocale)||Ge(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:i,o=Et(e.messages)?e.messages:{[i]:{}},c=Et(e.datetimeFormats)?e.datetimeFormats:{[i]:{}},d=Et(e.numberFormats)?e.numberFormats:{[i]:{}},f=mr({},e.modifiers||{},nM()),y=e.pluralRules||{},g=wn(e.missing)?e.missing:null,v=Wt(e.missingWarn)||Ni(e.missingWarn)?e.missingWarn:!0,S=Wt(e.fallbackWarn)||Ni(e.fallbackWarn)?e.fallbackWarn:!0,E=!!e.fallbackFormat,T=!!e.unresolving,N=wn(e.postTranslation)?e.postTranslation:null,I=Et(e.processor)?e.processor:null,D=Wt(e.warnHtmlMessage)?e.warnHtmlMessage:!0,L=!!e.escapeParameter,R=wn(e.messageCompiler)?e.messageCompiler:AS,U=wn(e.messageResolver)?e.messageResolver:kS||$D,H=wn(e.localeFallbacker)?e.localeFallbacker:PS||ZD,m=pn(e.fallbackContext)?e.fallbackContext:void 0,K=e,F=pn(K.__datetimeFormatters)?K.__datetimeFormatters:new Map,V=pn(K.__numberFormatters)?K.__numberFormatters:new Map,re=pn(K.__meta)?K.__meta:{};c0++;const ce={version:n,cid:c0,locale:r,fallbackLocale:a,messages:o,modifiers:f,pluralRules:y,missing:g,missingWarn:v,fallbackWarn:S,fallbackFormat:E,unresolving:T,postTranslation:N,processor:I,warnHtmlMessage:D,escapeParameter:L,messageCompiler:R,messageResolver:U,localeFallbacker:H,fallbackContext:m,onWarn:t,__meta:re};return ce.datetimeFormats=c,ce.numberFormats=d,ce.__datetimeFormatters=F,ce.__numberFormatters=V,__INTLIFY_PROD_DEVTOOLS__&&YD(ce,n,re),ce}function Ny(e,t,n,r,i){const{missing:a,onWarn:o}=e;if(a!==null){const c=a(e,n,t,i);return Ge(c)?c:t}else return t}function fc(e,t,n){const r=e;r.__localeChainCache=new Map,e.localeFallbacker(e,n,t)}function ig(e){return n=>cM(n,e)}function cM(e,t){const n=t.b||t.body;if((n.t||n.type)===1){const r=n,i=r.c||r.cases;return e.plural(i.reduce((a,o)=>[...a,u0(e,o)],[]))}else return u0(e,n)}function u0(e,t){const n=t.s||t.static;if(n)return e.type==="text"?n:e.normalize([n]);{const r=(t.i||t.items).reduce((i,a)=>[...i,Qg(e,a)],[]);return e.normalize(r)}}function Qg(e,t){const n=t.t||t.type;switch(n){case 3:const r=t;return r.v||r.value;case 9:const i=t;return i.v||i.value;case 4:const a=t;return e.interpolate(e.named(a.k||a.key));case 5:const o=t;return e.interpolate(e.list(o.i!=null?o.i:o.index));case 6:const c=t,d=c.m||c.modifier;return e.linked(Qg(e,c.k||c.key),d?Qg(e,d):void 0,e.type);case 7:const f=t;return f.v||f.value;case 8:const y=t;return y.v||y.value;default:throw new Error(`unhandled node type on format message part: ${n}`)}}const RS=e=>e;let nl=Object.create(null);const _l=e=>pn(e)&&(e.t===0||e.type===0)&&("b"in e||"body"in e);function DS(e,t={}){let n=!1;const r=t.onError||iD;return t.onError=i=>{n=!0,r(i)},{...AD(e,t),detectError:n}}const uM=(e,t)=>{if(!Ge(e))throw po(zs.NOT_SUPPORT_NON_STRING_MESSAGE);{Wt(t.warnHtmlMessage)&&t.warnHtmlMessage;const r=(t.onCacheKey||RS)(e),i=nl[r];if(i)return i;const{code:a,detectError:o}=DS(e,t),c=new Function(`return ${a}`)();return o?c:nl[r]=c}};function dM(e,t){if(__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&Ge(e)){Wt(t.warnHtmlMessage)&&t.warnHtmlMessage;const r=(t.onCacheKey||RS)(e),i=nl[r];if(i)return i;const{ast:a,detectError:o}=DS(e,{...t,location:!1,jit:!0}),c=ig(a);return o?c:nl[r]=c}else{const n=e.cacheKey;if(n){const r=nl[n];return r||(nl[n]=ig(e))}else return ig(e)}}const d0=()=>"",Os=e=>wn(e);function f0(e,...t){const{fallbackFormat:n,postTranslation:r,unresolving:i,messageCompiler:a,fallbackLocale:o,messages:c}=e,[d,f]=em(...t),y=Wt(f.missingWarn)?f.missingWarn:e.missingWarn,g=Wt(f.fallbackWarn)?f.fallbackWarn:e.fallbackWarn,v=Wt(f.escapeParameter)?f.escapeParameter:e.escapeParameter,S=!!f.resolvedMessage,E=Ge(f.default)||Wt(f.default)?Wt(f.default)?a?d:()=>d:f.default:n?a?d:()=>d:"",T=n||E!=="",N=Py(e,f);v&&fM(f);let[I,D,L]=S?[d,N,c[N]||{}]:MS(e,d,N,o,g,y),R=I,U=d;if(!S&&!(Ge(R)||_l(R)||Os(R))&&T&&(R=E,U=R),!S&&(!(Ge(R)||_l(R)||Os(R))||!Ge(D)))return i?wh:d;let H=!1;const m=()=>{H=!0},K=Os(R)?R:$S(e,d,D,R,U,m);if(H)return R;const F=gM(e,D,L,f),V=KD(F),re=hM(e,K,V),ce=r?r(re,d):re;if(__INTLIFY_PROD_DEVTOOLS__){const J={timestamp:Date.now(),key:Ge(d)?d:Os(R)?R.key:"",locale:D||(Os(R)?R.locale:""),format:Ge(R)?R:Os(R)?R.source:"",message:ce};J.meta=mr({},e.__meta,iM()||{}),XD(J)}return ce}function fM(e){Tn(e.list)?e.list=e.list.map(t=>Ge(t)?q_(t):t):pn(e.named)&&Object.keys(e.named).forEach(t=>{Ge(e.named[t])&&(e.named[t]=q_(e.named[t]))})}function MS(e,t,n,r,i,a){const{messages:o,onWarn:c,messageResolver:d,localeFallbacker:f}=e,y=f(e,r,n);let g={},v,S=null;const E="translate";for(let T=0;Tr;return f.locale=n,f.key=t,f}const d=o(r,pM(e,n,i,r,c,a));return d.locale=n,d.key=t,d.source=r,d}function hM(e,t,n){return t(n)}function em(...e){const[t,n,r]=e,i={};if(!Ge(t)&&!rr(t)&&!Os(t)&&!_l(t))throw po(zs.INVALID_ARGUMENT);const a=rr(t)?String(t):(Os(t),t);return rr(n)?i.plural=n:Ge(n)?i.default=n:Et(n)&&!Sh(n)?i.named=n:Tn(n)&&(i.list=n),rr(r)?i.plural=r:Ge(r)?i.default=r:Et(r)&&mr(i,r),[a,i]}function pM(e,t,n,r,i,a){return{locale:t,key:n,warnHtmlMessage:i,onError:o=>{throw a&&a(o),o},onCacheKey:o=>zR(t,n,o)}}function gM(e,t,n,r){const{modifiers:i,pluralRules:a,messageResolver:o,fallbackLocale:c,fallbackWarn:d,missingWarn:f,fallbackContext:y}=e,v={locale:t,modifiers:i,pluralRules:a,messages:S=>{let E=o(n,S);if(E==null&&y){const[,,T]=MS(y,S,t,c,d,f);E=o(T,S)}if(Ge(E)||_l(E)){let T=!1;const I=$S(e,S,t,E,S,()=>{T=!0});return T?d0:I}else return Os(E)?E:d0}};return e.processor&&(v.processor=e.processor),r.list&&(v.list=r.list),r.named&&(v.named=r.named),rr(r.plural)&&(v.pluralIndex=r.plural),v}function h0(e,...t){const{datetimeFormats:n,unresolving:r,fallbackLocale:i,onWarn:a,localeFallbacker:o}=e,{__datetimeFormatters:c}=e,[d,f,y,g]=tm(...t),v=Wt(y.missingWarn)?y.missingWarn:e.missingWarn;Wt(y.fallbackWarn)?y.fallbackWarn:e.fallbackWarn;const S=!!y.part,E=Py(e,y),T=o(e,i,E);if(!Ge(d)||d==="")return new Intl.DateTimeFormat(E,g).format(f);let N={},I,D=null;const L="datetime format";for(let H=0;H{FS.includes(d)?o[d]=n[d]:a[d]=n[d]}),Ge(r)?a.locale=r:Et(r)&&(o=r),Et(i)&&(o=i),[a.key||"",c,a,o]}function p0(e,t,n){const r=e;for(const i in n){const a=`${t}__${i}`;r.__datetimeFormatters.has(a)&&r.__datetimeFormatters.delete(a)}}function g0(e,...t){const{numberFormats:n,unresolving:r,fallbackLocale:i,onWarn:a,localeFallbacker:o}=e,{__numberFormatters:c}=e,[d,f,y,g]=nm(...t),v=Wt(y.missingWarn)?y.missingWarn:e.missingWarn;Wt(y.fallbackWarn)?y.fallbackWarn:e.fallbackWarn;const S=!!y.part,E=Py(e,y),T=o(e,i,E);if(!Ge(d)||d==="")return new Intl.NumberFormat(E,g).format(f);let N={},I,D=null;const L="number format";for(let H=0;H{BS.includes(d)?o[d]=n[d]:a[d]=n[d]}),Ge(r)?a.locale=r:Et(r)&&(o=r),Et(i)&&(o=i),[a.key||"",c,a,o]}function m0(e,t,n){const r=e;for(const i in n){const a=`${t}__${i}`;r.__numberFormatters.has(a)&&r.__numberFormatters.delete(a)}}kD();/*! + */function kD(){typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&($o().__INTLIFY_PROD_DEVTOOLS__=!1),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&($o().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&($o().__INTLIFY_DROP_MESSAGE_COMPILER__=!1)}const $i=[];$i[0]={w:[0],i:[3,0],"[":[4],o:[7]};$i[1]={w:[1],".":[2],"[":[4],o:[7]};$i[2]={w:[2],i:[3,0],0:[3,0]};$i[3]={i:[3,0],0:[3,0],w:[1,1],".":[2,1],"[":[4,1],o:[7,1]};$i[4]={"'":[5,0],'"':[6,0],"[":[4,2],"]":[1,3],o:8,l:[4,0]};$i[5]={"'":[4,0],o:8,l:[5,0]};$i[6]={'"':[4,0],o:8,l:[6,0]};const PD=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function ND(e){return PD.test(e)}function LD(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t===n&&(t===34||t===39)?e.slice(1,-1):e}function RD(e){if(e==null)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function DD(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:ND(t)?LD(t):"*"+t}function MD(e){const t=[];let n=-1,r=0,i=0,a,o,c,d,f,y,g;const v=[];v[0]=()=>{o===void 0?o=c:o+=c},v[1]=()=>{o!==void 0&&(t.push(o),o=void 0)},v[2]=()=>{v[0](),i++},v[3]=()=>{if(i>0)i--,r=4,v[0]();else{if(i=0,o===void 0||(o=DD(o),o===!1))return!1;v[1]()}};function S(){const E=e[n+1];if(r===5&&E==="'"||r===6&&E==='"')return n++,c="\\"+E,v[0](),!0}for(;r!==null;)if(n++,a=e[n],!(a==="\\"&&S())){if(d=RD(a),g=$i[r],f=g[d]||g.l||8,f===8||(r=f[0],f[1]!==void 0&&(y=v[f[1]],y&&(c=a,y()===!1))))return;if(r===7)return t}}const t0=new Map;function $D(e,t){return pn(e)?e[t]:null}function FD(e,t){if(!pn(e))return null;let n=t0.get(t);if(n||(n=MD(t),n&&t0.set(t,n)),!n)return null;const r=n.length;let i=e,a=0;for(;ae,UD=e=>"",HD="text",jD=e=>e.length===0?"":QR(e),VD=ZR;function n0(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function WD(e){const t=rr(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(rr(e.named.count)||rr(e.named.n))?rr(e.named.count)?e.named.count:rr(e.named.n)?e.named.n:t:t}function GD(e,t){t.count||(t.count=e),t.n||(t.n=e)}function KD(e={}){const t=e.locale,n=WD(e),r=pn(e.pluralRules)&&Ge(t)&&Sn(e.pluralRules[t])?e.pluralRules[t]:n0,i=pn(e.pluralRules)&&Ge(t)&&Sn(e.pluralRules[t])?n0:void 0,a=I=>I[r(n,I.length,i)],o=e.list||[],c=I=>o[I],d=e.named||{};rr(e.pluralIndex)&&GD(n,d);const f=I=>d[I];function y(I){const D=Sn(e.messages)?e.messages(I):pn(e.messages)?e.messages[I]:!1;return D||(e.parent?e.parent.message(I):UD)}const g=I=>e.modifiers?e.modifiers[I]:BD,v=Et(e.processor)&&Sn(e.processor.normalize)?e.processor.normalize:jD,S=Et(e.processor)&&Sn(e.processor.interpolate)?e.processor.interpolate:VD,E=Et(e.processor)&&Ge(e.processor.type)?e.processor.type:HD,N={list:c,named:f,plural:a,linked:(I,...D)=>{const[L,R]=D;let U="text",H="";D.length===1?pn(L)?(H=L.modifier||H,U=L.type||U):Ge(L)&&(H=L||H):D.length===2&&(Ge(L)&&(H=L||H),Ge(R)&&(U=R||U));const m=y(I)(N),K=U==="vnode"&&Tn(m)&&H?m[0]:m;return H?g(H)(K,U):K},message:y,type:E,interpolate:S,normalize:v,values:mr({},o,d)};return N}let qc=null;function zD(e){qc=e}function YD(e,t,n){qc&&qc.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const XD=qD("function:translate");function qD(e){return t=>qc&&qc.emit(e,t)}const JD={NOT_FOUND_KEY:1,FALLBACK_TO_TRANSLATE:2,CANNOT_FORMAT_NUMBER:3,FALLBACK_TO_NUMBER_FORMAT:4,CANNOT_FORMAT_DATE:5,FALLBACK_TO_DATE_FORMAT:6,EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER:7,__EXTEND_POINT__:8},IS=gt.__EXTEND_POINT__,ta=Ay(IS),zs={INVALID_ARGUMENT:IS,INVALID_DATE_ARGUMENT:ta(),INVALID_ISO_DATE_ARGUMENT:ta(),NOT_SUPPORT_NON_STRING_MESSAGE:ta(),NOT_SUPPORT_LOCALE_PROMISE_VALUE:ta(),NOT_SUPPORT_LOCALE_ASYNC_FUNCTION:ta(),NOT_SUPPORT_LOCALE_TYPE:ta(),__EXTEND_POINT__:ta()};function po(e){return Cl(e,null,void 0)}function Py(e,t){return t.locale!=null?r0(t.locale):r0(e.locale)}let og;function r0(e){if(Ge(e))return e;if(Sn(e)){if(e.resolvedOnce&&og!=null)return og;if(e.constructor.name==="Function"){const t=e();if(JR(t))throw po(zs.NOT_SUPPORT_LOCALE_PROMISE_VALUE);return og=t}else throw po(zs.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION)}else throw po(zs.NOT_SUPPORT_LOCALE_TYPE)}function ZD(e,t,n){return[...new Set([n,...Tn(t)?t:pn(t)?Object.keys(t):Ge(t)?[t]:[n]])]}function OS(e,t,n){const r=Ge(n)?n:vl,i=e;i.__localeChainCache||(i.__localeChainCache=new Map);let a=i.__localeChainCache.get(r);if(!a){a=[];let o=[n];for(;Tn(o);)o=s0(a,o,t);const c=Tn(t)||!Et(t)?t:t.default?t.default:null;o=Ge(c)?[c]:c,Tn(o)&&s0(a,o,!1),i.__localeChainCache.set(r,a)}return a}function s0(e,t,n){let r=!0;for(let i=0;i`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function nM(){return{upper:(e,t)=>t==="text"&&Ge(e)?e.toUpperCase():t==="vnode"&&pn(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>t==="text"&&Ge(e)?e.toLowerCase():t==="vnode"&&pn(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>t==="text"&&Ge(e)?i0(e):t==="vnode"&&pn(e)&&"__v_isVNode"in e?i0(e.children):e}}let AS;function a0(e){AS=e}let kS;function rM(e){kS=e}let PS;function sM(e){PS=e}let NS=null;const oM=e=>{NS=e},iM=()=>NS;let LS=null;const l0=e=>{LS=e},aM=()=>LS;let c0=0;function lM(e={}){const t=Sn(e.onWarn)?e.onWarn:eD,n=Ge(e.version)?e.version:tM,r=Ge(e.locale)||Sn(e.locale)?e.locale:vl,i=Sn(r)?vl:r,a=Tn(e.fallbackLocale)||Et(e.fallbackLocale)||Ge(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:i,o=Et(e.messages)?e.messages:{[i]:{}},c=Et(e.datetimeFormats)?e.datetimeFormats:{[i]:{}},d=Et(e.numberFormats)?e.numberFormats:{[i]:{}},f=mr({},e.modifiers||{},nM()),y=e.pluralRules||{},g=Sn(e.missing)?e.missing:null,v=Wt(e.missingWarn)||Ni(e.missingWarn)?e.missingWarn:!0,S=Wt(e.fallbackWarn)||Ni(e.fallbackWarn)?e.fallbackWarn:!0,E=!!e.fallbackFormat,T=!!e.unresolving,N=Sn(e.postTranslation)?e.postTranslation:null,I=Et(e.processor)?e.processor:null,D=Wt(e.warnHtmlMessage)?e.warnHtmlMessage:!0,L=!!e.escapeParameter,R=Sn(e.messageCompiler)?e.messageCompiler:AS,U=Sn(e.messageResolver)?e.messageResolver:kS||$D,H=Sn(e.localeFallbacker)?e.localeFallbacker:PS||ZD,m=pn(e.fallbackContext)?e.fallbackContext:void 0,K=e,F=pn(K.__datetimeFormatters)?K.__datetimeFormatters:new Map,V=pn(K.__numberFormatters)?K.__numberFormatters:new Map,re=pn(K.__meta)?K.__meta:{};c0++;const ce={version:n,cid:c0,locale:r,fallbackLocale:a,messages:o,modifiers:f,pluralRules:y,missing:g,missingWarn:v,fallbackWarn:S,fallbackFormat:E,unresolving:T,postTranslation:N,processor:I,warnHtmlMessage:D,escapeParameter:L,messageCompiler:R,messageResolver:U,localeFallbacker:H,fallbackContext:m,onWarn:t,__meta:re};return ce.datetimeFormats=c,ce.numberFormats=d,ce.__datetimeFormatters=F,ce.__numberFormatters=V,__INTLIFY_PROD_DEVTOOLS__&&YD(ce,n,re),ce}function Ny(e,t,n,r,i){const{missing:a,onWarn:o}=e;if(a!==null){const c=a(e,n,t,i);return Ge(c)?c:t}else return t}function fc(e,t,n){const r=e;r.__localeChainCache=new Map,e.localeFallbacker(e,n,t)}function ig(e){return n=>cM(n,e)}function cM(e,t){const n=t.b||t.body;if((n.t||n.type)===1){const r=n,i=r.c||r.cases;return e.plural(i.reduce((a,o)=>[...a,u0(e,o)],[]))}else return u0(e,n)}function u0(e,t){const n=t.s||t.static;if(n)return e.type==="text"?n:e.normalize([n]);{const r=(t.i||t.items).reduce((i,a)=>[...i,Qg(e,a)],[]);return e.normalize(r)}}function Qg(e,t){const n=t.t||t.type;switch(n){case 3:const r=t;return r.v||r.value;case 9:const i=t;return i.v||i.value;case 4:const a=t;return e.interpolate(e.named(a.k||a.key));case 5:const o=t;return e.interpolate(e.list(o.i!=null?o.i:o.index));case 6:const c=t,d=c.m||c.modifier;return e.linked(Qg(e,c.k||c.key),d?Qg(e,d):void 0,e.type);case 7:const f=t;return f.v||f.value;case 8:const y=t;return y.v||y.value;default:throw new Error(`unhandled node type on format message part: ${n}`)}}const RS=e=>e;let nl=Object.create(null);const _l=e=>pn(e)&&(e.t===0||e.type===0)&&("b"in e||"body"in e);function DS(e,t={}){let n=!1;const r=t.onError||iD;return t.onError=i=>{n=!0,r(i)},{...AD(e,t),detectError:n}}const uM=(e,t)=>{if(!Ge(e))throw po(zs.NOT_SUPPORT_NON_STRING_MESSAGE);{Wt(t.warnHtmlMessage)&&t.warnHtmlMessage;const r=(t.onCacheKey||RS)(e),i=nl[r];if(i)return i;const{code:a,detectError:o}=DS(e,t),c=new Function(`return ${a}`)();return o?c:nl[r]=c}};function dM(e,t){if(__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&Ge(e)){Wt(t.warnHtmlMessage)&&t.warnHtmlMessage;const r=(t.onCacheKey||RS)(e),i=nl[r];if(i)return i;const{ast:a,detectError:o}=DS(e,{...t,location:!1,jit:!0}),c=ig(a);return o?c:nl[r]=c}else{const n=e.cacheKey;if(n){const r=nl[n];return r||(nl[n]=ig(e))}else return ig(e)}}const d0=()=>"",Os=e=>Sn(e);function f0(e,...t){const{fallbackFormat:n,postTranslation:r,unresolving:i,messageCompiler:a,fallbackLocale:o,messages:c}=e,[d,f]=em(...t),y=Wt(f.missingWarn)?f.missingWarn:e.missingWarn,g=Wt(f.fallbackWarn)?f.fallbackWarn:e.fallbackWarn,v=Wt(f.escapeParameter)?f.escapeParameter:e.escapeParameter,S=!!f.resolvedMessage,E=Ge(f.default)||Wt(f.default)?Wt(f.default)?a?d:()=>d:f.default:n?a?d:()=>d:"",T=n||E!=="",N=Py(e,f);v&&fM(f);let[I,D,L]=S?[d,N,c[N]||{}]:MS(e,d,N,o,g,y),R=I,U=d;if(!S&&!(Ge(R)||_l(R)||Os(R))&&T&&(R=E,U=R),!S&&(!(Ge(R)||_l(R)||Os(R))||!Ge(D)))return i?Sh:d;let H=!1;const m=()=>{H=!0},K=Os(R)?R:$S(e,d,D,R,U,m);if(H)return R;const F=gM(e,D,L,f),V=KD(F),re=hM(e,K,V),ce=r?r(re,d):re;if(__INTLIFY_PROD_DEVTOOLS__){const J={timestamp:Date.now(),key:Ge(d)?d:Os(R)?R.key:"",locale:D||(Os(R)?R.locale:""),format:Ge(R)?R:Os(R)?R.source:"",message:ce};J.meta=mr({},e.__meta,iM()||{}),XD(J)}return ce}function fM(e){Tn(e.list)?e.list=e.list.map(t=>Ge(t)?q_(t):t):pn(e.named)&&Object.keys(e.named).forEach(t=>{Ge(e.named[t])&&(e.named[t]=q_(e.named[t]))})}function MS(e,t,n,r,i,a){const{messages:o,onWarn:c,messageResolver:d,localeFallbacker:f}=e,y=f(e,r,n);let g={},v,S=null;const E="translate";for(let T=0;Tr;return f.locale=n,f.key=t,f}const d=o(r,pM(e,n,i,r,c,a));return d.locale=n,d.key=t,d.source=r,d}function hM(e,t,n){return t(n)}function em(...e){const[t,n,r]=e,i={};if(!Ge(t)&&!rr(t)&&!Os(t)&&!_l(t))throw po(zs.INVALID_ARGUMENT);const a=rr(t)?String(t):(Os(t),t);return rr(n)?i.plural=n:Ge(n)?i.default=n:Et(n)&&!Eh(n)?i.named=n:Tn(n)&&(i.list=n),rr(r)?i.plural=r:Ge(r)?i.default=r:Et(r)&&mr(i,r),[a,i]}function pM(e,t,n,r,i,a){return{locale:t,key:n,warnHtmlMessage:i,onError:o=>{throw a&&a(o),o},onCacheKey:o=>zR(t,n,o)}}function gM(e,t,n,r){const{modifiers:i,pluralRules:a,messageResolver:o,fallbackLocale:c,fallbackWarn:d,missingWarn:f,fallbackContext:y}=e,v={locale:t,modifiers:i,pluralRules:a,messages:S=>{let E=o(n,S);if(E==null&&y){const[,,T]=MS(y,S,t,c,d,f);E=o(T,S)}if(Ge(E)||_l(E)){let T=!1;const I=$S(e,S,t,E,S,()=>{T=!0});return T?d0:I}else return Os(E)?E:d0}};return e.processor&&(v.processor=e.processor),r.list&&(v.list=r.list),r.named&&(v.named=r.named),rr(r.plural)&&(v.pluralIndex=r.plural),v}function h0(e,...t){const{datetimeFormats:n,unresolving:r,fallbackLocale:i,onWarn:a,localeFallbacker:o}=e,{__datetimeFormatters:c}=e,[d,f,y,g]=tm(...t),v=Wt(y.missingWarn)?y.missingWarn:e.missingWarn;Wt(y.fallbackWarn)?y.fallbackWarn:e.fallbackWarn;const S=!!y.part,E=Py(e,y),T=o(e,i,E);if(!Ge(d)||d==="")return new Intl.DateTimeFormat(E,g).format(f);let N={},I,D=null;const L="datetime format";for(let H=0;H{FS.includes(d)?o[d]=n[d]:a[d]=n[d]}),Ge(r)?a.locale=r:Et(r)&&(o=r),Et(i)&&(o=i),[a.key||"",c,a,o]}function p0(e,t,n){const r=e;for(const i in n){const a=`${t}__${i}`;r.__datetimeFormatters.has(a)&&r.__datetimeFormatters.delete(a)}}function g0(e,...t){const{numberFormats:n,unresolving:r,fallbackLocale:i,onWarn:a,localeFallbacker:o}=e,{__numberFormatters:c}=e,[d,f,y,g]=nm(...t),v=Wt(y.missingWarn)?y.missingWarn:e.missingWarn;Wt(y.fallbackWarn)?y.fallbackWarn:e.fallbackWarn;const S=!!y.part,E=Py(e,y),T=o(e,i,E);if(!Ge(d)||d==="")return new Intl.NumberFormat(E,g).format(f);let N={},I,D=null;const L="number format";for(let H=0;H{BS.includes(d)?o[d]=n[d]:a[d]=n[d]}),Ge(r)?a.locale=r:Et(r)&&(o=r),Et(i)&&(o=i),[a.key||"",c,a,o]}function m0(e,t,n){const r=e;for(const i in n){const a=`${t}__${i}`;r.__numberFormatters.has(a)&&r.__numberFormatters.delete(a)}}kD();/*! * vue-i18n v9.9.0 * (c) 2024 kazuya kawaguchi * Released under the MIT License. - */const mM="9.9.0";function yM(){typeof __VUE_I18N_FULL_INSTALL__!="boolean"&&($o().__VUE_I18N_FULL_INSTALL__=!0),typeof __VUE_I18N_LEGACY_API__!="boolean"&&($o().__VUE_I18N_LEGACY_API__=!0),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&($o().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&($o().__INTLIFY_DROP_MESSAGE_COMPILER__=!1),typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&($o().__INTLIFY_PROD_DEVTOOLS__=!1)}const US=JD.__EXTEND_POINT__,gi=Ay(US);gi(),gi(),gi(),gi(),gi(),gi(),gi(),gi();const HS=zs.__EXTEND_POINT__,Kr=Ay(HS),or={UNEXPECTED_RETURN_TYPE:HS,INVALID_ARGUMENT:Kr(),MUST_BE_CALL_SETUP_TOP:Kr(),NOT_INSTALLED:Kr(),NOT_AVAILABLE_IN_LEGACY_MODE:Kr(),REQUIRED_VALUE:Kr(),INVALID_VALUE:Kr(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:Kr(),NOT_INSTALLED_WITH_PROVIDE:Kr(),UNEXPECTED_ERROR:Kr(),NOT_COMPATIBLE_LEGACY_VUE_I18N:Kr(),BRIDGE_SUPPORT_VUE_2_ONLY:Kr(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:Kr(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:Kr(),__EXTEND_POINT__:Kr()};function cr(e,...t){return Cl(e,null,void 0)}const rm=Mi("__translateVNode"),sm=Mi("__datetimeParts"),om=Mi("__numberParts"),jS=Mi("__setPluralRules"),VS=Mi("__injectWithOption"),im=Mi("__dispose");function Jc(e){if(!pn(e))return e;for(const t in e)if(Ff(e,t))if(!t.includes("."))pn(e[t])&&Jc(e[t]);else{const n=t.split("."),r=n.length-1;let i=e,a=!1;for(let o=0;o{if("locale"in c&&"resource"in c){const{locale:d,resource:f}=c;d?(o[d]=o[d]||{},lf(f,o[d])):lf(f,o)}else Ge(c)&&lf(JSON.parse(c),o)}),i==null&&a)for(const c in o)Ff(o,c)&&Jc(o[c]);return o}function WS(e){return e.type}function GS(e,t,n){let r=pn(t.messages)?t.messages:{};"__i18nGlobal"in n&&(r=Th(e.locale.value,{messages:r,__i18n:n.__i18nGlobal}));const i=Object.keys(r);i.length&&i.forEach(a=>{e.mergeLocaleMessage(a,r[a])});{if(pn(t.datetimeFormats)){const a=Object.keys(t.datetimeFormats);a.length&&a.forEach(o=>{e.mergeDateTimeFormat(o,t.datetimeFormats[o])})}if(pn(t.numberFormats)){const a=Object.keys(t.numberFormats);a.length&&a.forEach(o=>{e.mergeNumberFormat(o,t.numberFormats[o])})}}}function y0(e){return mt(Vo,null,e,0)}const b0="__INTLIFY_META__",v0=()=>[],bM=()=>!1;let _0=0;function x0(e){return(t,n,r,i)=>e(n,r,Fr()||void 0,i)}const vM=()=>{const e=Fr();let t=null;return e&&(t=WS(e)[b0])?{[b0]:t}:null};function Ly(e={},t){const{__root:n,__injectWithOption:r}=e,i=n===void 0,a=e.flatJson,o=$f?ft:ih;let c=Wt(e.inheritLocale)?e.inheritLocale:!0;const d=o(n&&c?n.locale.value:Ge(e.locale)?e.locale:vl),f=o(n&&c?n.fallbackLocale.value:Ge(e.fallbackLocale)||Tn(e.fallbackLocale)||Et(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:d.value),y=o(Th(d.value,e)),g=o(Et(e.datetimeFormats)?e.datetimeFormats:{[d.value]:{}}),v=o(Et(e.numberFormats)?e.numberFormats:{[d.value]:{}});let S=n?n.missingWarn:Wt(e.missingWarn)||Ni(e.missingWarn)?e.missingWarn:!0,E=n?n.fallbackWarn:Wt(e.fallbackWarn)||Ni(e.fallbackWarn)?e.fallbackWarn:!0,T=n?n.fallbackRoot:Wt(e.fallbackRoot)?e.fallbackRoot:!0,N=!!e.fallbackFormat,I=wn(e.missing)?e.missing:null,D=wn(e.missing)?x0(e.missing):null,L=wn(e.postTranslation)?e.postTranslation:null,R=n?n.warnHtmlMessage:Wt(e.warnHtmlMessage)?e.warnHtmlMessage:!0,U=!!e.escapeParameter;const H=n?n.modifiers:Et(e.modifiers)?e.modifiers:{};let m=e.pluralRules||n&&n.pluralRules,K;K=(()=>{i&&l0(null);const X={version:mM,locale:d.value,fallbackLocale:f.value,messages:y.value,modifiers:H,pluralRules:m,missing:D===null?void 0:D,missingWarn:S,fallbackWarn:E,fallbackFormat:N,unresolving:!0,postTranslation:L===null?void 0:L,warnHtmlMessage:R,escapeParameter:U,messageResolver:e.messageResolver,messageCompiler:e.messageCompiler,__meta:{framework:"vue"}};X.datetimeFormats=g.value,X.numberFormats=v.value,X.__datetimeFormatters=Et(K)?K.__datetimeFormatters:void 0,X.__numberFormatters=Et(K)?K.__numberFormatters:void 0;const ge=lM(X);return i&&l0(ge),ge})(),fc(K,d.value,f.value);function V(){return[d.value,f.value,y.value,g.value,v.value]}const re=Wn({get:()=>d.value,set:X=>{d.value=X,K.locale=d.value}}),ce=Wn({get:()=>f.value,set:X=>{f.value=X,K.fallbackLocale=f.value,fc(K,d.value,X)}}),J=Wn(()=>y.value),ye=Wn(()=>g.value),Me=Wn(()=>v.value);function fe(){return wn(L)?L:null}function Se(X){L=X,K.postTranslation=X}function we(){return I}function Qe(X){X!==null&&(D=x0(X)),I=X,K.missing=D}const ht=(X,ge,je,qe,se,le)=>{V();let pe;try{__INTLIFY_PROD_DEVTOOLS__,i||(K.fallbackContext=n?aM():void 0),pe=X(K)}finally{__INTLIFY_PROD_DEVTOOLS__,i||(K.fallbackContext=void 0)}if(je!=="translate exists"&&rr(pe)&&pe===wh||je==="translate exists"&&!pe){const[Pe,He]=ge();return n&&T?qe(n):se(Pe)}else{if(le(pe))return pe;throw cr(or.UNEXPECTED_RETURN_TYPE)}};function at(...X){return ht(ge=>Reflect.apply(f0,null,[ge,...X]),()=>em(...X),"translate",ge=>Reflect.apply(ge.t,ge,[...X]),ge=>ge,ge=>Ge(ge))}function vt(...X){const[ge,je,qe]=X;if(qe&&!pn(qe))throw cr(or.INVALID_ARGUMENT);return at(ge,je,mr({resolvedMessage:!0},qe||{}))}function Xt(...X){return ht(ge=>Reflect.apply(h0,null,[ge,...X]),()=>tm(...X),"datetime format",ge=>Reflect.apply(ge.d,ge,[...X]),()=>o0,ge=>Ge(ge))}function tn(...X){return ht(ge=>Reflect.apply(g0,null,[ge,...X]),()=>nm(...X),"number format",ge=>Reflect.apply(ge.n,ge,[...X]),()=>o0,ge=>Ge(ge))}function Ft(X){return X.map(ge=>Ge(ge)||rr(ge)||Wt(ge)?y0(String(ge)):ge)}const Lt={normalize:Ft,interpolate:X=>X,type:"vnode"};function Qt(...X){return ht(ge=>{let je;const qe=ge;try{qe.processor=Lt,je=Reflect.apply(f0,null,[qe,...X])}finally{qe.processor=null}return je},()=>em(...X),"translate",ge=>ge[rm](...X),ge=>[y0(ge)],ge=>Tn(ge))}function Kt(...X){return ht(ge=>Reflect.apply(g0,null,[ge,...X]),()=>nm(...X),"number format",ge=>ge[om](...X),v0,ge=>Ge(ge)||Tn(ge))}function Rt(...X){return ht(ge=>Reflect.apply(h0,null,[ge,...X]),()=>tm(...X),"datetime format",ge=>ge[sm](...X),v0,ge=>Ge(ge)||Tn(ge))}function yn(X){m=X,K.pluralRules=m}function an(X,ge){return ht(()=>{if(!X)return!1;const je=Ge(ge)?ge:d.value,qe=G(je),se=K.messageResolver(qe,X);return _l(se)||Os(se)||Ge(se)},()=>[X],"translate exists",je=>Reflect.apply(je.te,je,[X,ge]),bM,je=>Wt(je))}function A(X){let ge=null;const je=OS(K,f.value,d.value);for(let qe=0;qe{c&&(d.value=X,K.locale=X,fc(K,d.value,f.value))}),Ns(n.fallbackLocale,X=>{c&&(f.value=X,K.fallbackLocale=X,fc(K,d.value,f.value))}));const Be={id:_0,locale:re,fallbackLocale:ce,get inheritLocale(){return c},set inheritLocale(X){c=X,X&&n&&(d.value=n.locale.value,f.value=n.fallbackLocale.value,fc(K,d.value,f.value))},get availableLocales(){return Object.keys(y.value).sort()},messages:J,get modifiers(){return H},get pluralRules(){return m||{}},get isGlobal(){return i},get missingWarn(){return S},set missingWarn(X){S=X,K.missingWarn=S},get fallbackWarn(){return E},set fallbackWarn(X){E=X,K.fallbackWarn=E},get fallbackRoot(){return T},set fallbackRoot(X){T=X},get fallbackFormat(){return N},set fallbackFormat(X){N=X,K.fallbackFormat=N},get warnHtmlMessage(){return R},set warnHtmlMessage(X){R=X,K.warnHtmlMessage=X},get escapeParameter(){return U},set escapeParameter(X){U=X,K.escapeParameter=X},t:at,getLocaleMessage:G,setLocaleMessage:oe,mergeLocaleMessage:te,getPostTranslationHandler:fe,setPostTranslationHandler:Se,getMissingHandler:we,setMissingHandler:Qe,[jS]:yn};return Be.datetimeFormats=ye,Be.numberFormats=Me,Be.rt=vt,Be.te=an,Be.tm=C,Be.d=Xt,Be.n=tn,Be.getDateTimeFormat=be,Be.setDateTimeFormat=$e,Be.mergeDateTimeFormat=Ce,Be.getNumberFormat=Le,Be.setNumberFormat=Te,Be.mergeNumberFormat=Fe,Be[VS]=r,Be[rm]=Qt,Be[sm]=Rt,Be[om]=Kt,Be}function _M(e){const t=Ge(e.locale)?e.locale:vl,n=Ge(e.fallbackLocale)||Tn(e.fallbackLocale)||Et(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:t,r=wn(e.missing)?e.missing:void 0,i=Wt(e.silentTranslationWarn)||Ni(e.silentTranslationWarn)?!e.silentTranslationWarn:!0,a=Wt(e.silentFallbackWarn)||Ni(e.silentFallbackWarn)?!e.silentFallbackWarn:!0,o=Wt(e.fallbackRoot)?e.fallbackRoot:!0,c=!!e.formatFallbackMessages,d=Et(e.modifiers)?e.modifiers:{},f=e.pluralizationRules,y=wn(e.postTranslation)?e.postTranslation:void 0,g=Ge(e.warnHtmlInMessage)?e.warnHtmlInMessage!=="off":!0,v=!!e.escapeParameterHtml,S=Wt(e.sync)?e.sync:!0;let E=e.messages;if(Et(e.sharedMessages)){const U=e.sharedMessages;E=Object.keys(U).reduce((m,K)=>{const F=m[K]||(m[K]={});return mr(F,U[K]),m},E||{})}const{__i18n:T,__root:N,__injectWithOption:I}=e,D=e.datetimeFormats,L=e.numberFormats,R=e.flatJson;return{locale:t,fallbackLocale:n,messages:E,flatJson:R,datetimeFormats:D,numberFormats:L,missing:r,missingWarn:i,fallbackWarn:a,fallbackRoot:o,fallbackFormat:c,modifiers:d,pluralRules:f,postTranslation:y,warnHtmlMessage:g,escapeParameter:v,messageResolver:e.messageResolver,inheritLocale:S,__i18n:T,__root:N,__injectWithOption:I}}function am(e={},t){{const n=Ly(_M(e)),{__extender:r}=e,i={id:n.id,get locale(){return n.locale.value},set locale(a){n.locale.value=a},get fallbackLocale(){return n.fallbackLocale.value},set fallbackLocale(a){n.fallbackLocale.value=a},get messages(){return n.messages.value},get datetimeFormats(){return n.datetimeFormats.value},get numberFormats(){return n.numberFormats.value},get availableLocales(){return n.availableLocales},get formatter(){return{interpolate(){return[]}}},set formatter(a){},get missing(){return n.getMissingHandler()},set missing(a){n.setMissingHandler(a)},get silentTranslationWarn(){return Wt(n.missingWarn)?!n.missingWarn:n.missingWarn},set silentTranslationWarn(a){n.missingWarn=Wt(a)?!a:a},get silentFallbackWarn(){return Wt(n.fallbackWarn)?!n.fallbackWarn:n.fallbackWarn},set silentFallbackWarn(a){n.fallbackWarn=Wt(a)?!a:a},get modifiers(){return n.modifiers},get formatFallbackMessages(){return n.fallbackFormat},set formatFallbackMessages(a){n.fallbackFormat=a},get postTranslation(){return n.getPostTranslationHandler()},set postTranslation(a){n.setPostTranslationHandler(a)},get sync(){return n.inheritLocale},set sync(a){n.inheritLocale=a},get warnHtmlInMessage(){return n.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(a){n.warnHtmlMessage=a!=="off"},get escapeParameterHtml(){return n.escapeParameter},set escapeParameterHtml(a){n.escapeParameter=a},get preserveDirectiveContent(){return!0},set preserveDirectiveContent(a){},get pluralizationRules(){return n.pluralRules||{}},__composer:n,t(...a){const[o,c,d]=a,f={};let y=null,g=null;if(!Ge(o))throw cr(or.INVALID_ARGUMENT);const v=o;return Ge(c)?f.locale=c:Tn(c)?y=c:Et(c)&&(g=c),Tn(d)?y=d:Et(d)&&(g=d),Reflect.apply(n.t,n,[v,y||g||{},f])},rt(...a){return Reflect.apply(n.rt,n,[...a])},tc(...a){const[o,c,d]=a,f={plural:1};let y=null,g=null;if(!Ge(o))throw cr(or.INVALID_ARGUMENT);const v=o;return Ge(c)?f.locale=c:rr(c)?f.plural=c:Tn(c)?y=c:Et(c)&&(g=c),Ge(d)?f.locale=d:Tn(d)?y=d:Et(d)&&(g=d),Reflect.apply(n.t,n,[v,y||g||{},f])},te(a,o){return n.te(a,o)},tm(a){return n.tm(a)},getLocaleMessage(a){return n.getLocaleMessage(a)},setLocaleMessage(a,o){n.setLocaleMessage(a,o)},mergeLocaleMessage(a,o){n.mergeLocaleMessage(a,o)},d(...a){return Reflect.apply(n.d,n,[...a])},getDateTimeFormat(a){return n.getDateTimeFormat(a)},setDateTimeFormat(a,o){n.setDateTimeFormat(a,o)},mergeDateTimeFormat(a,o){n.mergeDateTimeFormat(a,o)},n(...a){return Reflect.apply(n.n,n,[...a])},getNumberFormat(a){return n.getNumberFormat(a)},setNumberFormat(a,o){n.setNumberFormat(a,o)},mergeNumberFormat(a,o){n.mergeNumberFormat(a,o)},getChoiceIndex(a,o){return-1}};return i.__extender=r,i}}const Ry={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}};function xM({slots:e},t){return t.length===1&&t[0]==="default"?(e.default?e.default():[]).reduce((r,i)=>[...r,...i.type===Gt?i.children:[i]],[]):t.reduce((n,r)=>{const i=e[r];return i&&(n[r]=i()),n},{})}function KS(e){return Gt}const EM=Oa({name:"i18n-t",props:mr({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>rr(e)||!isNaN(e)}},Ry),setup(e,t){const{slots:n,attrs:r}=t,i=e.i18n||Ko({useScope:e.scope,__useComponent:!0});return()=>{const a=Object.keys(n).filter(g=>g!=="_"),o={};e.locale&&(o.locale=e.locale),e.plural!==void 0&&(o.plural=Ge(e.plural)?+e.plural:e.plural);const c=xM(t,a),d=i[rm](e.keypath,c,o),f=mr({},r),y=Ge(e.tag)||pn(e.tag)?e.tag:KS();return uu(y,f,d)}}}),E0=EM;function SM(e){return Tn(e)&&!Ge(e[0])}function zS(e,t,n,r){const{slots:i,attrs:a}=t;return()=>{const o={part:!0};let c={};e.locale&&(o.locale=e.locale),Ge(e.format)?o.key=e.format:pn(e.format)&&(Ge(e.format.key)&&(o.key=e.format.key),c=Object.keys(e.format).reduce((v,S)=>n.includes(S)?mr({},v,{[S]:e.format[S]}):v,{}));const d=r(e.value,o,c);let f=[o.key];Tn(d)?f=d.map((v,S)=>{const E=i[v.type],T=E?E({[v.type]:v.value,index:S,parts:d}):[v.value];return SM(T)&&(T[0].key=`${v.type}-${S}`),T}):Ge(d)&&(f=[d]);const y=mr({},a),g=Ge(e.tag)||pn(e.tag)?e.tag:KS();return uu(g,y,f)}}const wM=Oa({name:"i18n-n",props:mr({value:{type:Number,required:!0},format:{type:[String,Object]}},Ry),setup(e,t){const n=e.i18n||Ko({useScope:"parent",__useComponent:!0});return zS(e,t,BS,(...r)=>n[om](...r))}}),S0=wM,TM=Oa({name:"i18n-d",props:mr({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},Ry),setup(e,t){const n=e.i18n||Ko({useScope:"parent",__useComponent:!0});return zS(e,t,FS,(...r)=>n[sm](...r))}}),w0=TM;function CM(e,t){const n=e;if(e.mode==="composition")return n.__getInstance(t)||e.global;{const r=n.__getInstance(t);return r!=null?r.__composer:e.global.__composer}}function IM(e){const t=o=>{const{instance:c,modifiers:d,value:f}=o;if(!c||!c.$)throw cr(or.UNEXPECTED_ERROR);const y=CM(e,c.$),g=T0(f);return[Reflect.apply(y.t,y,[...C0(g)]),y]};return{created:(o,c)=>{const[d,f]=t(c);$f&&e.global===f&&(o.__i18nWatcher=Ns(f.locale,()=>{c.instance&&c.instance.$forceUpdate()})),o.__composer=f,o.textContent=d},unmounted:o=>{$f&&o.__i18nWatcher&&(o.__i18nWatcher(),o.__i18nWatcher=void 0,delete o.__i18nWatcher),o.__composer&&(o.__composer=void 0,delete o.__composer)},beforeUpdate:(o,{value:c})=>{if(o.__composer){const d=o.__composer,f=T0(c);o.textContent=Reflect.apply(d.t,d,[...C0(f)])}},getSSRProps:o=>{const[c]=t(o);return{textContent:c}}}}function T0(e){if(Ge(e))return{path:e};if(Et(e)){if(!("path"in e))throw cr(or.REQUIRED_VALUE,"path");return e}else throw cr(or.INVALID_VALUE)}function C0(e){const{path:t,locale:n,args:r,choice:i,plural:a}=e,o={},c=r||{};return Ge(n)&&(o.locale=n),rr(i)&&(o.plural=i),rr(a)&&(o.plural=a),[t,c,o]}function OM(e,t,...n){const r=Et(n[0])?n[0]:{},i=!!r.useI18nComponentName;(Wt(r.globalInstall)?r.globalInstall:!0)&&([i?"i18n":E0.name,"I18nT"].forEach(o=>e.component(o,E0)),[S0.name,"I18nN"].forEach(o=>e.component(o,S0)),[w0.name,"I18nD"].forEach(o=>e.component(o,w0))),e.directive("t",IM(t))}function AM(e,t,n){return{beforeCreate(){const r=Fr();if(!r)throw cr(or.UNEXPECTED_ERROR);const i=this.$options;if(i.i18n){const a=i.i18n;if(i.__i18n&&(a.__i18n=i.__i18n),a.__root=t,this===this.$root)this.$i18n=I0(e,a);else{a.__injectWithOption=!0,a.__extender=n.__vueI18nExtend,this.$i18n=am(a);const o=this.$i18n;o.__extender&&(o.__disposer=o.__extender(this.$i18n))}}else if(i.__i18n)if(this===this.$root)this.$i18n=I0(e,i);else{this.$i18n=am({__i18n:i.__i18n,__injectWithOption:!0,__extender:n.__vueI18nExtend,__root:t});const a=this.$i18n;a.__extender&&(a.__disposer=a.__extender(this.$i18n))}else this.$i18n=e;i.__i18nGlobal&&GS(t,i,i),this.$t=(...a)=>this.$i18n.t(...a),this.$rt=(...a)=>this.$i18n.rt(...a),this.$tc=(...a)=>this.$i18n.tc(...a),this.$te=(a,o)=>this.$i18n.te(a,o),this.$d=(...a)=>this.$i18n.d(...a),this.$n=(...a)=>this.$i18n.n(...a),this.$tm=a=>this.$i18n.tm(a),n.__setInstance(r,this.$i18n)},mounted(){},unmounted(){const r=Fr();if(!r)throw cr(or.UNEXPECTED_ERROR);const i=this.$i18n;delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,i.__disposer&&(i.__disposer(),delete i.__disposer,delete i.__extender),n.__deleteInstance(r),delete this.$i18n}}}function I0(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[jS](t.pluralizationRules||e.pluralizationRules);const n=Th(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach(r=>e.mergeLocaleMessage(r,n[r])),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach(r=>e.mergeDateTimeFormat(r,t.datetimeFormats[r])),t.numberFormats&&Object.keys(t.numberFormats).forEach(r=>e.mergeNumberFormat(r,t.numberFormats[r])),e}const kM=Mi("global-vue-i18n");function PM(e={},t){const n=__VUE_I18N_LEGACY_API__&&Wt(e.legacy)?e.legacy:__VUE_I18N_LEGACY_API__,r=Wt(e.globalInjection)?e.globalInjection:!0,i=__VUE_I18N_LEGACY_API__&&n?!!e.allowComposition:!0,a=new Map,[o,c]=NM(e,n),d=Mi("");function f(v){return a.get(v)||null}function y(v,S){a.set(v,S)}function g(v){a.delete(v)}{const v={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return i},async install(S,...E){if(S.__VUE_I18N_SYMBOL__=d,S.provide(S.__VUE_I18N_SYMBOL__,v),Et(E[0])){const I=E[0];v.__composerExtend=I.__composerExtend,v.__vueI18nExtend=I.__vueI18nExtend}let T=null;!n&&r&&(T=HM(S,v.global)),__VUE_I18N_FULL_INSTALL__&&OM(S,v,...E),__VUE_I18N_LEGACY_API__&&n&&S.mixin(AM(c,c.__composer,v));const N=S.unmount;S.unmount=()=>{T&&T(),v.dispose(),N()}},get global(){return c},dispose(){o.stop()},__instances:a,__getInstance:f,__setInstance:y,__deleteInstance:g};return v}}function Ko(e={}){const t=Fr();if(t==null)throw cr(or.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&t.appContext.app!=null&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw cr(or.NOT_INSTALLED);const n=LM(t),r=DM(n),i=WS(t),a=RM(e,i);if(__VUE_I18N_LEGACY_API__&&n.mode==="legacy"&&!e.__useComponent){if(!n.allowComposition)throw cr(or.NOT_AVAILABLE_IN_LEGACY_MODE);return BM(t,a,r,e)}if(a==="global")return GS(r,e,i),r;if(a==="parent"){let d=MM(n,t,e.__useComponent);return d==null&&(d=r),d}const o=n;let c=o.__getInstance(t);if(c==null){const d=mr({},e);"__i18n"in i&&(d.__i18n=i.__i18n),r&&(d.__root=r),c=Ly(d),o.__composerExtend&&(c[im]=o.__composerExtend(c)),FM(o,t,c),o.__setInstance(t,c)}return c}function NM(e,t,n){const r=Sm();{const i=__VUE_I18N_LEGACY_API__&&t?r.run(()=>am(e)):r.run(()=>Ly(e));if(i==null)throw cr(or.UNEXPECTED_ERROR);return[r,i]}}function LM(e){{const t=En(e.isCE?kM:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw cr(e.isCE?or.NOT_INSTALLED_WITH_PROVIDE:or.UNEXPECTED_ERROR);return t}}function RM(e,t){return Sh(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function DM(e){return e.mode==="composition"?e.global:e.global.__composer}function MM(e,t,n=!1){let r=null;const i=t.root;let a=$M(t,n);for(;a!=null;){const o=e;if(e.mode==="composition")r=o.__getInstance(a);else if(__VUE_I18N_LEGACY_API__){const c=o.__getInstance(a);c!=null&&(r=c.__composer,n&&r&&!r[VS]&&(r=null))}if(r!=null||i===a)break;a=a.parent}return r}function $M(e,t=!1){return e==null?null:t&&e.vnode.ctx||e.parent}function FM(e,t,n){Aa(()=>{},t),Tl(()=>{const r=n;e.__deleteInstance(t);const i=r[im];i&&(i(),delete r[im])},t)}function BM(e,t,n,r={}){const i=t==="local",a=ih(null);if(i&&e.proxy&&!(e.proxy.$options.i18n||e.proxy.$options.__i18n))throw cr(or.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);const o=Wt(r.inheritLocale)?r.inheritLocale:!Ge(r.locale),c=ft(!i||o?n.locale.value:Ge(r.locale)?r.locale:vl),d=ft(!i||o?n.fallbackLocale.value:Ge(r.fallbackLocale)||Tn(r.fallbackLocale)||Et(r.fallbackLocale)||r.fallbackLocale===!1?r.fallbackLocale:c.value),f=ft(Th(c.value,r)),y=ft(Et(r.datetimeFormats)?r.datetimeFormats:{[c.value]:{}}),g=ft(Et(r.numberFormats)?r.numberFormats:{[c.value]:{}}),v=i?n.missingWarn:Wt(r.missingWarn)||Ni(r.missingWarn)?r.missingWarn:!0,S=i?n.fallbackWarn:Wt(r.fallbackWarn)||Ni(r.fallbackWarn)?r.fallbackWarn:!0,E=i?n.fallbackRoot:Wt(r.fallbackRoot)?r.fallbackRoot:!0,T=!!r.fallbackFormat,N=wn(r.missing)?r.missing:null,I=wn(r.postTranslation)?r.postTranslation:null,D=i?n.warnHtmlMessage:Wt(r.warnHtmlMessage)?r.warnHtmlMessage:!0,L=!!r.escapeParameter,R=i?n.modifiers:Et(r.modifiers)?r.modifiers:{},U=r.pluralRules||i&&n.pluralRules;function H(){return[c.value,d.value,f.value,y.value,g.value]}const m=Wn({get:()=>a.value?a.value.locale.value:c.value,set:C=>{a.value&&(a.value.locale.value=C),c.value=C}}),K=Wn({get:()=>a.value?a.value.fallbackLocale.value:d.value,set:C=>{a.value&&(a.value.fallbackLocale.value=C),d.value=C}}),F=Wn(()=>a.value?a.value.messages.value:f.value),V=Wn(()=>y.value),re=Wn(()=>g.value);function ce(){return a.value?a.value.getPostTranslationHandler():I}function J(C){a.value&&a.value.setPostTranslationHandler(C)}function ye(){return a.value?a.value.getMissingHandler():N}function Me(C){a.value&&a.value.setMissingHandler(C)}function fe(C){return H(),C()}function Se(...C){return a.value?fe(()=>Reflect.apply(a.value.t,null,[...C])):fe(()=>"")}function we(...C){return a.value?Reflect.apply(a.value.rt,null,[...C]):""}function Qe(...C){return a.value?fe(()=>Reflect.apply(a.value.d,null,[...C])):fe(()=>"")}function ht(...C){return a.value?fe(()=>Reflect.apply(a.value.n,null,[...C])):fe(()=>"")}function at(C){return a.value?a.value.tm(C):{}}function vt(C,G){return a.value?a.value.te(C,G):!1}function Xt(C){return a.value?a.value.getLocaleMessage(C):{}}function tn(C,G){a.value&&(a.value.setLocaleMessage(C,G),f.value[C]=G)}function Ft(C,G){a.value&&a.value.mergeLocaleMessage(C,G)}function yt(C){return a.value?a.value.getDateTimeFormat(C):{}}function Lt(C,G){a.value&&(a.value.setDateTimeFormat(C,G),y.value[C]=G)}function Qt(C,G){a.value&&a.value.mergeDateTimeFormat(C,G)}function Kt(C){return a.value?a.value.getNumberFormat(C):{}}function Rt(C,G){a.value&&(a.value.setNumberFormat(C,G),g.value[C]=G)}function yn(C,G){a.value&&a.value.mergeNumberFormat(C,G)}const an={get id(){return a.value?a.value.id:-1},locale:m,fallbackLocale:K,messages:F,datetimeFormats:V,numberFormats:re,get inheritLocale(){return a.value?a.value.inheritLocale:o},set inheritLocale(C){a.value&&(a.value.inheritLocale=C)},get availableLocales(){return a.value?a.value.availableLocales:Object.keys(f.value)},get modifiers(){return a.value?a.value.modifiers:R},get pluralRules(){return a.value?a.value.pluralRules:U},get isGlobal(){return a.value?a.value.isGlobal:!1},get missingWarn(){return a.value?a.value.missingWarn:v},set missingWarn(C){a.value&&(a.value.missingWarn=C)},get fallbackWarn(){return a.value?a.value.fallbackWarn:S},set fallbackWarn(C){a.value&&(a.value.missingWarn=C)},get fallbackRoot(){return a.value?a.value.fallbackRoot:E},set fallbackRoot(C){a.value&&(a.value.fallbackRoot=C)},get fallbackFormat(){return a.value?a.value.fallbackFormat:T},set fallbackFormat(C){a.value&&(a.value.fallbackFormat=C)},get warnHtmlMessage(){return a.value?a.value.warnHtmlMessage:D},set warnHtmlMessage(C){a.value&&(a.value.warnHtmlMessage=C)},get escapeParameter(){return a.value?a.value.escapeParameter:L},set escapeParameter(C){a.value&&(a.value.escapeParameter=C)},t:Se,getPostTranslationHandler:ce,setPostTranslationHandler:J,getMissingHandler:ye,setMissingHandler:Me,rt:we,d:Qe,n:ht,tm:at,te:vt,getLocaleMessage:Xt,setLocaleMessage:tn,mergeLocaleMessage:Ft,getDateTimeFormat:yt,setDateTimeFormat:Lt,mergeDateTimeFormat:Qt,getNumberFormat:Kt,setNumberFormat:Rt,mergeNumberFormat:yn};function A(C){C.locale.value=c.value,C.fallbackLocale.value=d.value,Object.keys(f.value).forEach(G=>{C.mergeLocaleMessage(G,f.value[G])}),Object.keys(y.value).forEach(G=>{C.mergeDateTimeFormat(G,y.value[G])}),Object.keys(g.value).forEach(G=>{C.mergeNumberFormat(G,g.value[G])}),C.escapeParameter=L,C.fallbackFormat=T,C.fallbackRoot=E,C.fallbackWarn=S,C.missingWarn=v,C.warnHtmlMessage=D}return ph(()=>{if(e.proxy==null||e.proxy.$i18n==null)throw cr(or.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);const C=a.value=e.proxy.$i18n.__composer;t==="global"?(c.value=C.locale.value,d.value=C.fallbackLocale.value,f.value=C.messages.value,y.value=C.datetimeFormats.value,g.value=C.numberFormats.value):i&&A(C)}),an}const UM=["locale","fallbackLocale","availableLocales"],O0=["t","rt","d","n","tm","te"];function HM(e,t){const n=Object.create(null);return UM.forEach(i=>{const a=Object.getOwnPropertyDescriptor(t,i);if(!a)throw cr(or.UNEXPECTED_ERROR);const o=ir(a.value)?{get(){return a.value.value},set(c){a.value.value=c}}:{get(){return a.get&&a.get()}};Object.defineProperty(n,i,o)}),e.config.globalProperties.$i18n=n,O0.forEach(i=>{const a=Object.getOwnPropertyDescriptor(t,i);if(!a||!a.value)throw cr(or.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${i}`,a)}),()=>{delete e.config.globalProperties.$i18n,O0.forEach(i=>{delete e.config.globalProperties[`$${i}`]})}}yM();__INTLIFY_JIT_COMPILATION__?a0(dM):a0(uM);rM(FD);sM(OS);if(__INTLIFY_PROD_DEVTOOLS__){const e=$o();e.__INTLIFY__=!0,zD(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}const jM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"An error occurred while processing the transaction: Unable to pay more with giftcards","buckaroo.response.invalid_parameter_originaltransaction":"Invalid parameter originaltransaction.","dashboard.channel_selector.select_channel":"Select Channel","dashboard.channel_selector.select_channel_label":"Each channel has its configuration settings.","dashboard.config.financial_warning":"Customer Financial Warning","dashboard.config.financial_warning.label":"Due to the regulations for BNPL methods in The Netherlands you’ll have to warn customers about using a BNPL plan because it can be easy to get into debt. When enabled a warning will be showed in the checkout. Please note that this setting only applies for customers in The Netherlands.","dashboard.config.financial_warning.options.disabled":"Disabled","dashboard.config.financial_warning.options.enabled":"Enabled","dashboard.config.showIssuers":"Show Issuer Selection in the Checkout","dashboard.config.showIssuers.disabled":"Disable","dashboard.config.showIssuers.enabled":"Enable","dashboard.config.showIssuers.label":`When the "Disable" option is selected, the issuer selection for iDEAL will not be displayed in the checkout. Instead, customers will be redirected to a separate page where they can choose their iDEAL issuer (i.e., their bank). On the other hand, selecting the "Enable" option will display the issuer selection directly in the checkout. It's important to note that enabling this option will incur additional costs from Buckaroo, estimated at around €0.002 for each transaction. + */const mM="9.9.0";function yM(){typeof __VUE_I18N_FULL_INSTALL__!="boolean"&&($o().__VUE_I18N_FULL_INSTALL__=!0),typeof __VUE_I18N_LEGACY_API__!="boolean"&&($o().__VUE_I18N_LEGACY_API__=!0),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&($o().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&($o().__INTLIFY_DROP_MESSAGE_COMPILER__=!1),typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&($o().__INTLIFY_PROD_DEVTOOLS__=!1)}const US=JD.__EXTEND_POINT__,gi=Ay(US);gi(),gi(),gi(),gi(),gi(),gi(),gi(),gi();const HS=zs.__EXTEND_POINT__,Kr=Ay(HS),or={UNEXPECTED_RETURN_TYPE:HS,INVALID_ARGUMENT:Kr(),MUST_BE_CALL_SETUP_TOP:Kr(),NOT_INSTALLED:Kr(),NOT_AVAILABLE_IN_LEGACY_MODE:Kr(),REQUIRED_VALUE:Kr(),INVALID_VALUE:Kr(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:Kr(),NOT_INSTALLED_WITH_PROVIDE:Kr(),UNEXPECTED_ERROR:Kr(),NOT_COMPATIBLE_LEGACY_VUE_I18N:Kr(),BRIDGE_SUPPORT_VUE_2_ONLY:Kr(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:Kr(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:Kr(),__EXTEND_POINT__:Kr()};function cr(e,...t){return Cl(e,null,void 0)}const rm=Mi("__translateVNode"),sm=Mi("__datetimeParts"),om=Mi("__numberParts"),jS=Mi("__setPluralRules"),VS=Mi("__injectWithOption"),im=Mi("__dispose");function Jc(e){if(!pn(e))return e;for(const t in e)if($f(e,t))if(!t.includes("."))pn(e[t])&&Jc(e[t]);else{const n=t.split("."),r=n.length-1;let i=e,a=!1;for(let o=0;o{if("locale"in c&&"resource"in c){const{locale:d,resource:f}=c;d?(o[d]=o[d]||{},af(f,o[d])):af(f,o)}else Ge(c)&&af(JSON.parse(c),o)}),i==null&&a)for(const c in o)$f(o,c)&&Jc(o[c]);return o}function WS(e){return e.type}function GS(e,t,n){let r=pn(t.messages)?t.messages:{};"__i18nGlobal"in n&&(r=wh(e.locale.value,{messages:r,__i18n:n.__i18nGlobal}));const i=Object.keys(r);i.length&&i.forEach(a=>{e.mergeLocaleMessage(a,r[a])});{if(pn(t.datetimeFormats)){const a=Object.keys(t.datetimeFormats);a.length&&a.forEach(o=>{e.mergeDateTimeFormat(o,t.datetimeFormats[o])})}if(pn(t.numberFormats)){const a=Object.keys(t.numberFormats);a.length&&a.forEach(o=>{e.mergeNumberFormat(o,t.numberFormats[o])})}}}function y0(e){return mt(Vo,null,e,0)}const b0="__INTLIFY_META__",v0=()=>[],bM=()=>!1;let _0=0;function x0(e){return(t,n,r,i)=>e(n,r,Fr()||void 0,i)}const vM=()=>{const e=Fr();let t=null;return e&&(t=WS(e)[b0])?{[b0]:t}:null};function Ly(e={},t){const{__root:n,__injectWithOption:r}=e,i=n===void 0,a=e.flatJson,o=Mf?ft:oh;let c=Wt(e.inheritLocale)?e.inheritLocale:!0;const d=o(n&&c?n.locale.value:Ge(e.locale)?e.locale:vl),f=o(n&&c?n.fallbackLocale.value:Ge(e.fallbackLocale)||Tn(e.fallbackLocale)||Et(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:d.value),y=o(wh(d.value,e)),g=o(Et(e.datetimeFormats)?e.datetimeFormats:{[d.value]:{}}),v=o(Et(e.numberFormats)?e.numberFormats:{[d.value]:{}});let S=n?n.missingWarn:Wt(e.missingWarn)||Ni(e.missingWarn)?e.missingWarn:!0,E=n?n.fallbackWarn:Wt(e.fallbackWarn)||Ni(e.fallbackWarn)?e.fallbackWarn:!0,T=n?n.fallbackRoot:Wt(e.fallbackRoot)?e.fallbackRoot:!0,N=!!e.fallbackFormat,I=Sn(e.missing)?e.missing:null,D=Sn(e.missing)?x0(e.missing):null,L=Sn(e.postTranslation)?e.postTranslation:null,R=n?n.warnHtmlMessage:Wt(e.warnHtmlMessage)?e.warnHtmlMessage:!0,U=!!e.escapeParameter;const H=n?n.modifiers:Et(e.modifiers)?e.modifiers:{};let m=e.pluralRules||n&&n.pluralRules,K;K=(()=>{i&&l0(null);const X={version:mM,locale:d.value,fallbackLocale:f.value,messages:y.value,modifiers:H,pluralRules:m,missing:D===null?void 0:D,missingWarn:S,fallbackWarn:E,fallbackFormat:N,unresolving:!0,postTranslation:L===null?void 0:L,warnHtmlMessage:R,escapeParameter:U,messageResolver:e.messageResolver,messageCompiler:e.messageCompiler,__meta:{framework:"vue"}};X.datetimeFormats=g.value,X.numberFormats=v.value,X.__datetimeFormatters=Et(K)?K.__datetimeFormatters:void 0,X.__numberFormatters=Et(K)?K.__numberFormatters:void 0;const ge=lM(X);return i&&l0(ge),ge})(),fc(K,d.value,f.value);function V(){return[d.value,f.value,y.value,g.value,v.value]}const re=Wn({get:()=>d.value,set:X=>{d.value=X,K.locale=d.value}}),ce=Wn({get:()=>f.value,set:X=>{f.value=X,K.fallbackLocale=f.value,fc(K,d.value,X)}}),J=Wn(()=>y.value),ye=Wn(()=>g.value),Me=Wn(()=>v.value);function fe(){return Sn(L)?L:null}function Se(X){L=X,K.postTranslation=X}function we(){return I}function Qe(X){X!==null&&(D=x0(X)),I=X,K.missing=D}const ht=(X,ge,je,qe,se,le)=>{V();let pe;try{__INTLIFY_PROD_DEVTOOLS__,i||(K.fallbackContext=n?aM():void 0),pe=X(K)}finally{__INTLIFY_PROD_DEVTOOLS__,i||(K.fallbackContext=void 0)}if(je!=="translate exists"&&rr(pe)&&pe===Sh||je==="translate exists"&&!pe){const[Pe,He]=ge();return n&&T?qe(n):se(Pe)}else{if(le(pe))return pe;throw cr(or.UNEXPECTED_RETURN_TYPE)}};function at(...X){return ht(ge=>Reflect.apply(f0,null,[ge,...X]),()=>em(...X),"translate",ge=>Reflect.apply(ge.t,ge,[...X]),ge=>ge,ge=>Ge(ge))}function vt(...X){const[ge,je,qe]=X;if(qe&&!pn(qe))throw cr(or.INVALID_ARGUMENT);return at(ge,je,mr({resolvedMessage:!0},qe||{}))}function Xt(...X){return ht(ge=>Reflect.apply(h0,null,[ge,...X]),()=>tm(...X),"datetime format",ge=>Reflect.apply(ge.d,ge,[...X]),()=>o0,ge=>Ge(ge))}function tn(...X){return ht(ge=>Reflect.apply(g0,null,[ge,...X]),()=>nm(...X),"number format",ge=>Reflect.apply(ge.n,ge,[...X]),()=>o0,ge=>Ge(ge))}function $t(X){return X.map(ge=>Ge(ge)||rr(ge)||Wt(ge)?y0(String(ge)):ge)}const Lt={normalize:$t,interpolate:X=>X,type:"vnode"};function Qt(...X){return ht(ge=>{let je;const qe=ge;try{qe.processor=Lt,je=Reflect.apply(f0,null,[qe,...X])}finally{qe.processor=null}return je},()=>em(...X),"translate",ge=>ge[rm](...X),ge=>[y0(ge)],ge=>Tn(ge))}function Kt(...X){return ht(ge=>Reflect.apply(g0,null,[ge,...X]),()=>nm(...X),"number format",ge=>ge[om](...X),v0,ge=>Ge(ge)||Tn(ge))}function Rt(...X){return ht(ge=>Reflect.apply(h0,null,[ge,...X]),()=>tm(...X),"datetime format",ge=>ge[sm](...X),v0,ge=>Ge(ge)||Tn(ge))}function yn(X){m=X,K.pluralRules=m}function an(X,ge){return ht(()=>{if(!X)return!1;const je=Ge(ge)?ge:d.value,qe=G(je),se=K.messageResolver(qe,X);return _l(se)||Os(se)||Ge(se)},()=>[X],"translate exists",je=>Reflect.apply(je.te,je,[X,ge]),bM,je=>Wt(je))}function A(X){let ge=null;const je=OS(K,f.value,d.value);for(let qe=0;qe{c&&(d.value=X,K.locale=X,fc(K,d.value,f.value))}),Ns(n.fallbackLocale,X=>{c&&(f.value=X,K.fallbackLocale=X,fc(K,d.value,f.value))}));const Be={id:_0,locale:re,fallbackLocale:ce,get inheritLocale(){return c},set inheritLocale(X){c=X,X&&n&&(d.value=n.locale.value,f.value=n.fallbackLocale.value,fc(K,d.value,f.value))},get availableLocales(){return Object.keys(y.value).sort()},messages:J,get modifiers(){return H},get pluralRules(){return m||{}},get isGlobal(){return i},get missingWarn(){return S},set missingWarn(X){S=X,K.missingWarn=S},get fallbackWarn(){return E},set fallbackWarn(X){E=X,K.fallbackWarn=E},get fallbackRoot(){return T},set fallbackRoot(X){T=X},get fallbackFormat(){return N},set fallbackFormat(X){N=X,K.fallbackFormat=N},get warnHtmlMessage(){return R},set warnHtmlMessage(X){R=X,K.warnHtmlMessage=X},get escapeParameter(){return U},set escapeParameter(X){U=X,K.escapeParameter=X},t:at,getLocaleMessage:G,setLocaleMessage:oe,mergeLocaleMessage:te,getPostTranslationHandler:fe,setPostTranslationHandler:Se,getMissingHandler:we,setMissingHandler:Qe,[jS]:yn};return Be.datetimeFormats=ye,Be.numberFormats=Me,Be.rt=vt,Be.te=an,Be.tm=C,Be.d=Xt,Be.n=tn,Be.getDateTimeFormat=be,Be.setDateTimeFormat=$e,Be.mergeDateTimeFormat=Ce,Be.getNumberFormat=Le,Be.setNumberFormat=Te,Be.mergeNumberFormat=Fe,Be[VS]=r,Be[rm]=Qt,Be[sm]=Rt,Be[om]=Kt,Be}function _M(e){const t=Ge(e.locale)?e.locale:vl,n=Ge(e.fallbackLocale)||Tn(e.fallbackLocale)||Et(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:t,r=Sn(e.missing)?e.missing:void 0,i=Wt(e.silentTranslationWarn)||Ni(e.silentTranslationWarn)?!e.silentTranslationWarn:!0,a=Wt(e.silentFallbackWarn)||Ni(e.silentFallbackWarn)?!e.silentFallbackWarn:!0,o=Wt(e.fallbackRoot)?e.fallbackRoot:!0,c=!!e.formatFallbackMessages,d=Et(e.modifiers)?e.modifiers:{},f=e.pluralizationRules,y=Sn(e.postTranslation)?e.postTranslation:void 0,g=Ge(e.warnHtmlInMessage)?e.warnHtmlInMessage!=="off":!0,v=!!e.escapeParameterHtml,S=Wt(e.sync)?e.sync:!0;let E=e.messages;if(Et(e.sharedMessages)){const U=e.sharedMessages;E=Object.keys(U).reduce((m,K)=>{const F=m[K]||(m[K]={});return mr(F,U[K]),m},E||{})}const{__i18n:T,__root:N,__injectWithOption:I}=e,D=e.datetimeFormats,L=e.numberFormats,R=e.flatJson;return{locale:t,fallbackLocale:n,messages:E,flatJson:R,datetimeFormats:D,numberFormats:L,missing:r,missingWarn:i,fallbackWarn:a,fallbackRoot:o,fallbackFormat:c,modifiers:d,pluralRules:f,postTranslation:y,warnHtmlMessage:g,escapeParameter:v,messageResolver:e.messageResolver,inheritLocale:S,__i18n:T,__root:N,__injectWithOption:I}}function am(e={},t){{const n=Ly(_M(e)),{__extender:r}=e,i={id:n.id,get locale(){return n.locale.value},set locale(a){n.locale.value=a},get fallbackLocale(){return n.fallbackLocale.value},set fallbackLocale(a){n.fallbackLocale.value=a},get messages(){return n.messages.value},get datetimeFormats(){return n.datetimeFormats.value},get numberFormats(){return n.numberFormats.value},get availableLocales(){return n.availableLocales},get formatter(){return{interpolate(){return[]}}},set formatter(a){},get missing(){return n.getMissingHandler()},set missing(a){n.setMissingHandler(a)},get silentTranslationWarn(){return Wt(n.missingWarn)?!n.missingWarn:n.missingWarn},set silentTranslationWarn(a){n.missingWarn=Wt(a)?!a:a},get silentFallbackWarn(){return Wt(n.fallbackWarn)?!n.fallbackWarn:n.fallbackWarn},set silentFallbackWarn(a){n.fallbackWarn=Wt(a)?!a:a},get modifiers(){return n.modifiers},get formatFallbackMessages(){return n.fallbackFormat},set formatFallbackMessages(a){n.fallbackFormat=a},get postTranslation(){return n.getPostTranslationHandler()},set postTranslation(a){n.setPostTranslationHandler(a)},get sync(){return n.inheritLocale},set sync(a){n.inheritLocale=a},get warnHtmlInMessage(){return n.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(a){n.warnHtmlMessage=a!=="off"},get escapeParameterHtml(){return n.escapeParameter},set escapeParameterHtml(a){n.escapeParameter=a},get preserveDirectiveContent(){return!0},set preserveDirectiveContent(a){},get pluralizationRules(){return n.pluralRules||{}},__composer:n,t(...a){const[o,c,d]=a,f={};let y=null,g=null;if(!Ge(o))throw cr(or.INVALID_ARGUMENT);const v=o;return Ge(c)?f.locale=c:Tn(c)?y=c:Et(c)&&(g=c),Tn(d)?y=d:Et(d)&&(g=d),Reflect.apply(n.t,n,[v,y||g||{},f])},rt(...a){return Reflect.apply(n.rt,n,[...a])},tc(...a){const[o,c,d]=a,f={plural:1};let y=null,g=null;if(!Ge(o))throw cr(or.INVALID_ARGUMENT);const v=o;return Ge(c)?f.locale=c:rr(c)?f.plural=c:Tn(c)?y=c:Et(c)&&(g=c),Ge(d)?f.locale=d:Tn(d)?y=d:Et(d)&&(g=d),Reflect.apply(n.t,n,[v,y||g||{},f])},te(a,o){return n.te(a,o)},tm(a){return n.tm(a)},getLocaleMessage(a){return n.getLocaleMessage(a)},setLocaleMessage(a,o){n.setLocaleMessage(a,o)},mergeLocaleMessage(a,o){n.mergeLocaleMessage(a,o)},d(...a){return Reflect.apply(n.d,n,[...a])},getDateTimeFormat(a){return n.getDateTimeFormat(a)},setDateTimeFormat(a,o){n.setDateTimeFormat(a,o)},mergeDateTimeFormat(a,o){n.mergeDateTimeFormat(a,o)},n(...a){return Reflect.apply(n.n,n,[...a])},getNumberFormat(a){return n.getNumberFormat(a)},setNumberFormat(a,o){n.setNumberFormat(a,o)},mergeNumberFormat(a,o){n.mergeNumberFormat(a,o)},getChoiceIndex(a,o){return-1}};return i.__extender=r,i}}const Ry={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}};function xM({slots:e},t){return t.length===1&&t[0]==="default"?(e.default?e.default():[]).reduce((r,i)=>[...r,...i.type===Gt?i.children:[i]],[]):t.reduce((n,r)=>{const i=e[r];return i&&(n[r]=i()),n},{})}function KS(e){return Gt}const EM=Oa({name:"i18n-t",props:mr({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>rr(e)||!isNaN(e)}},Ry),setup(e,t){const{slots:n,attrs:r}=t,i=e.i18n||Ko({useScope:e.scope,__useComponent:!0});return()=>{const a=Object.keys(n).filter(g=>g!=="_"),o={};e.locale&&(o.locale=e.locale),e.plural!==void 0&&(o.plural=Ge(e.plural)?+e.plural:e.plural);const c=xM(t,a),d=i[rm](e.keypath,c,o),f=mr({},r),y=Ge(e.tag)||pn(e.tag)?e.tag:KS();return uu(y,f,d)}}}),E0=EM;function SM(e){return Tn(e)&&!Ge(e[0])}function zS(e,t,n,r){const{slots:i,attrs:a}=t;return()=>{const o={part:!0};let c={};e.locale&&(o.locale=e.locale),Ge(e.format)?o.key=e.format:pn(e.format)&&(Ge(e.format.key)&&(o.key=e.format.key),c=Object.keys(e.format).reduce((v,S)=>n.includes(S)?mr({},v,{[S]:e.format[S]}):v,{}));const d=r(e.value,o,c);let f=[o.key];Tn(d)?f=d.map((v,S)=>{const E=i[v.type],T=E?E({[v.type]:v.value,index:S,parts:d}):[v.value];return SM(T)&&(T[0].key=`${v.type}-${S}`),T}):Ge(d)&&(f=[d]);const y=mr({},a),g=Ge(e.tag)||pn(e.tag)?e.tag:KS();return uu(g,y,f)}}const wM=Oa({name:"i18n-n",props:mr({value:{type:Number,required:!0},format:{type:[String,Object]}},Ry),setup(e,t){const n=e.i18n||Ko({useScope:"parent",__useComponent:!0});return zS(e,t,BS,(...r)=>n[om](...r))}}),S0=wM,TM=Oa({name:"i18n-d",props:mr({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},Ry),setup(e,t){const n=e.i18n||Ko({useScope:"parent",__useComponent:!0});return zS(e,t,FS,(...r)=>n[sm](...r))}}),w0=TM;function CM(e,t){const n=e;if(e.mode==="composition")return n.__getInstance(t)||e.global;{const r=n.__getInstance(t);return r!=null?r.__composer:e.global.__composer}}function IM(e){const t=o=>{const{instance:c,modifiers:d,value:f}=o;if(!c||!c.$)throw cr(or.UNEXPECTED_ERROR);const y=CM(e,c.$),g=T0(f);return[Reflect.apply(y.t,y,[...C0(g)]),y]};return{created:(o,c)=>{const[d,f]=t(c);Mf&&e.global===f&&(o.__i18nWatcher=Ns(f.locale,()=>{c.instance&&c.instance.$forceUpdate()})),o.__composer=f,o.textContent=d},unmounted:o=>{Mf&&o.__i18nWatcher&&(o.__i18nWatcher(),o.__i18nWatcher=void 0,delete o.__i18nWatcher),o.__composer&&(o.__composer=void 0,delete o.__composer)},beforeUpdate:(o,{value:c})=>{if(o.__composer){const d=o.__composer,f=T0(c);o.textContent=Reflect.apply(d.t,d,[...C0(f)])}},getSSRProps:o=>{const[c]=t(o);return{textContent:c}}}}function T0(e){if(Ge(e))return{path:e};if(Et(e)){if(!("path"in e))throw cr(or.REQUIRED_VALUE,"path");return e}else throw cr(or.INVALID_VALUE)}function C0(e){const{path:t,locale:n,args:r,choice:i,plural:a}=e,o={},c=r||{};return Ge(n)&&(o.locale=n),rr(i)&&(o.plural=i),rr(a)&&(o.plural=a),[t,c,o]}function OM(e,t,...n){const r=Et(n[0])?n[0]:{},i=!!r.useI18nComponentName;(Wt(r.globalInstall)?r.globalInstall:!0)&&([i?"i18n":E0.name,"I18nT"].forEach(o=>e.component(o,E0)),[S0.name,"I18nN"].forEach(o=>e.component(o,S0)),[w0.name,"I18nD"].forEach(o=>e.component(o,w0))),e.directive("t",IM(t))}function AM(e,t,n){return{beforeCreate(){const r=Fr();if(!r)throw cr(or.UNEXPECTED_ERROR);const i=this.$options;if(i.i18n){const a=i.i18n;if(i.__i18n&&(a.__i18n=i.__i18n),a.__root=t,this===this.$root)this.$i18n=I0(e,a);else{a.__injectWithOption=!0,a.__extender=n.__vueI18nExtend,this.$i18n=am(a);const o=this.$i18n;o.__extender&&(o.__disposer=o.__extender(this.$i18n))}}else if(i.__i18n)if(this===this.$root)this.$i18n=I0(e,i);else{this.$i18n=am({__i18n:i.__i18n,__injectWithOption:!0,__extender:n.__vueI18nExtend,__root:t});const a=this.$i18n;a.__extender&&(a.__disposer=a.__extender(this.$i18n))}else this.$i18n=e;i.__i18nGlobal&&GS(t,i,i),this.$t=(...a)=>this.$i18n.t(...a),this.$rt=(...a)=>this.$i18n.rt(...a),this.$tc=(...a)=>this.$i18n.tc(...a),this.$te=(a,o)=>this.$i18n.te(a,o),this.$d=(...a)=>this.$i18n.d(...a),this.$n=(...a)=>this.$i18n.n(...a),this.$tm=a=>this.$i18n.tm(a),n.__setInstance(r,this.$i18n)},mounted(){},unmounted(){const r=Fr();if(!r)throw cr(or.UNEXPECTED_ERROR);const i=this.$i18n;delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,i.__disposer&&(i.__disposer(),delete i.__disposer,delete i.__extender),n.__deleteInstance(r),delete this.$i18n}}}function I0(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[jS](t.pluralizationRules||e.pluralizationRules);const n=wh(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach(r=>e.mergeLocaleMessage(r,n[r])),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach(r=>e.mergeDateTimeFormat(r,t.datetimeFormats[r])),t.numberFormats&&Object.keys(t.numberFormats).forEach(r=>e.mergeNumberFormat(r,t.numberFormats[r])),e}const kM=Mi("global-vue-i18n");function PM(e={},t){const n=__VUE_I18N_LEGACY_API__&&Wt(e.legacy)?e.legacy:__VUE_I18N_LEGACY_API__,r=Wt(e.globalInjection)?e.globalInjection:!0,i=__VUE_I18N_LEGACY_API__&&n?!!e.allowComposition:!0,a=new Map,[o,c]=NM(e,n),d=Mi("");function f(v){return a.get(v)||null}function y(v,S){a.set(v,S)}function g(v){a.delete(v)}{const v={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return i},async install(S,...E){if(S.__VUE_I18N_SYMBOL__=d,S.provide(S.__VUE_I18N_SYMBOL__,v),Et(E[0])){const I=E[0];v.__composerExtend=I.__composerExtend,v.__vueI18nExtend=I.__vueI18nExtend}let T=null;!n&&r&&(T=HM(S,v.global)),__VUE_I18N_FULL_INSTALL__&&OM(S,v,...E),__VUE_I18N_LEGACY_API__&&n&&S.mixin(AM(c,c.__composer,v));const N=S.unmount;S.unmount=()=>{T&&T(),v.dispose(),N()}},get global(){return c},dispose(){o.stop()},__instances:a,__getInstance:f,__setInstance:y,__deleteInstance:g};return v}}function Ko(e={}){const t=Fr();if(t==null)throw cr(or.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&t.appContext.app!=null&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw cr(or.NOT_INSTALLED);const n=LM(t),r=DM(n),i=WS(t),a=RM(e,i);if(__VUE_I18N_LEGACY_API__&&n.mode==="legacy"&&!e.__useComponent){if(!n.allowComposition)throw cr(or.NOT_AVAILABLE_IN_LEGACY_MODE);return BM(t,a,r,e)}if(a==="global")return GS(r,e,i),r;if(a==="parent"){let d=MM(n,t,e.__useComponent);return d==null&&(d=r),d}const o=n;let c=o.__getInstance(t);if(c==null){const d=mr({},e);"__i18n"in i&&(d.__i18n=i.__i18n),r&&(d.__root=r),c=Ly(d),o.__composerExtend&&(c[im]=o.__composerExtend(c)),FM(o,t,c),o.__setInstance(t,c)}return c}function NM(e,t,n){const r=Sm();{const i=__VUE_I18N_LEGACY_API__&&t?r.run(()=>am(e)):r.run(()=>Ly(e));if(i==null)throw cr(or.UNEXPECTED_ERROR);return[r,i]}}function LM(e){{const t=_n(e.isCE?kM:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw cr(e.isCE?or.NOT_INSTALLED_WITH_PROVIDE:or.UNEXPECTED_ERROR);return t}}function RM(e,t){return Eh(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function DM(e){return e.mode==="composition"?e.global:e.global.__composer}function MM(e,t,n=!1){let r=null;const i=t.root;let a=$M(t,n);for(;a!=null;){const o=e;if(e.mode==="composition")r=o.__getInstance(a);else if(__VUE_I18N_LEGACY_API__){const c=o.__getInstance(a);c!=null&&(r=c.__composer,n&&r&&!r[VS]&&(r=null))}if(r!=null||i===a)break;a=a.parent}return r}function $M(e,t=!1){return e==null?null:t&&e.vnode.ctx||e.parent}function FM(e,t,n){Aa(()=>{},t),Tl(()=>{const r=n;e.__deleteInstance(t);const i=r[im];i&&(i(),delete r[im])},t)}function BM(e,t,n,r={}){const i=t==="local",a=oh(null);if(i&&e.proxy&&!(e.proxy.$options.i18n||e.proxy.$options.__i18n))throw cr(or.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);const o=Wt(r.inheritLocale)?r.inheritLocale:!Ge(r.locale),c=ft(!i||o?n.locale.value:Ge(r.locale)?r.locale:vl),d=ft(!i||o?n.fallbackLocale.value:Ge(r.fallbackLocale)||Tn(r.fallbackLocale)||Et(r.fallbackLocale)||r.fallbackLocale===!1?r.fallbackLocale:c.value),f=ft(wh(c.value,r)),y=ft(Et(r.datetimeFormats)?r.datetimeFormats:{[c.value]:{}}),g=ft(Et(r.numberFormats)?r.numberFormats:{[c.value]:{}}),v=i?n.missingWarn:Wt(r.missingWarn)||Ni(r.missingWarn)?r.missingWarn:!0,S=i?n.fallbackWarn:Wt(r.fallbackWarn)||Ni(r.fallbackWarn)?r.fallbackWarn:!0,E=i?n.fallbackRoot:Wt(r.fallbackRoot)?r.fallbackRoot:!0,T=!!r.fallbackFormat,N=Sn(r.missing)?r.missing:null,I=Sn(r.postTranslation)?r.postTranslation:null,D=i?n.warnHtmlMessage:Wt(r.warnHtmlMessage)?r.warnHtmlMessage:!0,L=!!r.escapeParameter,R=i?n.modifiers:Et(r.modifiers)?r.modifiers:{},U=r.pluralRules||i&&n.pluralRules;function H(){return[c.value,d.value,f.value,y.value,g.value]}const m=Wn({get:()=>a.value?a.value.locale.value:c.value,set:C=>{a.value&&(a.value.locale.value=C),c.value=C}}),K=Wn({get:()=>a.value?a.value.fallbackLocale.value:d.value,set:C=>{a.value&&(a.value.fallbackLocale.value=C),d.value=C}}),F=Wn(()=>a.value?a.value.messages.value:f.value),V=Wn(()=>y.value),re=Wn(()=>g.value);function ce(){return a.value?a.value.getPostTranslationHandler():I}function J(C){a.value&&a.value.setPostTranslationHandler(C)}function ye(){return a.value?a.value.getMissingHandler():N}function Me(C){a.value&&a.value.setMissingHandler(C)}function fe(C){return H(),C()}function Se(...C){return a.value?fe(()=>Reflect.apply(a.value.t,null,[...C])):fe(()=>"")}function we(...C){return a.value?Reflect.apply(a.value.rt,null,[...C]):""}function Qe(...C){return a.value?fe(()=>Reflect.apply(a.value.d,null,[...C])):fe(()=>"")}function ht(...C){return a.value?fe(()=>Reflect.apply(a.value.n,null,[...C])):fe(()=>"")}function at(C){return a.value?a.value.tm(C):{}}function vt(C,G){return a.value?a.value.te(C,G):!1}function Xt(C){return a.value?a.value.getLocaleMessage(C):{}}function tn(C,G){a.value&&(a.value.setLocaleMessage(C,G),f.value[C]=G)}function $t(C,G){a.value&&a.value.mergeLocaleMessage(C,G)}function yt(C){return a.value?a.value.getDateTimeFormat(C):{}}function Lt(C,G){a.value&&(a.value.setDateTimeFormat(C,G),y.value[C]=G)}function Qt(C,G){a.value&&a.value.mergeDateTimeFormat(C,G)}function Kt(C){return a.value?a.value.getNumberFormat(C):{}}function Rt(C,G){a.value&&(a.value.setNumberFormat(C,G),g.value[C]=G)}function yn(C,G){a.value&&a.value.mergeNumberFormat(C,G)}const an={get id(){return a.value?a.value.id:-1},locale:m,fallbackLocale:K,messages:F,datetimeFormats:V,numberFormats:re,get inheritLocale(){return a.value?a.value.inheritLocale:o},set inheritLocale(C){a.value&&(a.value.inheritLocale=C)},get availableLocales(){return a.value?a.value.availableLocales:Object.keys(f.value)},get modifiers(){return a.value?a.value.modifiers:R},get pluralRules(){return a.value?a.value.pluralRules:U},get isGlobal(){return a.value?a.value.isGlobal:!1},get missingWarn(){return a.value?a.value.missingWarn:v},set missingWarn(C){a.value&&(a.value.missingWarn=C)},get fallbackWarn(){return a.value?a.value.fallbackWarn:S},set fallbackWarn(C){a.value&&(a.value.missingWarn=C)},get fallbackRoot(){return a.value?a.value.fallbackRoot:E},set fallbackRoot(C){a.value&&(a.value.fallbackRoot=C)},get fallbackFormat(){return a.value?a.value.fallbackFormat:T},set fallbackFormat(C){a.value&&(a.value.fallbackFormat=C)},get warnHtmlMessage(){return a.value?a.value.warnHtmlMessage:D},set warnHtmlMessage(C){a.value&&(a.value.warnHtmlMessage=C)},get escapeParameter(){return a.value?a.value.escapeParameter:L},set escapeParameter(C){a.value&&(a.value.escapeParameter=C)},t:Se,getPostTranslationHandler:ce,setPostTranslationHandler:J,getMissingHandler:ye,setMissingHandler:Me,rt:we,d:Qe,n:ht,tm:at,te:vt,getLocaleMessage:Xt,setLocaleMessage:tn,mergeLocaleMessage:$t,getDateTimeFormat:yt,setDateTimeFormat:Lt,mergeDateTimeFormat:Qt,getNumberFormat:Kt,setNumberFormat:Rt,mergeNumberFormat:yn};function A(C){C.locale.value=c.value,C.fallbackLocale.value=d.value,Object.keys(f.value).forEach(G=>{C.mergeLocaleMessage(G,f.value[G])}),Object.keys(y.value).forEach(G=>{C.mergeDateTimeFormat(G,y.value[G])}),Object.keys(g.value).forEach(G=>{C.mergeNumberFormat(G,g.value[G])}),C.escapeParameter=L,C.fallbackFormat=T,C.fallbackRoot=E,C.fallbackWarn=S,C.missingWarn=v,C.warnHtmlMessage=D}return hh(()=>{if(e.proxy==null||e.proxy.$i18n==null)throw cr(or.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);const C=a.value=e.proxy.$i18n.__composer;t==="global"?(c.value=C.locale.value,d.value=C.fallbackLocale.value,f.value=C.messages.value,y.value=C.datetimeFormats.value,g.value=C.numberFormats.value):i&&A(C)}),an}const UM=["locale","fallbackLocale","availableLocales"],O0=["t","rt","d","n","tm","te"];function HM(e,t){const n=Object.create(null);return UM.forEach(i=>{const a=Object.getOwnPropertyDescriptor(t,i);if(!a)throw cr(or.UNEXPECTED_ERROR);const o=ir(a.value)?{get(){return a.value.value},set(c){a.value.value=c}}:{get(){return a.get&&a.get()}};Object.defineProperty(n,i,o)}),e.config.globalProperties.$i18n=n,O0.forEach(i=>{const a=Object.getOwnPropertyDescriptor(t,i);if(!a||!a.value)throw cr(or.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${i}`,a)}),()=>{delete e.config.globalProperties.$i18n,O0.forEach(i=>{delete e.config.globalProperties[`$${i}`]})}}yM();__INTLIFY_JIT_COMPILATION__?a0(dM):a0(uM);rM(FD);sM(OS);if(__INTLIFY_PROD_DEVTOOLS__){const e=$o();e.__INTLIFY__=!0,zD(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}const jM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"An error occurred while processing the transaction: Unable to pay more with giftcards","buckaroo.response.invalid_parameter_originaltransaction":"Invalid parameter originaltransaction.","dashboard.channel_selector.select_channel":"Select Channel","dashboard.channel_selector.select_channel_label":"Each channel has its configuration settings.","dashboard.config.financial_warning":"Customer Financial Warning","dashboard.config.financial_warning.label":"Due to the regulations for BNPL methods in The Netherlands you’ll have to warn customers about using a BNPL plan because it can be easy to get into debt. When enabled a warning will be showed in the checkout. Please note that this setting only applies for customers in The Netherlands.","dashboard.config.financial_warning.options.disabled":"Disabled","dashboard.config.financial_warning.options.enabled":"Enabled","dashboard.config.showIssuers":"Show Issuer Selection in the Checkout","dashboard.config.showIssuers.disabled":"Disable","dashboard.config.showIssuers.enabled":"Enable","dashboard.config.showIssuers.label":`When the "Disable" option is selected, the issuer selection for iDEAL will not be displayed in the checkout. Instead, customers will be redirected to a separate page where they can choose their iDEAL issuer (i.e., their bank). On the other hand, selecting the "Enable" option will display the issuer selection directly in the checkout. It's important to note that enabling this option will incur additional costs from Buckaroo, estimated at around €0.002 for each transaction. For precise cost details, please reach out to Buckaroo directly.`,"dashboard.country_select.search_countries":"Search Countries","dashboard.menu.channel":"Channel","dashboard.menu.order_payment_methods":"Order Payments Methods","dashboard.menu.payment_methods":"Payment methods","dashboard.menu.settings":"Settings","dashboard.menu.verification_methods":"Verification methods","dashboard.pages.order_payment_methods.all_countries":"All Countries","dashboard.pages.order_payment_methods.explanation_intro":`You can easily change the order of the payment methods by dragging them into the right place, from top to bottom. Even setting a specific payment method order for a specific country is possible. This so you can highlight local payment methods for customers across different countries.`,"dashboard.pages.order_payment_methods.how_to_order_payment_method":"How to change the order of the payment methods in the checkout","dashboard.pages.order_payment_methods.if_you_have_any_questions":"If you have any questions about this plugin from Buckaroo, then you can contact us by e-mail:","dashboard.pages.order_payment_methods.order_payment_methods":"Order Payment Methods","dashboard.pages.order_payment_methods.order_payment_methods_label":"Change the order of payment methods.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Payment method order updated successfully.","dashboard.pages.order_payment_methods.search_country":"Search country","dashboard.pages.order_payment_methods.something_went_wrong":"Something went wrong.","dashboard.pages.order_payment_methods.step_one":`First select the country for which you want to change the display order of the payment methods. Or you can select “All Countries” to use a specific order of the payment methods globally.`,"dashboard.pages.order_payment_methods.step_three":"Save your chosen payment methods order and check if the payment methods are showed in the correct order in the checkout of your webshop.","dashboard.pages.order_payment_methods.step_two":`Drag and drop the payment methods in the order of your liking. This can be done by dragging them from top to bottom with the arrow icons.`,"dashboard.pages.payments.add":"Add","dashboard.pages.payments.add_custom_giftcard":"Add custom giftcard","dashboard.pages.payments.all_countries":"All Countries","dashboard.pages.payments.allowed_creditcards":"Allowed Credit- and debitcards","dashboard.pages.payments.allowed_creditcards_label":"Only selected credit- or debitcards will be showed for this method","dashboard.pages.payments.allowed_giftcards":"Allowed giftcards","dashboard.pages.payments.allowed_giftcards_label":"Only selected giftcards will this method be shown","dashboard.pages.payments.allowed_methods":"Allowed payment methods","dashboard.pages.payments.clear":"Clear","dashboard.pages.payments.client_side":"Client Side Encryption","dashboard.pages.payments.client_side_label":"Enable or disable client sided payment method behavior.","dashboard.pages.payments.configure":"Configure","dashboard.pages.payments.configure_your_payment_method_settings":"Configure your payment method settings","dashboard.pages.payments.configure_your_payment_name_settings":"Configure your {payment_name} settings","dashboard.pages.payments.configure_your_verification_method_settings":"Configure your verification method settings","dashboard.pages.payments.configure_your_verification_name_settings":"Configure your {verification_name} settings","dashboard.pages.payments.countries":"Countries","dashboard.pages.payments.countries_label":"The payment method will only be showed for selected countries. You can leave this setting empty to display the payment method for all countries.","dashboard.pages.payments.custom_giftcard":"Custom giftcard","dashboard.pages.payments.custom_icon_url":"Custom Icon URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Business-to-Business","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-consumer","dashboard.pages.payments.customer.type.both":"Both","dashboard.pages.payments.customer.type_label":"Customer Type","dashboard.pages.payments.customer_type":"Customer type","dashboard.pages.payments.display_type":"Button Display Type","dashboard.pages.payments.display_type_label":"This setting determines how the bank selection for this payment method will be displayed in the checkout.
You can choose between radio buttons or a dropdown selection.","dashboard.pages.payments.display_types.dropdown":"Dropdown","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Due date (in days)","dashboard.pages.payments.edit":"Edit","dashboard.pages.payments.enter_giftcard_details":"Enter giftcard details","dashboard.pages.payments.front_label":"Front Label","dashboard.pages.payments.front_label_label":"This name will be displayed for this payment method in the checkout. When this field is empty, the standard payment method name will be displayed.","dashboard.pages.payments.giftcard_name":"Giftcard Name","dashboard.pages.payments.idin.display_mode":"iDIN mode:","dashboard.pages.payments.idin.display_mode.global":"Global","dashboard.pages.payments.idin.display_mode.product":"Specific products","dashboard.pages.payments.idin.display_mode_label":`With this setting you can select whether iDIN is enabled for all the products in the store (globally) or only for specific products. -For specific products you also need to enable it for the products in the PrestaShop catalog.`,"dashboard.pages.payments.in3.version.label":"In3 version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximum B2B order amount","dashboard.pages.payments.maximum_order_amount":"Maximum order amount","dashboard.pages.payments.min_order_amount_b2b":"Minimum B2B order amount","dashboard.pages.payments.minimum_order_amount":"Minimum order amount","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":'When set to "Live" you can do actual payments. When set to "Testing" you can do test transactions. This payment method will not appear when it is set to "Off".',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Off","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Order amount allowed","dashboard.pages.payments.order_amount_allowed_label":"This method will only be shown when this condition is met.","dashboard.pages.payments.payment_fee_incl_vat":"Payment fee incl. VAT","dashboard.pages.payments.payment_fee_incl_vat_label":"You can charge a fee when the customer select this payment. Specify static (e.g. 1.50). Decimals must be separated by a dot (.)","dashboard.pages.payments.payment_methods":"Payments methods","dashboard.pages.payments.remove":"Remove","dashboard.pages.payments.save":"Save","dashboard.pages.payments.search_country":"Search Country","dashboard.pages.payments.search_creditcard":"Search Credit- or debitcard","dashboard.pages.payments.search_giftcard":"Search Giftcard","dashboard.pages.payments.seller_protection":"Seller protection","dashboard.pages.payments.seller_protection_disabled":"No","dashboard.pages.payments.seller_protection_enable":"Enable PayPal Seller Protection","dashboard.pages.payments.seller_protection_enabled":"Yes","dashboard.pages.payments.send_email_instruction":"Send payment instruction email","dashboard.pages.payments.send_email_instruction_no":"No","dashboard.pages.payments.send_email_instruction_yes":"Yes","dashboard.pages.payments.send_email_merchant":"Merchant sends email","dashboard.pages.payments.seperate_authorize_and_capture":"Seperate authorize and capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"When this option is enabled you have to manually capture the credit- or debitcard payment.","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"After you request your custom giftcard by Intersolve you will receive an email about your service code. If you have any questions about this do not hesitate to mail us at ","dashboard.pages.payments.settings":"Settings","dashboard.pages.payments.show_country_number_and_more":"and {country_number} more...","dashboard.pages.payments.show_less":"Show less","dashboard.pages.payments.vat_type_for_wrap":"Vat type for gift wrapping","dashboard.pages.payments.vat_type_for_wrap_select":"Please select vat type for gift wrapping","dashboard.pages.payments.verification_methods":"Verification methods","dashboard.pages.settings.add":"Add","dashboard.pages.settings.advance_settings":"Advanced Settings","dashboard.pages.settings.checkout_url":"Checkout URL","dashboard.pages.settings.checkout_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop checkout page.","dashboard.pages.settings.checkout_url_label":"Set a custom checkout URL after the customer cancel the payment or something went wrong during the process.","dashboard.pages.settings.credentials":"Credentials","dashboard.pages.settings.credentials_label":"Get your Buckaroo credentials from the Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Custom scripts","dashboard.pages.settings.custom_scripts_label":"Add custom javascript or css to your checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Example","dashboard.pages.settings.explanation_intro":"Welcome to the configuration panel of the Buckaroo Payment app for your PrestaShop webshop. In this panel you can set the app completely to your liking. Below you will find the steps to configue the settings. For further questions, please refer to our documentation page.","dashboard.pages.settings.generate_credit_slip":"Generate a Credit Slip","dashboard.pages.settings.generate_credit_slip_label":"Whether a credit note should be generated.","dashboard.pages.settings.generate_negative_payments":"Create Negative Payments on Refund","dashboard.pages.settings.generate_negative_payments_label":"Whether a negative payment does also need to be created when performing a refund.","dashboard.pages.settings.generate_voucher":"Generate a Voucher","dashboard.pages.settings.generate_voucher_label":"Whether a voucher should be generated.","dashboard.pages.settings.hide_advance_settings":"Hide Advanced Settings","dashboard.pages.settings.if_you_have_any_questions":"If you have any questions about the above, you can contact us by email:","dashboard.pages.settings.if_you_have_any_questions_link":" or phone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Easily change the mode","dashboard.pages.settings.no_im_testing":"No, I'm Testing","dashboard.pages.settings.order_number":"Order number","dashboard.pages.settings.order_number2":"order_number","dashboard.pages.settings.re_stock_products":"Re-stock Products","dashboard.pages.settings.re_stock_products_label":"Whether refunded products should be returned to inventory (increasing the quantity in stock).","dashboard.pages.settings.refunds":"Refunds","dashboard.pages.settings.refunds_label":"Refund Description","dashboard.pages.settings.refunds_label_explanation":"This description is used for the refunds and will be visible in Buckaroo and on the bank statement of the consumer. We recommend using the webshop name so customers can easily recognize the payment.","dashboard.pages.settings.refunds_label_label":"When enabled you can do (partial) refunds directly from your PrestaShop admin area Read more","dashboard.pages.settings.remove":"Remove","dashboard.pages.settings.return_url":"Return URL","dashboard.pages.settings.return_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop confirmation page.","dashboard.pages.settings.return_url_label":"Set a custom return URL after the customer finishes the payment.","dashboard.pages.settings.save":"Save","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Settings","dashboard.pages.settings.settings_label":"Configure your settings","dashboard.pages.settings.settings_successfully_updated":"Settings successfully updated.","dashboard.pages.settings.shop_name":"Shop name","dashboard.pages.settings.shop_name2":"shop_name","dashboard.pages.settings.step_five":"Start testing, when testing is oke you can start LIVE transactions","dashboard.pages.settings.step_four":"Configure advanced settings & payment methods","dashboard.pages.settings.step_one":"Fill in your websitekey","dashboard.pages.settings.step_three":"Click on ‘test connection’, when oke proceed to step 4.","dashboard.pages.settings.step_two":"Fill in your secretkey","dashboard.pages.settings.successfully_verified_the_credentials":"Successfully verified the credentials!","dashboard.pages.settings.test_connection":"Test Connection","dashboard.pages.settings.the_credentials_are_not_valid":"The credentials are not valid!","dashboard.pages.settings.transaction_description":"Transaction Description","dashboard.pages.settings.transaction_description_label":'Transaction description can be filled with static text and tags like: {order_number} and {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welcome to Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"When your shop is not live yet","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Yes, I'm ready to receive payments","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Your shop is live and ready to receive real payments","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.giropay":"Giropay","payment_methods.ideal":"iDEAL","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.sofortueberweisung":"Sofort","payment_methods.tinka":"Tinka","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."},VM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Er is een fout opgetreden tijdens het verwerken van de transactie: Je kunt niet meer cadeaukaarten gebruiken","buckaroo.response.invalid_parameter_originaltransaction":"Ongeldige parameter originaltransaction.","dashboard.channel_selector.select_channel":"Selecteer Kanaal","dashboard.channel_selector.select_channel_label":"Elk kanaal heeft zijn eigen configuratie-instellingen.","dashboard.config.financial_warning":"Financiële Waarschuwing","dashboard.config.financial_warning.label":"Vanwege de voorschriften voor achteraf betaalmethoden in Nederland dien je klanten te waarschuwen voor het gebruik van een achteraf betaalmethode omdat het gemakkelijk kan leiden tot schulden. Wanneer deze functie is ingeschakeld, wordt er een waarschuwing weergegeven tijdens het afrekenen. Let op dat deze instelling alleen van toepassing is op klanten in Nederland.","dashboard.config.financial_warning.options.disabled":"Uitgeschakeld","dashboard.config.financial_warning.options.enabled":"Ingeschakeld","dashboard.config.showIssuers":"Weergeef de bankkeuze in de checkout","dashboard.config.showIssuers.disabled":"Uitgeschakeld","dashboard.config.showIssuers.enabled":"Inschakelen","dashboard.config.showIssuers.label":`Wanneer de optie 'Uitgeschakeld' is geselecteerd, zal de bankkeuze voor iDEAL niet worden weergegeven in de checkout. In plaats daarvan worden klanten doorgestuurd naar een aparte pagina waar ze hun eigen bank kunnen kiezen. Aan de andere kant zal het aanzetten van deze functie de bankkeuze direct in de checkout weergeven. Het is belangrijk om te melden dat het inschakelen van deze optie extra kosten met zich mee zal brengen van Buckaroo, geschat op ongeveer €0.002 per transactie. Voor nauwkeurige kostendetails kunt u rechtstreeks contact opnemen met Buckaroo.`,"dashboard.country_select.search_countries":"Zoek Landen","dashboard.menu.channel":"Kanaal","dashboard.menu.order_payment_methods":"Betaalmethoden Volgorde","dashboard.menu.payment_methods":"Betaalmethoden","dashboard.menu.settings":"Instellingen","dashboard.menu.verification_methods":"Verificatiemethoden","dashboard.pages.order_payment_methods.all_countries":"Alle landen","dashboard.pages.order_payment_methods.explanation_intro":"Om de betaalmethoden per land in de juiste volgorde in te stellen, dient u aan de linkerkant van dit scherm het gewenste land te selecteren. Uw krijgt dan een overzicht van de betaalmethoden die voor dat land 'aan' staan. U kunt vervolgens de betaalmethoden in de juiste volgorde zetten door te slepen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Hoe u uw betaalmethode volgorde aan kunt passen","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Heeft u vragen over deze plugin van Buckaroo, dan kunt u contact met ons opnemen via e-mail:","dashboard.pages.order_payment_methods.order_payment_methods":"Betaalmethode volgorde","dashboard.pages.order_payment_methods.order_payment_methods_label":"Wijzig de volgorde van betaalmethoden","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Betaalmethoden volgorde succesvol geüpdatet.","dashboard.pages.order_payment_methods.search_country":"Zoek land","dashboard.pages.order_payment_methods.something_went_wrong":"Er is iets fout gegaan.","dashboard.pages.order_payment_methods.step_one":"Selecteer het land waarvoor u de volgorde van de betaalmethoden wilt wijzigen.","dashboard.pages.order_payment_methods.step_three":"Sla de instellingen op en controleer in uw webshop (checkout) of alles correct weergeven wordt.","dashboard.pages.order_payment_methods.step_two":"Sleep de betaalmethoden in de volgorde van uw voorkeur.","dashboard.pages.payments.add":"Toevoegen","dashboard.pages.payments.add_custom_giftcard":"Eigen cadeaukaart toevoegen","dashboard.pages.payments.all_countries":"Alle landen","dashboard.pages.payments.allowed_creditcards":"Toegestane Cards","dashboard.pages.payments.allowed_creditcards_label":"Alleen geselecteerde credit- of debitcards worden op deze manier getoond","dashboard.pages.payments.allowed_giftcards":"Toegestane cadeaukaarten","dashboard.pages.payments.allowed_giftcards_label":"Alleen geselecteerde cadeaukaarten worden op deze manier getoond","dashboard.pages.payments.allowed_methods":"Toegestane betaalmethoden","dashboard.pages.payments.clear":"Resetten","dashboard.pages.payments.client_side":"Cliënt Side Encryption","dashboard.pages.payments.client_side_label":"Gedrag van cliëntzijdige betaalmethode in- of uitschakelen.","dashboard.pages.payments.configure":"Configuratie","dashboard.pages.payments.configure_your_payment_method_settings":"Configureer uw betaalmethoden instellingen","dashboard.pages.payments.configure_your_payment_name_settings":"Configureer uw instellingen voor {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configureer uw instellingen voor de verificatiemethoden","dashboard.pages.payments.configure_your_verification_name_settings":"Configureer uw instellingen voor {verification_name}","dashboard.pages.payments.countries":"Landen","dashboard.pages.payments.countries_label":"Alleen geselecteerde landen zullen deze betaalmethode tonen, laat dit veld leeg om de methode voor alle landen in te schakelen.","dashboard.pages.payments.custom_giftcard":"Eigen cadeaukaart","dashboard.pages.payments.custom_icon_url":"Aangepaste cadeaukaart logo URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Business-to-Business","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Klanttype","dashboard.pages.payments.customer_type":"Klant type","dashboard.pages.payments.display_type":"Weergavetype","dashboard.pages.payments.display_type_label":"Deze instelling bepaalt hoe de bankselectie voor deze betaalmethode wordt weergegeven bij het afrekenen.
U kunt kiezen tussen keuzerondjes of een vervolgkeuzelijst.","dashboard.pages.payments.display_types.dropdown":"Laten vallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Vervaldatum (in dagen)","dashboard.pages.payments.edit":"Aanpassen","dashboard.pages.payments.enter_giftcard_details":"Voer cadeaukaartgegevens in","dashboard.pages.payments.front_label":"Betaalmethode naam","dashboard.pages.payments.front_label_label":"Deze naam wordt weergegeven in de checkout.","dashboard.pages.payments.giftcard_name":"Cadeaukaart Naam","dashboard.pages.payments.idin.display_mode":"iDIN modus:","dashboard.pages.payments.idin.display_mode.global":"Globaal","dashboard.pages.payments.idin.display_mode.product":"Specifieke producten","dashboard.pages.payments.idin.display_mode_label":"Met deze instelling kunt u selecteren of iDIN is ingeschakeld voor alle producten in de winkel (globaal) of alleen voor specifieke producten. Voor specifieke producten dient u het ook in te schakelen voor de producten in de PrestaShop-catalogus.","dashboard.pages.payments.in3.version.label":"In3 versie","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximale B2B bestelbedrag","dashboard.pages.payments.maximum_order_amount":"Maximaal toegestane bestelbedrag","dashboard.pages.payments.min_order_amount_b2b":"Minimale B2B bestelbedrag","dashboard.pages.payments.minimum_order_amount":"Minimaal toegestane bestelbedrag","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":'Indien ingesteld op "Live", dan kunt u daadwerkelijke betalingen doen. Indien ingesteld op "Test", dan kun je testtransacties doen. De betaalmethode verschijnt niet als deze op "Uit" staat.',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Uit","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Bestelbedrag restricties","dashboard.pages.payments.order_amount_allowed_label":"Deze methode wordt alleen weergegeven als aan deze voorwaarde is voldaan.","dashboard.pages.payments.payment_fee_incl_vat":"Betaalkosten incl. BTW","dashboard.pages.payments.payment_fee_incl_vat_label":"U kunt kosten in rekening brengen wanneer de klant deze betaalmethode selecteert. Specificeer statisch (bijv. 1,50). Decimalen moeten worden gescheiden door een punt (.)","dashboard.pages.payments.payment_methods":"Betaalmethoden","dashboard.pages.payments.remove":"Verwijderen","dashboard.pages.payments.save":"Opslaan","dashboard.pages.payments.search_country":"Zoek Land","dashboard.pages.payments.search_creditcard":"Zoek Credit- of debitcard","dashboard.pages.payments.search_giftcard":"Zoek Cadeaukaart","dashboard.pages.payments.seller_protection":"Verkopersbescherming","dashboard.pages.payments.seller_protection_disabled":"Nee","dashboard.pages.payments.seller_protection_enable":"Schakel de PayPal Verkopersbescherming in","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Stuur betalingsinstructie e-mail","dashboard.pages.payments.send_email_instruction_no":"Nee","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Merchant stuurt e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Losse authorize en capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wanneer deze optie is ingeschakeld, dient u de betaling van de credit- of debitcard handmatig vast te leggen (capture).","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"Nadat u uw persoonlijke cadeaukaart bij Intersolve heeft aangevraagd, ontvangt u een e-mail over uw servicecode. Als u hierover vragen heeft, aarzel dan niet om ons te mailen op","dashboard.pages.payments.settings":"Instellingen","dashboard.pages.payments.show_country_number_and_more":"en {country_number} meer...","dashboard.pages.payments.show_less":"Minder tonen","dashboard.pages.payments.vat_type_for_wrap":"BTW-type voor cadeauverpakking","dashboard.pages.payments.vat_type_for_wrap_select":"Selecteer BTW-type voor cadeauverpakking","dashboard.pages.payments.verification_methods":"Verificatiemethoden","dashboard.pages.settings.add":"Toevoegen","dashboard.pages.settings.advance_settings":"Geavanceerde Instellingen","dashboard.pages.settings.checkout_url":"Cancel-URL","dashboard.pages.settings.checkout_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop afrekenpagina.","dashboard.pages.settings.checkout_url_label":"Stel een aangepaste cancel-URL in nadat de klant de betaling heeft geannuleerd of als er iets mis is gegaan tijdens het proces.","dashboard.pages.settings.credentials":"Buckaroo gegevens","dashboard.pages.settings.credentials_label":"Haal uw Buckaroo gegevens op uit de Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Aangepaste scripts","dashboard.pages.settings.custom_scripts_label":"Voeg aangepaste javascript of css code toe aan uw checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Voorbeeld","dashboard.pages.settings.explanation_intro":"Welkom bij het configuratiescherm van de Buckaroo Payment app voor jouw PrestaShop webshop. In dit scherm kunt u de app helemaal naar wens instellen. Hieronder vind u de stappen om de instellingen te configureren. Voor verdere vragen verwijzen wij u naar onze documentatie pagina.","dashboard.pages.settings.generate_credit_slip":"Een creditnota genereren","dashboard.pages.settings.generate_credit_slip_label":"Of er een creditnota moet worden gegenereerd.","dashboard.pages.settings.generate_negative_payments":"Een negatieve betaling bij terugbetalingen aanmaken","dashboard.pages.settings.generate_negative_payments_label":"Of er ook een negatieve betaling moet worden gecreëerd bij het uitvoeren van een terugbetaling.","dashboard.pages.settings.generate_voucher":"Een voucher genereren","dashboard.pages.settings.generate_voucher_label":"Of er een voucher moet worden gegenereerd.","dashboard.pages.settings.hide_advance_settings":"Geavanceerde Instellingen Verbergen","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Verander eenvoudig de modus","dashboard.pages.settings.no_im_testing":"Nee, ik wil testen","dashboard.pages.settings.order_number":"Bestellingsnummer","dashboard.pages.settings.order_number2":"bestellingsnummer","dashboard.pages.settings.re_stock_products":"De voorraad aanvullen bij retourproducten","dashboard.pages.settings.re_stock_products_label":"Of terugbetaalde producten moeten worden teruggeplaatst in de voorraad (waardoor de voorraadhoeveelheid wordt verhoogd).","dashboard.pages.settings.refunds":"Terugbetalingen","dashboard.pages.settings.refunds_label":"Terugbetaling omschrijving","dashboard.pages.settings.refunds_label_explanation":"Deze omschrijving wordt gebruikt bij de terugbetaling en zal zichtbaar zijn in Buckaroo en op het bankafschrift van de consument. Wij adviseren om de webshopnaam te gebruiken, zodat klanten de betaling gemakkelijk kunnen herkennen.","dashboard.pages.settings.refunds_label_label":"Indien ingeschakeld, kunt u (gedeeltelijke) terugbetalingen rechtstreeks vanuit uw PrestaShop-beheergebied uitvoeren Read more","dashboard.pages.settings.remove":"Verwijder","dashboard.pages.settings.return_url":"Return-URL","dashboard.pages.settings.return_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop bevestigingspagina.","dashboard.pages.settings.return_url_label":"Stel een aangepaste return-URL in nadat de klant de betaling heeft voltooid.","dashboard.pages.settings.save":"Opslaan","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Instellingen","dashboard.pages.settings.settings_label":"Configureer uw instellingen","dashboard.pages.settings.settings_successfully_updated":"Instellingen succesvol bijgewerkt.","dashboard.pages.settings.shop_name":"Winkelnaam","dashboard.pages.settings.shop_name2":"winkelnaam","dashboard.pages.settings.step_five":"Begin met testen, als het testen goed gaat, kunt u LIVE transacties starten","dashboard.pages.settings.step_four":"Configureer de geavanceerde instellingen & Betaalmethodes","dashboard.pages.settings.step_three":"Klik op ‘test verbinding’, indien correct ga verder naar stap 4.","dashboard.pages.settings.successfully_verified_the_credentials":"De gegevens zijn succesvol geverifieerd!","dashboard.pages.settings.test_connection":"Test Gegevens","dashboard.pages.settings.the_credentials_are_not_valid":"De gegevens zijn onjuist!","dashboard.pages.settings.transaction_description":"Transactie Beschrijving","dashboard.pages.settings.transaction_description_label":'De transactiebeschrijving kan worden gevuld met een statische tekst en tags zoals: {order_number} en {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welkom bij Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wanneer u webwinkel nog niet live is","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ik ben klaar om betalingen te ontvangen","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Uw webwinkel is live en klaar om echte betalingen te ontvangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.giropay":"Giropay","payment_methods.ideal":"iDEAL","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.sofortueberweisung":"Sofort","payment_methods.tinka":"Tinka","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."},WM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Une erreur s'est produite lors du traitement de la transaction : impossible de payer davantage avec des cartes cadeaux","buckaroo.response.invalid_parameter_originaltransaction":"Paramètre originaltransaction non valide.","dashboard.channel_selector.select_channel":"Sélectionnez la chaîne","dashboard.channel_selector.select_channel_label":"Chaque canal a ses paramètres de configuration.","dashboard.config.financial_warning":"Avertissement financier client","dashboard.config.financial_warning.label":"En raison de la réglementation relative aux méthodes BNPL aux Pays-Bas, vous devrez avertir les clients de l'utilisation d'un plan BNPL, car il peut être facile de s'endetter. ","dashboard.config.financial_warning.options.disabled":"Désactivé","dashboard.config.financial_warning.options.enabled":"Activé","dashboard.config.showIssuers":"Afficher la sélection de l'émetteur lors du paiement","dashboard.config.showIssuers.disabled":"Désactiver","dashboard.config.showIssuers.enabled":"Activer","dashboard.config.showIssuers.label":`Lorsque l'option « Désactiver » est sélectionnée, la sélection de l'émetteur pour iDEAL ne sera pas affichée lors du paiement. Au lieu de cela, les clients seront redirigés vers une page distincte où ils pourront choisir leur émetteur iDEAL (c'est-à-dire leur banque). En revanche, la sélection de l'option « Activer » affichera la sélection de l'émetteur directement dans la caisse. Il est important de noter que l'activation de cette option entraînera des coûts supplémentaires de la part de Buckaroo, estimés à environ 0,002 € pour chaque transaction. -Pour obtenir des détails précis sur les coûts, veuillez contacter directement Buckaroo.`,"dashboard.country_select.search_countries":"Rechercher des pays","dashboard.menu.channel":"Canal","dashboard.menu.order_payment_methods":"Modes de paiement des commandes","dashboard.menu.payment_methods":"Méthodes de payement","dashboard.menu.settings":"Paramètres","dashboard.menu.verification_methods":"Méthodes de vérification","dashboard.pages.order_payment_methods.all_countries":"Tous les pays","dashboard.pages.order_payment_methods.explanation_intro":"Vous pouvez facilement modifier l'ordre des modes de paiement en les faisant glisser au bon endroit, de haut en bas.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Comment modifier l'ordre des modes de paiement lors du paiement","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Si vous avez des questions sur ce plugin de Buckaroo, vous pouvez nous contacter par e-mail :","dashboard.pages.order_payment_methods.order_payment_methods":"Modes de paiement des commandes","dashboard.pages.order_payment_methods.order_payment_methods_label":"Modifiez l'ordre des modes de paiement.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Commande de mode de paiement mise à jour avec succès.","dashboard.pages.order_payment_methods.search_country":"Rechercher un pays","dashboard.pages.order_payment_methods.something_went_wrong":"Quelque chose s'est mal passé.","dashboard.pages.order_payment_methods.step_one":"Sélectionnez d'abord le pays pour lequel vous souhaitez modifier l'ordre d'affichage des moyens de paiement.","dashboard.pages.order_payment_methods.step_three":"Enregistrez la commande des modes de paiement choisis et vérifiez si les modes de paiement s'affichent dans le bon ordre lors du paiement de votre boutique en ligne.","dashboard.pages.order_payment_methods.step_two":"Faites glisser et déposez les modes de paiement dans l'ordre de votre choix.","dashboard.pages.payments.add":"Ajouter","dashboard.pages.payments.add_custom_giftcard":"Ajouter une carte cadeau personnalisée","dashboard.pages.payments.all_countries":"Tous les pays","dashboard.pages.payments.allowed_creditcards":"Cartes de crédit et de débit autorisées","dashboard.pages.payments.allowed_creditcards_label":"Seules les cartes de crédit ou de débit sélectionnées seront affichées pour cette méthode","dashboard.pages.payments.allowed_giftcards":"Cartes cadeaux autorisées","dashboard.pages.payments.allowed_giftcards_label":"Seules les cartes cadeaux sélectionnées cette méthode sera affichée","dashboard.pages.payments.allowed_methods":"Modes de paiement autorisés","dashboard.pages.payments.clear":"Clair","dashboard.pages.payments.client_side":"Chiffrement côté client","dashboard.pages.payments.client_side_label":"Activez ou désactivez le comportement du mode de paiement côté client.","dashboard.pages.payments.configure":"Configurer","dashboard.pages.payments.configure_your_payment_method_settings":"Configurez les paramètres de votre mode de paiement","dashboard.pages.payments.configure_your_payment_name_settings":"Configurez vos paramètres {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configurez les paramètres de votre méthode de vérification","dashboard.pages.payments.configure_your_verification_name_settings":"Configurez vos paramètres {verification_name}","dashboard.pages.payments.countries":"Des pays","dashboard.pages.payments.countries_label":"Le mode de paiement ne sera affiché que pour les pays sélectionnés. ","dashboard.pages.payments.custom_giftcard":"Carte cadeau personnalisée","dashboard.pages.payments.custom_icon_url":"URL de l'icône personnalisée","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Entreprise à entreprise","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"D'entreprise à consommateur","dashboard.pages.payments.customer.type.both":"Les deux","dashboard.pages.payments.customer.type_label":"Type de client","dashboard.pages.payments.customer_type":"Type de client","dashboard.pages.payments.display_type":"Type d'affichage du bouton","dashboard.pages.payments.display_type_label":"Ce paramètre détermine la manière dont la sélection de banque pour ce mode de paiement sera affichée lors du paiement.
Vous pouvez choisir entre des boutons radio ou une sélection déroulante.","dashboard.pages.payments.display_types.dropdown":"Dérouler","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Date d'échéance (en jours)","dashboard.pages.payments.edit":"Modifier","dashboard.pages.payments.enter_giftcard_details":"Entrez les détails de la carte-cadeau","dashboard.pages.payments.front_label":"Étiquette avant","dashboard.pages.payments.front_label_label":"Ce nom sera affiché pour ce mode de paiement lors du paiement. ","dashboard.pages.payments.giftcard_name":"Nom de la carte cadeau","dashboard.pages.payments.idin.display_mode":"Mode IDIN :","dashboard.pages.payments.idin.display_mode.global":"Mondial","dashboard.pages.payments.idin.display_mode.product":"Produits spécifiques","dashboard.pages.payments.idin.display_mode_label":"Avec ce paramètre, vous pouvez choisir si iDIN est activé pour tous les produits du magasin (globalement) ou uniquement pour des produits spécifiques.","dashboard.pages.payments.in3.version.label":"Version In3","dashboard.pages.payments.in3.version.v2":"V2 (capacité/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Montant maximum de la commande B2B","dashboard.pages.payments.maximum_order_amount":"Montant maximum de la commande","dashboard.pages.payments.min_order_amount_b2b":"Montant minimum de la commande B2B","dashboard.pages.payments.minimum_order_amount":"Montant minimum de commande","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":"Lorsqu'il est réglé sur « Live », vous pouvez effectuer des paiements réels. ","dashboard.pages.payments.modes_settings.live":"En direct","dashboard.pages.payments.modes_settings.off":"Désactivé","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Montant de la commande autorisé","dashboard.pages.payments.order_amount_allowed_label":"Cette méthode ne sera affichée que lorsque cette condition est remplie.","dashboard.pages.payments.payment_fee_incl_vat":"Frais de paiement inclus. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Vous pouvez facturer des frais lorsque le client sélectionne ce paiement. ","dashboard.pages.payments.payment_methods":"Modes de paiement","dashboard.pages.payments.remove":"Retirer","dashboard.pages.payments.save":"Sauvegarder","dashboard.pages.payments.search_country":"Rechercher un pays","dashboard.pages.payments.search_creditcard":"Rechercher une carte de crédit ou de débit","dashboard.pages.payments.search_giftcard":"Rechercher une carte cadeau","dashboard.pages.payments.seller_protection":"Protection du vendeur","dashboard.pages.payments.seller_protection_disabled":"Non","dashboard.pages.payments.seller_protection_enable":"Activer la protection des vendeurs PayPal","dashboard.pages.payments.seller_protection_enabled":"Oui","dashboard.pages.payments.send_email_instruction":"Envoyer un e-mail d'instructions de paiement","dashboard.pages.payments.send_email_instruction_no":"Non","dashboard.pages.payments.send_email_instruction_yes":"Oui","dashboard.pages.payments.send_email_merchant":"Le marchand envoie un e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Séparer l'autorisation et la capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Lorsque cette option est activée, vous devez capturer manuellement le paiement par carte de crédit ou de débit.","dashboard.pages.payments.service_code":"Code de service","dashboard.pages.payments.service_code_label":"Après avoir demandé votre carte-cadeau personnalisée auprès d'Intersolve, vous recevrez un e-mail concernant votre code de service. ","dashboard.pages.payments.settings":"Paramètres","dashboard.pages.payments.show_country_number_and_more":"et {country_number} plus...","dashboard.pages.payments.show_less":"Montrer moins","dashboard.pages.payments.vat_type_for_wrap":"Type de cuve pour emballage cadeau","dashboard.pages.payments.vat_type_for_wrap_select":"Veuillez sélectionner le type de cuve pour l'emballage cadeau","dashboard.pages.payments.verification_methods":"Méthodes de vérification","dashboard.pages.settings.add":"Ajouter","dashboard.pages.settings.advance_settings":"Réglages avancés","dashboard.pages.settings.checkout_url":"URL de paiement","dashboard.pages.settings.checkout_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de paiement par défaut de PrestaShop.","dashboard.pages.settings.checkout_url_label":"Définissez une URL de paiement personnalisée après que le client a annulé le paiement ou qu'un problème s'est produit pendant le processus.","dashboard.pages.settings.credentials":"Informations d'identification","dashboard.pages.settings.credentials_label":"Obtenez vos informations d'identification Buckaroo auprès du Place Buckaroo","dashboard.pages.settings.custom_scripts":"Scripts personnalisés","dashboard.pages.settings.custom_scripts_label":"Ajoutez du javascript ou du CSS personnalisé à votre paiement.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Exemple","dashboard.pages.settings.explanation_intro":"Bienvenue dans le panneau de configuration de l'application Buckaroo Payment pour votre boutique en ligne PrestaShop. Dans ce panneau, vous pouvez configurer l'application complètement à votre guise. Vous trouverez ci-dessous les étapes pour configurer les paramètres. Pour d'autres questions, veuillez vous référer à notre page de documentation.","dashboard.pages.settings.generate_credit_slip":"Générer un avoir","dashboard.pages.settings.generate_credit_slip_label":"Si une note de crédit doit être générée.","dashboard.pages.settings.generate_negative_payments":"Créer des paiements négatifs lors du remboursement","dashboard.pages.settings.generate_negative_payments_label":"Indique si un paiement négatif doit également être créé lors de l'exécution d'un remboursement.","dashboard.pages.settings.generate_voucher":"Générer un bon","dashboard.pages.settings.generate_voucher_label":"Si un bon doit être généré.","dashboard.pages.settings.hide_advance_settings":"Masquer les paramètres avancés","dashboard.pages.settings.if_you_have_any_questions":"Si vous avez des questions sur ce qui précède, vous pouvez nous contacter par email :","dashboard.pages.settings.if_you_have_any_questions_link":" ou téléphone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Changez facilement de mode","dashboard.pages.settings.no_im_testing":"Non, je teste","dashboard.pages.settings.order_number":"Numéro de commande","dashboard.pages.settings.order_number2":"numéro de commande","dashboard.pages.settings.re_stock_products":"Réapprovisionner les produits","dashboard.pages.settings.re_stock_products_label":"Si les produits remboursés doivent être retournés en stock (augmentant la quantité en stock).","dashboard.pages.settings.refunds":"Remboursements","dashboard.pages.settings.refunds_label":"Description du remboursement","dashboard.pages.settings.refunds_label_explanation":"Cette description sert aux remboursements et sera visible dans Buckaroo et sur le relevé bancaire du consommateur. ","dashboard.pages.settings.refunds_label_label":"Lorsqu'il est activé, vous pouvez effectuer des remboursements (partiels) directement depuis votre zone d'administration PrestaShop En savoir plus","dashboard.pages.settings.remove":"Retirer","dashboard.pages.settings.return_url":"URL de retour","dashboard.pages.settings.return_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de confirmation par défaut de PrestaShop.","dashboard.pages.settings.return_url_label":"Définissez une URL de retour personnalisée une fois que le client a terminé le paiement.","dashboard.pages.settings.save":"Sauvegarder","dashboard.pages.settings.secret_key":"Clef secrète","dashboard.pages.settings.settings":"Paramètres","dashboard.pages.settings.settings_label":"Configurez vos paramètres","dashboard.pages.settings.settings_successfully_updated":"Paramètres mis à jour avec succès.","dashboard.pages.settings.shop_name":"Nom de la boutique","dashboard.pages.settings.shop_name2":"Nom de la boutique","dashboard.pages.settings.step_five":"Commencez les tests, lorsque les tests sont terminés, vous pouvez démarrer des transactions EN DIRECT","dashboard.pages.settings.step_four":"Configurer les paramètres avancés","dashboard.pages.settings.step_one":"Remplissez votre clé du site Web","dashboard.pages.settings.step_three":"Cliquez sur « tester la connexion », lorsque vous êtes d’accord, passez à l’étape 4.","dashboard.pages.settings.step_two":"Remplissez votre clef secrète","dashboard.pages.settings.successfully_verified_the_credentials":"Vérification des informations d'identification réussie !","dashboard.pages.settings.test_connection":"Tester la connexion","dashboard.pages.settings.the_credentials_are_not_valid":"Les informations d'identification ne sont pas valides !","dashboard.pages.settings.transaction_description":"description de la transaction","dashboard.pages.settings.transaction_description_label":'La description de la transaction peut être remplie de texte statique et de balises telles que : {order_number} et {shop name}.',"dashboard.pages.settings.website_key":"Clé du site Web","dashboard.pages.settings.welcome_to_buckaroo":"Bienvenue à Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Quand votre boutique n'est pas encore en ligne","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Oui, je suis prêt à recevoir des paiements","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Votre boutique est en ligne et prête à recevoir des paiements réels","payment_methods.afterpay":"Rivière","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Payer","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Lien de facturation","payment_methods.creditcard":"Cartes","payment_methods.eps":"PSE","payment_methods.giftcard":"Carte cadeau","payment_methods.giropay":"Giropay","payment_methods.ideal":"idéal","payment_methods.idin":"IDIN","payment_methods.in3":"Dans3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"VOIE MB","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"Payer par banque","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"Pay Pal","payment_methods.payperemail":"Payer par e-mail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"Prélèvement SEPA","payment_methods.sofortueberweisung":"Sofort","payment_methods.tinka":"Tinka","payment_methods.transfer":"Transfert","payment_methods.trustly":"En toute confiance","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"IDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."},GM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Bei der Verarbeitung der Transaktion ist ein Fehler aufgetreten: Es kann nicht mehr mit Geschenkkarten bezahlt werden","buckaroo.response.invalid_parameter_originaltransaction":"Ungültiger Parameter Originaltransaktion.","dashboard.channel_selector.select_channel":"Wählen Sie Kanal","dashboard.channel_selector.select_channel_label":"Jeder Kanal hat seine Konfigurationseinstellungen.","dashboard.config.financial_warning":"Finanzwarnung für Kunden","dashboard.config.financial_warning.label":"Aufgrund der Vorschriften für BNPL-Methoden in den Niederlanden müssen Sie Kunden vor der Verwendung eines BNPL-Plans warnen, da es leicht zu Schulden kommen kann. ","dashboard.config.financial_warning.options.disabled":"Deaktiviert","dashboard.config.financial_warning.options.enabled":"Ermöglicht","dashboard.config.showIssuers":"Emittentenauswahl im Checkout anzeigen","dashboard.config.showIssuers.disabled":"Deaktivieren","dashboard.config.showIssuers.enabled":"Aktivieren","dashboard.config.showIssuers.label":`Wenn die Option „Deaktivieren“ ausgewählt ist, wird die Emittentenauswahl für iDEAL im Checkout nicht angezeigt. Stattdessen werden Kunden auf eine separate Seite weitergeleitet, auf der sie ihren iDEAL-Aussteller (d. h. ihre Bank) auswählen können. Wenn Sie hingegen die Option „Aktivieren“ auswählen, wird die Emittentenauswahl direkt im Checkout angezeigt. Es ist wichtig zu beachten, dass die Aktivierung dieser Option zusätzliche Kosten von Buckaroo verursacht, die auf etwa 0,002 € pro Transaktion geschätzt werden. -Für genaue Kostendetails wenden Sie sich bitte direkt an Buckaroo.`,"dashboard.country_select.search_countries":"Länder suchen","dashboard.menu.channel":"Kanal","dashboard.menu.order_payment_methods":"Zahlungsmethoden für Bestellungen","dashboard.menu.payment_methods":"Zahlungsarten","dashboard.menu.settings":"Einstellungen","dashboard.menu.verification_methods":"Überprüfungsmethoden","dashboard.pages.order_payment_methods.all_countries":"Alle Länder","dashboard.pages.order_payment_methods.explanation_intro":"Sie können die Reihenfolge der Zahlungsmethoden ganz einfach ändern, indem Sie sie von oben nach unten an die richtige Stelle ziehen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"So ändern Sie die Reihenfolge der Zahlungsarten im Checkout","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Wenn Sie Fragen zu diesem Plugin von Buckaroo haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.order_payment_methods.order_payment_methods":"Zahlungsmethoden für die Bestellung","dashboard.pages.order_payment_methods.order_payment_methods_label":"Ändern Sie die Reihenfolge der Zahlungsmethoden.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Die Bestellung der Zahlungsmethode wurde erfolgreich aktualisiert.","dashboard.pages.order_payment_methods.search_country":"Land suchen","dashboard.pages.order_payment_methods.something_went_wrong":"Etwas ist schief gelaufen.","dashboard.pages.order_payment_methods.step_one":"Wählen Sie zunächst das Land aus, für das Sie die Anzeigereihenfolge der Zahlungsarten ändern möchten.","dashboard.pages.order_payment_methods.step_three":"Speichern Sie die von Ihnen gewählte Zahlungsarten-Bestellung und prüfen Sie, ob die Zahlungsarten im Checkout Ihres Webshops in der richtigen Reihenfolge angezeigt werden.","dashboard.pages.order_payment_methods.step_two":"Ziehen Sie die Zahlungsmethoden per Drag-and-Drop in die gewünschte Reihenfolge.","dashboard.pages.payments.add":"Hinzufügen","dashboard.pages.payments.add_custom_giftcard":"Fügen Sie eine benutzerdefinierte Geschenkkarte hinzu","dashboard.pages.payments.all_countries":"Alle Länder","dashboard.pages.payments.allowed_creditcards":"Erlaubte Kredit- und Debitkarten","dashboard.pages.payments.allowed_creditcards_label":"Für diese Methode werden nur ausgewählte Kredit- oder Debitkarten angezeigt","dashboard.pages.payments.allowed_giftcards":"Erlaubte Geschenkkarten","dashboard.pages.payments.allowed_giftcards_label":"Diese Methode wird nur für ausgewählte Geschenkkarten angezeigt","dashboard.pages.payments.allowed_methods":"Erlaubte Zahlungsmethoden","dashboard.pages.payments.clear":"Klar","dashboard.pages.payments.client_side":"Clientseitige Verschlüsselung","dashboard.pages.payments.client_side_label":"Aktivieren oder deaktivieren Sie das Verhalten der clientseitigen Zahlungsmethode.","dashboard.pages.payments.configure":"Konfigurieren","dashboard.pages.payments.configure_your_payment_method_settings":"Konfigurieren Sie Ihre Zahlungsmethodeneinstellungen","dashboard.pages.payments.configure_your_payment_name_settings":"Konfigurieren Sie Ihre {payment_name}-Einstellungen","dashboard.pages.payments.configure_your_verification_method_settings":"Konfigurieren Sie die Einstellungen Ihrer Verifizierungsmethode","dashboard.pages.payments.configure_your_verification_name_settings":"Konfigurieren Sie Ihre {verification_name}-Einstellungen","dashboard.pages.payments.countries":"Länder","dashboard.pages.payments.countries_label":"Die Zahlungsart wird nur für ausgewählte Länder angezeigt. ","dashboard.pages.payments.custom_giftcard":"Individuelle Geschenkkarte","dashboard.pages.payments.custom_icon_url":"Benutzerdefinierte Symbol-URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Von Geschäft zu Geschäft","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-Consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Kundentyp","dashboard.pages.payments.customer_type":"Kundentyp","dashboard.pages.payments.display_type":"Schaltflächenanzeigetyp","dashboard.pages.payments.display_type_label":"Diese Einstellung legt fest, wie die Bankauswahl für diese Zahlungsart im Checkout angezeigt wird.
Sie können zwischen Optionsfeldern oder einer Dropdown-Auswahl wählen.","dashboard.pages.payments.display_types.dropdown":"Runterfallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Fälligkeitsdatum (in Tagen)","dashboard.pages.payments.edit":"Bearbeiten","dashboard.pages.payments.enter_giftcard_details":"Geben Sie die Details der Geschenkkarte ein","dashboard.pages.payments.front_label":"Vorderes Etikett","dashboard.pages.payments.front_label_label":"Dieser Name wird für diese Zahlungsart im Checkout angezeigt. ","dashboard.pages.payments.giftcard_name":"Name der Geschenkkarte","dashboard.pages.payments.idin.display_mode":"iDIN-Modus:","dashboard.pages.payments.idin.display_mode.global":"Global","dashboard.pages.payments.idin.display_mode.product":"Spezifische Produkte","dashboard.pages.payments.idin.display_mode_label":"Mit dieser Einstellung können Sie auswählen, ob iDIN für alle Produkte im Shop (global) oder nur für bestimmte Produkte aktiviert ist.","dashboard.pages.payments.in3.version.label":"In3-Version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximaler B2B-Bestellbetrag","dashboard.pages.payments.maximum_order_amount":"Maximaler Bestellwert","dashboard.pages.payments.min_order_amount_b2b":"Mindestbestellwert für B2B","dashboard.pages.payments.minimum_order_amount":"Mindestbestellmenge","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":"Bei der Einstellung „Live“ können Sie tatsächliche Zahlungen durchführen. ","dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Aus","dashboard.pages.payments.modes_settings.test":"Prüfen","dashboard.pages.payments.order_amount_allowed":"Bestellmenge zulässig","dashboard.pages.payments.order_amount_allowed_label":"Diese Methode wird nur angezeigt, wenn diese Bedingung erfüllt ist.","dashboard.pages.payments.payment_fee_incl_vat":"Zahlungsgebühr inkl. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Sie können eine Gebühr erheben, wenn der Kunde diese Zahlung auswählt. ","dashboard.pages.payments.payment_methods":"Zahlungsmethoden","dashboard.pages.payments.remove":"Entfernen","dashboard.pages.payments.save":"Speichern","dashboard.pages.payments.search_country":"Land suchen","dashboard.pages.payments.search_creditcard":"Suche Kredit- oder Debitkarte","dashboard.pages.payments.search_giftcard":"Geschenkkarte suchen","dashboard.pages.payments.seller_protection":"Verkäuferschutz","dashboard.pages.payments.seller_protection_disabled":"NEIN","dashboard.pages.payments.seller_protection_enable":"Aktivieren Sie den PayPal-Verkäuferschutz","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Senden Sie eine E-Mail mit Zahlungsanweisungen","dashboard.pages.payments.send_email_instruction_no":"NEIN","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Händler sendet E-Mail","dashboard.pages.payments.seperate_authorize_and_capture":"Getrennte Autorisierung und Erfassung","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wenn diese Option aktiviert ist, müssen Sie die Kredit- oder Debitkartenzahlung manuell erfassen.","dashboard.pages.payments.service_code":"Service code","dashboard.pages.payments.service_code_label":"Nachdem Sie Ihre individuelle Geschenkkarte bei Intersolve angefordert haben, erhalten Sie eine E-Mail mit Ihrem Servicecode. ","dashboard.pages.payments.settings":"Einstellungen","dashboard.pages.payments.show_country_number_and_more":"und {country_number} mehr...","dashboard.pages.payments.show_less":"Zeige weniger","dashboard.pages.payments.vat_type_for_wrap":"Mehrwertsteuertyp für Geschenkverpackungen","dashboard.pages.payments.vat_type_for_wrap_select":"Bitte wählen Sie den Mehrwertsteuertyp für die Geschenkverpackung aus","dashboard.pages.payments.verification_methods":"Überprüfungsmethoden","dashboard.pages.settings.add":"Hinzufügen","dashboard.pages.settings.advance_settings":"Erweiterte Einstellungen","dashboard.pages.settings.checkout_url":"Checkout-URL","dashboard.pages.settings.checkout_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Checkout-Seite von PrestaShop zurück.","dashboard.pages.settings.checkout_url_label":"Legen Sie eine benutzerdefinierte Checkout-URL fest, nachdem der Kunde die Zahlung abgebrochen hat oder während des Vorgangs ein Fehler aufgetreten ist.","dashboard.pages.settings.credentials":"Referenzen","dashboard.pages.settings.credentials_label":"Holen Sie sich Ihre Buckaroo-Anmeldeinformationen von der Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Benutzerdefinierte Skripte","dashboard.pages.settings.custom_scripts_label":"Fügen Sie Ihrem Checkout benutzerdefiniertes Javascript oder CSS hinzu.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Beispiel","dashboard.pages.settings.explanation_intro":"Willkommen im Konfigurationsbereich der Buckaroo Payment App für Ihren PrestaShop-Webshop. In diesem Bereich können Sie die App ganz nach Ihren Wünschen einstellen. Nachfolgend finden Sie die Schritte zum Konfigurieren der Einstellungen. Weitere Fragen finden Sie in unserem Dokumentationsseite.","dashboard.pages.settings.generate_credit_slip":"Erstellen Sie einen Gutschriftsbeleg","dashboard.pages.settings.generate_credit_slip_label":"Ob eine Gutschrift erstellt werden soll.","dashboard.pages.settings.generate_negative_payments":"Erstellen Sie negative Zahlungen bei Rückerstattung","dashboard.pages.settings.generate_negative_payments_label":"Ob bei einer Rückerstattung auch eine negative Zahlung erstellt werden muss.","dashboard.pages.settings.generate_voucher":"Generieren Sie einen Gutschein","dashboard.pages.settings.generate_voucher_label":"Ob ein Gutschein generiert werden soll.","dashboard.pages.settings.hide_advance_settings":"Verberge erweiterte Einstellungen","dashboard.pages.settings.if_you_have_any_questions":"Wenn Sie Fragen zu den oben genannten Punkten haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.settings.if_you_have_any_questions_link":" oder Telefon ","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Ändern Sie ganz einfach den Modus","dashboard.pages.settings.no_im_testing":"Nein, ich teste","dashboard.pages.settings.order_number":"Bestellnummer","dashboard.pages.settings.order_number2":"Bestellnummer","dashboard.pages.settings.re_stock_products":"Produkte wieder auffüllen","dashboard.pages.settings.re_stock_products_label":"Ob erstattete Produkte wieder in den Lagerbestand aufgenommen werden sollen (Erhöhung der Lagermenge).","dashboard.pages.settings.refunds":"Rückerstattungen","dashboard.pages.settings.refunds_label":"Rückerstattungsbeschreibung","dashboard.pages.settings.refunds_label_explanation":"Diese Beschreibung wird für die Rückerstattungen verwendet und ist in Buckaroo und auf dem Kontoauszug des Verbrauchers sichtbar. ","dashboard.pages.settings.refunds_label_label":"Wenn diese Option aktiviert ist, können Sie (teilweise) Rückerstattungen direkt in Ihrem PrestaShop-Administrationsbereich vornehmen Mehr lesen","dashboard.pages.settings.remove":"Entfernen","dashboard.pages.settings.return_url":"Rückgabe-URL","dashboard.pages.settings.return_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Bestätigungsseite von PrestaShop zurück.","dashboard.pages.settings.return_url_label":"Legen Sie eine benutzerdefinierte Rückgabe-URL fest, nachdem der Kunde die Zahlung abgeschlossen hat.","dashboard.pages.settings.save":"Speichern","dashboard.pages.settings.secret_key":"Geheimer Schlüssel","dashboard.pages.settings.settings":"Einstellungen","dashboard.pages.settings.settings_label":"Konfigurieren Sie Ihre Einstellungen","dashboard.pages.settings.settings_successfully_updated":"Einstellungen erfolgreich aktualisiert.","dashboard.pages.settings.shop_name":"Laden Name","dashboard.pages.settings.shop_name2":"Laden Name","dashboard.pages.settings.step_five":"Beginnen Sie mit dem Testen. Wenn der Test in Ordnung ist, können Sie LIVE-Transaktionen starten","dashboard.pages.settings.step_four":"Konfigurieren Sie erweiterte Einstellungen","dashboard.pages.settings.step_one":"Füllen Sie Ihre aus Websiteschlüssel","dashboard.pages.settings.step_three":"Klicken Sie auf „Verbindung testen“. Wenn OK, fahren Sie mit Schritt 4 fort.","dashboard.pages.settings.step_two":"Füllen Sie Ihre aus geheimer Schlüssel","dashboard.pages.settings.successfully_verified_the_credentials":"Die Anmeldeinformationen wurden erfolgreich überprüft!","dashboard.pages.settings.test_connection":"Testverbindung","dashboard.pages.settings.the_credentials_are_not_valid":"Die Anmeldedaten sind ungültig!","dashboard.pages.settings.transaction_description":"Transaktion Beschreibung","dashboard.pages.settings.transaction_description_label":'Die Transaktionsbeschreibung kann mit statischem Text und Tags wie den folgenden gefüllt werden: {order_number} Und {shop_name}.',"dashboard.pages.settings.website_key":"Website-Schlüssel","dashboard.pages.settings.welcome_to_buckaroo":"Willkommen in Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wenn Ihr Shop noch nicht live ist","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ich bin bereit, Zahlungen zu erhalten","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Ihr Shop ist live und bereit, echte Zahlungen zu empfangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.creditcard":"Karten","payment_methods.eps":"EPS","payment_methods.giftcard":"Geschenkkarte","payment_methods.giropay":"Giropay","payment_methods.ideal":"Ideal","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WEG","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA-Lastschrift","payment_methods.sofortueberweisung":"Sofort","payment_methods.tinka":"Tinka","payment_methods.transfer":"Überweisen","payment_methods.trustly":"Vertrauenswürdig","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."};/* +For specific products you also need to enable it for the products in the PrestaShop catalog.`,"dashboard.pages.payments.in3.version.label":"In3 version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximum B2B order amount","dashboard.pages.payments.maximum_order_amount":"Maximum order amount","dashboard.pages.payments.min_order_amount_b2b":"Minimum B2B order amount","dashboard.pages.payments.minimum_order_amount":"Minimum order amount","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":'When set to "Live" you can do actual payments. When set to "Testing" you can do test transactions. This payment method will not appear when it is set to "Off".',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Off","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Order amount allowed","dashboard.pages.payments.order_amount_allowed_label":"This method will only be shown when this condition is met.","dashboard.pages.payments.payment_fee_incl_vat":"Payment fee incl. VAT","dashboard.pages.payments.payment_fee_incl_vat_label":"You can charge a fee when the customer select this payment. Specify static (e.g. 1.50). Decimals must be separated by a dot (.)","dashboard.pages.payments.payment_methods":"Payments methods","dashboard.pages.payments.remove":"Remove","dashboard.pages.payments.save":"Save","dashboard.pages.payments.search_country":"Search Country","dashboard.pages.payments.search_creditcard":"Search Credit- or debitcard","dashboard.pages.payments.search_giftcard":"Search Giftcard","dashboard.pages.payments.seller_protection":"Seller protection","dashboard.pages.payments.seller_protection_disabled":"No","dashboard.pages.payments.seller_protection_enable":"Enable PayPal Seller Protection","dashboard.pages.payments.seller_protection_enabled":"Yes","dashboard.pages.payments.send_email_instruction":"Send payment instruction email","dashboard.pages.payments.send_email_instruction_no":"No","dashboard.pages.payments.send_email_instruction_yes":"Yes","dashboard.pages.payments.send_email_merchant":"Merchant sends email","dashboard.pages.payments.seperate_authorize_and_capture":"Seperate authorize and capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"When this option is enabled you have to manually capture the credit- or debitcard payment.","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"After you request your custom giftcard by Intersolve you will receive an email about your service code. If you have any questions about this do not hesitate to mail us at ","dashboard.pages.payments.settings":"Settings","dashboard.pages.payments.show_country_number_and_more":"and {country_number} more...","dashboard.pages.payments.show_less":"Show less","dashboard.pages.payments.vat_type_for_wrap":"Vat type for gift wrapping","dashboard.pages.payments.vat_type_for_wrap_select":"Please select vat type for gift wrapping","dashboard.pages.payments.verification_methods":"Verification methods","dashboard.pages.settings.add":"Add","dashboard.pages.settings.advance_settings":"Advanced Settings","dashboard.pages.settings.checkout_url":"Checkout URL","dashboard.pages.settings.checkout_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop checkout page.","dashboard.pages.settings.checkout_url_label":"Set a custom checkout URL after the customer cancel the payment or something went wrong during the process.","dashboard.pages.settings.credentials":"Credentials","dashboard.pages.settings.credentials_label":"Get your Buckaroo credentials from the Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Custom scripts","dashboard.pages.settings.custom_scripts_label":"Add custom javascript or css to your checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Example","dashboard.pages.settings.explanation_intro":"Welcome to the configuration panel of the Buckaroo Payment app for your PrestaShop webshop. In this panel you can set the app completely to your liking. Below you will find the steps to configue the settings. For further questions, please refer to our documentation page.","dashboard.pages.settings.generate_credit_slip":"Generate a Credit Slip","dashboard.pages.settings.generate_credit_slip_label":"Whether a credit note should be generated.","dashboard.pages.settings.generate_negative_payments":"Create Negative Payments on Refund","dashboard.pages.settings.generate_negative_payments_label":"Whether a negative payment does also need to be created when performing a refund.","dashboard.pages.settings.generate_voucher":"Generate a Voucher","dashboard.pages.settings.generate_voucher_label":"Whether a voucher should be generated.","dashboard.pages.settings.hide_advance_settings":"Hide Advanced Settings","dashboard.pages.settings.if_you_have_any_questions":"If you have any questions about the above, you can contact us by email:","dashboard.pages.settings.if_you_have_any_questions_link":" or phone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Easily change the mode","dashboard.pages.settings.no_im_testing":"No, I'm Testing","dashboard.pages.settings.order_number":"Order number","dashboard.pages.settings.order_number2":"order_number","dashboard.pages.settings.re_stock_products":"Re-stock Products","dashboard.pages.settings.re_stock_products_label":"Whether refunded products should be returned to inventory (increasing the quantity in stock).","dashboard.pages.settings.refunds":"Refunds","dashboard.pages.settings.refunds_label":"Refund Description","dashboard.pages.settings.refunds_label_explanation":"This description is used for the refunds and will be visible in Buckaroo and on the bank statement of the consumer. We recommend using the webshop name so customers can easily recognize the payment.","dashboard.pages.settings.refunds_label_label":"When enabled you can do (partial) refunds directly from your PrestaShop admin area Read more","dashboard.pages.settings.remove":"Remove","dashboard.pages.settings.return_url":"Return URL","dashboard.pages.settings.return_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop confirmation page.","dashboard.pages.settings.return_url_label":"Set a custom return URL after the customer finishes the payment.","dashboard.pages.settings.save":"Save","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Settings","dashboard.pages.settings.settings_label":"Configure your settings","dashboard.pages.settings.settings_successfully_updated":"Settings successfully updated.","dashboard.pages.settings.shop_name":"Shop name","dashboard.pages.settings.shop_name2":"shop_name","dashboard.pages.settings.step_five":"Start testing, when testing is oke you can start LIVE transactions","dashboard.pages.settings.step_four":"Configure advanced settings & payment methods","dashboard.pages.settings.step_one":"Fill in your websitekey","dashboard.pages.settings.step_three":"Click on ‘test connection’, when oke proceed to step 4.","dashboard.pages.settings.step_two":"Fill in your secretkey","dashboard.pages.settings.successfully_verified_the_credentials":"Successfully verified the credentials!","dashboard.pages.settings.test_connection":"Test Connection","dashboard.pages.settings.the_credentials_are_not_valid":"The credentials are not valid!","dashboard.pages.settings.transaction_description":"Transaction Description","dashboard.pages.settings.transaction_description_label":'Transaction description can be filled with static text and tags like: {order_number} and {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welcome to Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"When your shop is not live yet","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Yes, I'm ready to receive payments","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Your shop is live and ready to receive real payments","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.giropay":"Giropay","payment_methods.ideal":"iDEAL","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.sofortueberweisung":"Sofort","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."},VM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Er is een fout opgetreden tijdens het verwerken van de transactie: Je kunt niet meer cadeaukaarten gebruiken","buckaroo.response.invalid_parameter_originaltransaction":"Ongeldige parameter originaltransaction.","dashboard.channel_selector.select_channel":"Selecteer Kanaal","dashboard.channel_selector.select_channel_label":"Elk kanaal heeft zijn eigen configuratie-instellingen.","dashboard.config.financial_warning":"Financiële Waarschuwing","dashboard.config.financial_warning.label":"Vanwege de voorschriften voor achteraf betaalmethoden in Nederland dien je klanten te waarschuwen voor het gebruik van een achteraf betaalmethode omdat het gemakkelijk kan leiden tot schulden. Wanneer deze functie is ingeschakeld, wordt er een waarschuwing weergegeven tijdens het afrekenen. Let op dat deze instelling alleen van toepassing is op klanten in Nederland.","dashboard.config.financial_warning.options.disabled":"Uitgeschakeld","dashboard.config.financial_warning.options.enabled":"Ingeschakeld","dashboard.config.showIssuers":"Weergeef de bankkeuze in de checkout","dashboard.config.showIssuers.disabled":"Uitgeschakeld","dashboard.config.showIssuers.enabled":"Inschakelen","dashboard.config.showIssuers.label":`Wanneer de optie 'Uitgeschakeld' is geselecteerd, zal de bankkeuze voor iDEAL niet worden weergegeven in de checkout. In plaats daarvan worden klanten doorgestuurd naar een aparte pagina waar ze hun eigen bank kunnen kiezen. Aan de andere kant zal het aanzetten van deze functie de bankkeuze direct in de checkout weergeven. Het is belangrijk om te melden dat het inschakelen van deze optie extra kosten met zich mee zal brengen van Buckaroo, geschat op ongeveer €0.002 per transactie. Voor nauwkeurige kostendetails kunt u rechtstreeks contact opnemen met Buckaroo.`,"dashboard.country_select.search_countries":"Zoek Landen","dashboard.menu.channel":"Kanaal","dashboard.menu.order_payment_methods":"Betaalmethoden Volgorde","dashboard.menu.payment_methods":"Betaalmethoden","dashboard.menu.settings":"Instellingen","dashboard.menu.verification_methods":"Verificatiemethoden","dashboard.pages.order_payment_methods.all_countries":"Alle landen","dashboard.pages.order_payment_methods.explanation_intro":"Om de betaalmethoden per land in de juiste volgorde in te stellen, dient u aan de linkerkant van dit scherm het gewenste land te selecteren. Uw krijgt dan een overzicht van de betaalmethoden die voor dat land 'aan' staan. U kunt vervolgens de betaalmethoden in de juiste volgorde zetten door te slepen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Hoe u uw betaalmethode volgorde aan kunt passen","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Heeft u vragen over deze plugin van Buckaroo, dan kunt u contact met ons opnemen via e-mail:","dashboard.pages.order_payment_methods.order_payment_methods":"Betaalmethode volgorde","dashboard.pages.order_payment_methods.order_payment_methods_label":"Wijzig de volgorde van betaalmethoden","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Betaalmethoden volgorde succesvol geüpdatet.","dashboard.pages.order_payment_methods.search_country":"Zoek land","dashboard.pages.order_payment_methods.something_went_wrong":"Er is iets fout gegaan.","dashboard.pages.order_payment_methods.step_one":"Selecteer het land waarvoor u de volgorde van de betaalmethoden wilt wijzigen.","dashboard.pages.order_payment_methods.step_three":"Sla de instellingen op en controleer in uw webshop (checkout) of alles correct weergeven wordt.","dashboard.pages.order_payment_methods.step_two":"Sleep de betaalmethoden in de volgorde van uw voorkeur.","dashboard.pages.payments.add":"Toevoegen","dashboard.pages.payments.add_custom_giftcard":"Eigen cadeaukaart toevoegen","dashboard.pages.payments.all_countries":"Alle landen","dashboard.pages.payments.allowed_creditcards":"Toegestane Cards","dashboard.pages.payments.allowed_creditcards_label":"Alleen geselecteerde credit- of debitcards worden op deze manier getoond","dashboard.pages.payments.allowed_giftcards":"Toegestane cadeaukaarten","dashboard.pages.payments.allowed_giftcards_label":"Alleen geselecteerde cadeaukaarten worden op deze manier getoond","dashboard.pages.payments.allowed_methods":"Toegestane betaalmethoden","dashboard.pages.payments.clear":"Resetten","dashboard.pages.payments.client_side":"Cliënt Side Encryption","dashboard.pages.payments.client_side_label":"Gedrag van cliëntzijdige betaalmethode in- of uitschakelen.","dashboard.pages.payments.configure":"Configuratie","dashboard.pages.payments.configure_your_payment_method_settings":"Configureer uw betaalmethoden instellingen","dashboard.pages.payments.configure_your_payment_name_settings":"Configureer uw instellingen voor {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configureer uw instellingen voor de verificatiemethoden","dashboard.pages.payments.configure_your_verification_name_settings":"Configureer uw instellingen voor {verification_name}","dashboard.pages.payments.countries":"Landen","dashboard.pages.payments.countries_label":"Alleen geselecteerde landen zullen deze betaalmethode tonen, laat dit veld leeg om de methode voor alle landen in te schakelen.","dashboard.pages.payments.custom_giftcard":"Eigen cadeaukaart","dashboard.pages.payments.custom_icon_url":"Aangepaste cadeaukaart logo URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Business-to-Business","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Klanttype","dashboard.pages.payments.customer_type":"Klant type","dashboard.pages.payments.display_type":"Weergavetype","dashboard.pages.payments.display_type_label":"Deze instelling bepaalt hoe de bankselectie voor deze betaalmethode wordt weergegeven bij het afrekenen.
U kunt kiezen tussen keuzerondjes of een vervolgkeuzelijst.","dashboard.pages.payments.display_types.dropdown":"Laten vallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Vervaldatum (in dagen)","dashboard.pages.payments.edit":"Aanpassen","dashboard.pages.payments.enter_giftcard_details":"Voer cadeaukaartgegevens in","dashboard.pages.payments.front_label":"Betaalmethode naam","dashboard.pages.payments.front_label_label":"Deze naam wordt weergegeven in de checkout.","dashboard.pages.payments.giftcard_name":"Cadeaukaart Naam","dashboard.pages.payments.idin.display_mode":"iDIN modus:","dashboard.pages.payments.idin.display_mode.global":"Globaal","dashboard.pages.payments.idin.display_mode.product":"Specifieke producten","dashboard.pages.payments.idin.display_mode_label":"Met deze instelling kunt u selecteren of iDIN is ingeschakeld voor alle producten in de winkel (globaal) of alleen voor specifieke producten. Voor specifieke producten dient u het ook in te schakelen voor de producten in de PrestaShop-catalogus.","dashboard.pages.payments.in3.version.label":"In3 versie","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximale B2B bestelbedrag","dashboard.pages.payments.maximum_order_amount":"Maximaal toegestane bestelbedrag","dashboard.pages.payments.min_order_amount_b2b":"Minimale B2B bestelbedrag","dashboard.pages.payments.minimum_order_amount":"Minimaal toegestane bestelbedrag","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":'Indien ingesteld op "Live", dan kunt u daadwerkelijke betalingen doen. Indien ingesteld op "Test", dan kun je testtransacties doen. De betaalmethode verschijnt niet als deze op "Uit" staat.',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Uit","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Bestelbedrag restricties","dashboard.pages.payments.order_amount_allowed_label":"Deze methode wordt alleen weergegeven als aan deze voorwaarde is voldaan.","dashboard.pages.payments.payment_fee_incl_vat":"Betaalkosten incl. BTW","dashboard.pages.payments.payment_fee_incl_vat_label":"U kunt kosten in rekening brengen wanneer de klant deze betaalmethode selecteert. Specificeer statisch (bijv. 1,50). Decimalen moeten worden gescheiden door een punt (.)","dashboard.pages.payments.payment_methods":"Betaalmethoden","dashboard.pages.payments.remove":"Verwijderen","dashboard.pages.payments.save":"Opslaan","dashboard.pages.payments.search_country":"Zoek Land","dashboard.pages.payments.search_creditcard":"Zoek Credit- of debitcard","dashboard.pages.payments.search_giftcard":"Zoek Cadeaukaart","dashboard.pages.payments.seller_protection":"Verkopersbescherming","dashboard.pages.payments.seller_protection_disabled":"Nee","dashboard.pages.payments.seller_protection_enable":"Schakel de PayPal Verkopersbescherming in","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Stuur betalingsinstructie e-mail","dashboard.pages.payments.send_email_instruction_no":"Nee","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Merchant stuurt e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Losse authorize en capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wanneer deze optie is ingeschakeld, dient u de betaling van de credit- of debitcard handmatig vast te leggen (capture).","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"Nadat u uw persoonlijke cadeaukaart bij Intersolve heeft aangevraagd, ontvangt u een e-mail over uw servicecode. Als u hierover vragen heeft, aarzel dan niet om ons te mailen op","dashboard.pages.payments.settings":"Instellingen","dashboard.pages.payments.show_country_number_and_more":"en {country_number} meer...","dashboard.pages.payments.show_less":"Minder tonen","dashboard.pages.payments.vat_type_for_wrap":"BTW-type voor cadeauverpakking","dashboard.pages.payments.vat_type_for_wrap_select":"Selecteer BTW-type voor cadeauverpakking","dashboard.pages.payments.verification_methods":"Verificatiemethoden","dashboard.pages.settings.add":"Toevoegen","dashboard.pages.settings.advance_settings":"Geavanceerde Instellingen","dashboard.pages.settings.checkout_url":"Cancel-URL","dashboard.pages.settings.checkout_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop afrekenpagina.","dashboard.pages.settings.checkout_url_label":"Stel een aangepaste cancel-URL in nadat de klant de betaling heeft geannuleerd of als er iets mis is gegaan tijdens het proces.","dashboard.pages.settings.credentials":"Buckaroo gegevens","dashboard.pages.settings.credentials_label":"Haal uw Buckaroo gegevens op uit de Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Aangepaste scripts","dashboard.pages.settings.custom_scripts_label":"Voeg aangepaste javascript of css code toe aan uw checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Voorbeeld","dashboard.pages.settings.explanation_intro":"Welkom bij het configuratiescherm van de Buckaroo Payment app voor jouw PrestaShop webshop. In dit scherm kunt u de app helemaal naar wens instellen. Hieronder vind u de stappen om de instellingen te configureren. Voor verdere vragen verwijzen wij u naar onze documentatie pagina.","dashboard.pages.settings.generate_credit_slip":"Een creditnota genereren","dashboard.pages.settings.generate_credit_slip_label":"Of er een creditnota moet worden gegenereerd.","dashboard.pages.settings.generate_negative_payments":"Een negatieve betaling bij terugbetalingen aanmaken","dashboard.pages.settings.generate_negative_payments_label":"Of er ook een negatieve betaling moet worden gecreëerd bij het uitvoeren van een terugbetaling.","dashboard.pages.settings.generate_voucher":"Een voucher genereren","dashboard.pages.settings.generate_voucher_label":"Of er een voucher moet worden gegenereerd.","dashboard.pages.settings.hide_advance_settings":"Geavanceerde Instellingen Verbergen","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Verander eenvoudig de modus","dashboard.pages.settings.no_im_testing":"Nee, ik wil testen","dashboard.pages.settings.order_number":"Bestellingsnummer","dashboard.pages.settings.order_number2":"bestellingsnummer","dashboard.pages.settings.re_stock_products":"De voorraad aanvullen bij retourproducten","dashboard.pages.settings.re_stock_products_label":"Of terugbetaalde producten moeten worden teruggeplaatst in de voorraad (waardoor de voorraadhoeveelheid wordt verhoogd).","dashboard.pages.settings.refunds":"Terugbetalingen","dashboard.pages.settings.refunds_label":"Terugbetaling omschrijving","dashboard.pages.settings.refunds_label_explanation":"Deze omschrijving wordt gebruikt bij de terugbetaling en zal zichtbaar zijn in Buckaroo en op het bankafschrift van de consument. Wij adviseren om de webshopnaam te gebruiken, zodat klanten de betaling gemakkelijk kunnen herkennen.","dashboard.pages.settings.refunds_label_label":"Indien ingeschakeld, kunt u (gedeeltelijke) terugbetalingen rechtstreeks vanuit uw PrestaShop-beheergebied uitvoeren Read more","dashboard.pages.settings.remove":"Verwijder","dashboard.pages.settings.return_url":"Return-URL","dashboard.pages.settings.return_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop bevestigingspagina.","dashboard.pages.settings.return_url_label":"Stel een aangepaste return-URL in nadat de klant de betaling heeft voltooid.","dashboard.pages.settings.save":"Opslaan","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Instellingen","dashboard.pages.settings.settings_label":"Configureer uw instellingen","dashboard.pages.settings.settings_successfully_updated":"Instellingen succesvol bijgewerkt.","dashboard.pages.settings.shop_name":"Winkelnaam","dashboard.pages.settings.shop_name2":"winkelnaam","dashboard.pages.settings.step_five":"Begin met testen, als het testen goed gaat, kunt u LIVE transacties starten","dashboard.pages.settings.step_four":"Configureer de geavanceerde instellingen & Betaalmethodes","dashboard.pages.settings.step_three":"Klik op ‘test verbinding’, indien correct ga verder naar stap 4.","dashboard.pages.settings.successfully_verified_the_credentials":"De gegevens zijn succesvol geverifieerd!","dashboard.pages.settings.test_connection":"Test Gegevens","dashboard.pages.settings.the_credentials_are_not_valid":"De gegevens zijn onjuist!","dashboard.pages.settings.transaction_description":"Transactie Beschrijving","dashboard.pages.settings.transaction_description_label":'De transactiebeschrijving kan worden gevuld met een statische tekst en tags zoals: {order_number} en {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welkom bij Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wanneer u webwinkel nog niet live is","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ik ben klaar om betalingen te ontvangen","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Uw webwinkel is live en klaar om echte betalingen te ontvangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.giropay":"Giropay","payment_methods.ideal":"iDEAL","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.sofortueberweisung":"Sofort","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."},WM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Une erreur s'est produite lors du traitement de la transaction : impossible de payer davantage avec des cartes cadeaux","buckaroo.response.invalid_parameter_originaltransaction":"Paramètre originaltransaction non valide.","dashboard.channel_selector.select_channel":"Sélectionnez la chaîne","dashboard.channel_selector.select_channel_label":"Chaque canal a ses paramètres de configuration.","dashboard.config.financial_warning":"Avertissement financier client","dashboard.config.financial_warning.label":"En raison de la réglementation relative aux méthodes BNPL aux Pays-Bas, vous devrez avertir les clients de l'utilisation d'un plan BNPL, car il peut être facile de s'endetter. ","dashboard.config.financial_warning.options.disabled":"Désactivé","dashboard.config.financial_warning.options.enabled":"Activé","dashboard.config.showIssuers":"Afficher la sélection de l'émetteur lors du paiement","dashboard.config.showIssuers.disabled":"Désactiver","dashboard.config.showIssuers.enabled":"Activer","dashboard.config.showIssuers.label":`Lorsque l'option « Désactiver » est sélectionnée, la sélection de l'émetteur pour iDEAL ne sera pas affichée lors du paiement. Au lieu de cela, les clients seront redirigés vers une page distincte où ils pourront choisir leur émetteur iDEAL (c'est-à-dire leur banque). En revanche, la sélection de l'option « Activer » affichera la sélection de l'émetteur directement dans la caisse. Il est important de noter que l'activation de cette option entraînera des coûts supplémentaires de la part de Buckaroo, estimés à environ 0,002 € pour chaque transaction. +Pour obtenir des détails précis sur les coûts, veuillez contacter directement Buckaroo.`,"dashboard.country_select.search_countries":"Rechercher des pays","dashboard.menu.channel":"Canal","dashboard.menu.order_payment_methods":"Modes de paiement des commandes","dashboard.menu.payment_methods":"Méthodes de payement","dashboard.menu.settings":"Paramètres","dashboard.menu.verification_methods":"Méthodes de vérification","dashboard.pages.order_payment_methods.all_countries":"Tous les pays","dashboard.pages.order_payment_methods.explanation_intro":"Vous pouvez facilement modifier l'ordre des modes de paiement en les faisant glisser au bon endroit, de haut en bas.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Comment modifier l'ordre des modes de paiement lors du paiement","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Si vous avez des questions sur ce plugin de Buckaroo, vous pouvez nous contacter par e-mail :","dashboard.pages.order_payment_methods.order_payment_methods":"Modes de paiement des commandes","dashboard.pages.order_payment_methods.order_payment_methods_label":"Modifiez l'ordre des modes de paiement.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Commande de mode de paiement mise à jour avec succès.","dashboard.pages.order_payment_methods.search_country":"Rechercher un pays","dashboard.pages.order_payment_methods.something_went_wrong":"Quelque chose s'est mal passé.","dashboard.pages.order_payment_methods.step_one":"Sélectionnez d'abord le pays pour lequel vous souhaitez modifier l'ordre d'affichage des moyens de paiement.","dashboard.pages.order_payment_methods.step_three":"Enregistrez la commande des modes de paiement choisis et vérifiez si les modes de paiement s'affichent dans le bon ordre lors du paiement de votre boutique en ligne.","dashboard.pages.order_payment_methods.step_two":"Faites glisser et déposez les modes de paiement dans l'ordre de votre choix.","dashboard.pages.payments.add":"Ajouter","dashboard.pages.payments.add_custom_giftcard":"Ajouter une carte cadeau personnalisée","dashboard.pages.payments.all_countries":"Tous les pays","dashboard.pages.payments.allowed_creditcards":"Cartes de crédit et de débit autorisées","dashboard.pages.payments.allowed_creditcards_label":"Seules les cartes de crédit ou de débit sélectionnées seront affichées pour cette méthode","dashboard.pages.payments.allowed_giftcards":"Cartes cadeaux autorisées","dashboard.pages.payments.allowed_giftcards_label":"Seules les cartes cadeaux sélectionnées cette méthode sera affichée","dashboard.pages.payments.allowed_methods":"Modes de paiement autorisés","dashboard.pages.payments.clear":"Clair","dashboard.pages.payments.client_side":"Chiffrement côté client","dashboard.pages.payments.client_side_label":"Activez ou désactivez le comportement du mode de paiement côté client.","dashboard.pages.payments.configure":"Configurer","dashboard.pages.payments.configure_your_payment_method_settings":"Configurez les paramètres de votre mode de paiement","dashboard.pages.payments.configure_your_payment_name_settings":"Configurez vos paramètres {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configurez les paramètres de votre méthode de vérification","dashboard.pages.payments.configure_your_verification_name_settings":"Configurez vos paramètres {verification_name}","dashboard.pages.payments.countries":"Des pays","dashboard.pages.payments.countries_label":"Le mode de paiement ne sera affiché que pour les pays sélectionnés. ","dashboard.pages.payments.custom_giftcard":"Carte cadeau personnalisée","dashboard.pages.payments.custom_icon_url":"URL de l'icône personnalisée","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Entreprise à entreprise","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"D'entreprise à consommateur","dashboard.pages.payments.customer.type.both":"Les deux","dashboard.pages.payments.customer.type_label":"Type de client","dashboard.pages.payments.customer_type":"Type de client","dashboard.pages.payments.display_type":"Type d'affichage du bouton","dashboard.pages.payments.display_type_label":"Ce paramètre détermine la manière dont la sélection de banque pour ce mode de paiement sera affichée lors du paiement.
Vous pouvez choisir entre des boutons radio ou une sélection déroulante.","dashboard.pages.payments.display_types.dropdown":"Dérouler","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Date d'échéance (en jours)","dashboard.pages.payments.edit":"Modifier","dashboard.pages.payments.enter_giftcard_details":"Entrez les détails de la carte-cadeau","dashboard.pages.payments.front_label":"Étiquette avant","dashboard.pages.payments.front_label_label":"Ce nom sera affiché pour ce mode de paiement lors du paiement. ","dashboard.pages.payments.giftcard_name":"Nom de la carte cadeau","dashboard.pages.payments.idin.display_mode":"Mode IDIN :","dashboard.pages.payments.idin.display_mode.global":"Mondial","dashboard.pages.payments.idin.display_mode.product":"Produits spécifiques","dashboard.pages.payments.idin.display_mode_label":"Avec ce paramètre, vous pouvez choisir si iDIN est activé pour tous les produits du magasin (globalement) ou uniquement pour des produits spécifiques.","dashboard.pages.payments.in3.version.label":"Version In3","dashboard.pages.payments.in3.version.v2":"V2 (capacité/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Montant maximum de la commande B2B","dashboard.pages.payments.maximum_order_amount":"Montant maximum de la commande","dashboard.pages.payments.min_order_amount_b2b":"Montant minimum de la commande B2B","dashboard.pages.payments.minimum_order_amount":"Montant minimum de commande","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":"Lorsqu'il est réglé sur « Live », vous pouvez effectuer des paiements réels. ","dashboard.pages.payments.modes_settings.live":"En direct","dashboard.pages.payments.modes_settings.off":"Désactivé","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Montant de la commande autorisé","dashboard.pages.payments.order_amount_allowed_label":"Cette méthode ne sera affichée que lorsque cette condition est remplie.","dashboard.pages.payments.payment_fee_incl_vat":"Frais de paiement inclus. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Vous pouvez facturer des frais lorsque le client sélectionne ce paiement. ","dashboard.pages.payments.payment_methods":"Modes de paiement","dashboard.pages.payments.remove":"Retirer","dashboard.pages.payments.save":"Sauvegarder","dashboard.pages.payments.search_country":"Rechercher un pays","dashboard.pages.payments.search_creditcard":"Rechercher une carte de crédit ou de débit","dashboard.pages.payments.search_giftcard":"Rechercher une carte cadeau","dashboard.pages.payments.seller_protection":"Protection du vendeur","dashboard.pages.payments.seller_protection_disabled":"Non","dashboard.pages.payments.seller_protection_enable":"Activer la protection des vendeurs PayPal","dashboard.pages.payments.seller_protection_enabled":"Oui","dashboard.pages.payments.send_email_instruction":"Envoyer un e-mail d'instructions de paiement","dashboard.pages.payments.send_email_instruction_no":"Non","dashboard.pages.payments.send_email_instruction_yes":"Oui","dashboard.pages.payments.send_email_merchant":"Le marchand envoie un e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Séparer l'autorisation et la capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Lorsque cette option est activée, vous devez capturer manuellement le paiement par carte de crédit ou de débit.","dashboard.pages.payments.service_code":"Code de service","dashboard.pages.payments.service_code_label":"Après avoir demandé votre carte-cadeau personnalisée auprès d'Intersolve, vous recevrez un e-mail concernant votre code de service. ","dashboard.pages.payments.settings":"Paramètres","dashboard.pages.payments.show_country_number_and_more":"et {country_number} plus...","dashboard.pages.payments.show_less":"Montrer moins","dashboard.pages.payments.vat_type_for_wrap":"Type de cuve pour emballage cadeau","dashboard.pages.payments.vat_type_for_wrap_select":"Veuillez sélectionner le type de cuve pour l'emballage cadeau","dashboard.pages.payments.verification_methods":"Méthodes de vérification","dashboard.pages.settings.add":"Ajouter","dashboard.pages.settings.advance_settings":"Réglages avancés","dashboard.pages.settings.checkout_url":"URL de paiement","dashboard.pages.settings.checkout_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de paiement par défaut de PrestaShop.","dashboard.pages.settings.checkout_url_label":"Définissez une URL de paiement personnalisée après que le client a annulé le paiement ou qu'un problème s'est produit pendant le processus.","dashboard.pages.settings.credentials":"Informations d'identification","dashboard.pages.settings.credentials_label":"Obtenez vos informations d'identification Buckaroo auprès du Place Buckaroo","dashboard.pages.settings.custom_scripts":"Scripts personnalisés","dashboard.pages.settings.custom_scripts_label":"Ajoutez du javascript ou du CSS personnalisé à votre paiement.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Exemple","dashboard.pages.settings.explanation_intro":"Bienvenue dans le panneau de configuration de l'application Buckaroo Payment pour votre boutique en ligne PrestaShop. Dans ce panneau, vous pouvez configurer l'application complètement à votre guise. Vous trouverez ci-dessous les étapes pour configurer les paramètres. Pour d'autres questions, veuillez vous référer à notre page de documentation.","dashboard.pages.settings.generate_credit_slip":"Générer un avoir","dashboard.pages.settings.generate_credit_slip_label":"Si une note de crédit doit être générée.","dashboard.pages.settings.generate_negative_payments":"Créer des paiements négatifs lors du remboursement","dashboard.pages.settings.generate_negative_payments_label":"Indique si un paiement négatif doit également être créé lors de l'exécution d'un remboursement.","dashboard.pages.settings.generate_voucher":"Générer un bon","dashboard.pages.settings.generate_voucher_label":"Si un bon doit être généré.","dashboard.pages.settings.hide_advance_settings":"Masquer les paramètres avancés","dashboard.pages.settings.if_you_have_any_questions":"Si vous avez des questions sur ce qui précède, vous pouvez nous contacter par email :","dashboard.pages.settings.if_you_have_any_questions_link":" ou téléphone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Changez facilement de mode","dashboard.pages.settings.no_im_testing":"Non, je teste","dashboard.pages.settings.order_number":"Numéro de commande","dashboard.pages.settings.order_number2":"numéro de commande","dashboard.pages.settings.re_stock_products":"Réapprovisionner les produits","dashboard.pages.settings.re_stock_products_label":"Si les produits remboursés doivent être retournés en stock (augmentant la quantité en stock).","dashboard.pages.settings.refunds":"Remboursements","dashboard.pages.settings.refunds_label":"Description du remboursement","dashboard.pages.settings.refunds_label_explanation":"Cette description sert aux remboursements et sera visible dans Buckaroo et sur le relevé bancaire du consommateur. ","dashboard.pages.settings.refunds_label_label":"Lorsqu'il est activé, vous pouvez effectuer des remboursements (partiels) directement depuis votre zone d'administration PrestaShop En savoir plus","dashboard.pages.settings.remove":"Retirer","dashboard.pages.settings.return_url":"URL de retour","dashboard.pages.settings.return_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de confirmation par défaut de PrestaShop.","dashboard.pages.settings.return_url_label":"Définissez une URL de retour personnalisée une fois que le client a terminé le paiement.","dashboard.pages.settings.save":"Sauvegarder","dashboard.pages.settings.secret_key":"Clef secrète","dashboard.pages.settings.settings":"Paramètres","dashboard.pages.settings.settings_label":"Configurez vos paramètres","dashboard.pages.settings.settings_successfully_updated":"Paramètres mis à jour avec succès.","dashboard.pages.settings.shop_name":"Nom de la boutique","dashboard.pages.settings.shop_name2":"Nom de la boutique","dashboard.pages.settings.step_five":"Commencez les tests, lorsque les tests sont terminés, vous pouvez démarrer des transactions EN DIRECT","dashboard.pages.settings.step_four":"Configurer les paramètres avancés","dashboard.pages.settings.step_one":"Remplissez votre clé du site Web","dashboard.pages.settings.step_three":"Cliquez sur « tester la connexion », lorsque vous êtes d’accord, passez à l’étape 4.","dashboard.pages.settings.step_two":"Remplissez votre clef secrète","dashboard.pages.settings.successfully_verified_the_credentials":"Vérification des informations d'identification réussie !","dashboard.pages.settings.test_connection":"Tester la connexion","dashboard.pages.settings.the_credentials_are_not_valid":"Les informations d'identification ne sont pas valides !","dashboard.pages.settings.transaction_description":"description de la transaction","dashboard.pages.settings.transaction_description_label":'La description de la transaction peut être remplie de texte statique et de balises telles que : {order_number} et {shop name}.',"dashboard.pages.settings.website_key":"Clé du site Web","dashboard.pages.settings.welcome_to_buckaroo":"Bienvenue à Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Quand votre boutique n'est pas encore en ligne","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Oui, je suis prêt à recevoir des paiements","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Votre boutique est en ligne et prête à recevoir des paiements réels","payment_methods.afterpay":"Rivière","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Payer","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Lien de facturation","payment_methods.creditcard":"Cartes","payment_methods.eps":"PSE","payment_methods.giftcard":"Carte cadeau","payment_methods.giropay":"Giropay","payment_methods.ideal":"idéal","payment_methods.idin":"IDIN","payment_methods.in3":"Dans3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"VOIE MB","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"Payer par banque","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"Pay Pal","payment_methods.payperemail":"Payer par e-mail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"Prélèvement SEPA","payment_methods.sofortueberweisung":"Sofort","payment_methods.transfer":"Transfert","payment_methods.trustly":"En toute confiance","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"IDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."},GM={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Bei der Verarbeitung der Transaktion ist ein Fehler aufgetreten: Es kann nicht mehr mit Geschenkkarten bezahlt werden","buckaroo.response.invalid_parameter_originaltransaction":"Ungültiger Parameter Originaltransaktion.","dashboard.channel_selector.select_channel":"Wählen Sie Kanal","dashboard.channel_selector.select_channel_label":"Jeder Kanal hat seine Konfigurationseinstellungen.","dashboard.config.financial_warning":"Finanzwarnung für Kunden","dashboard.config.financial_warning.label":"Aufgrund der Vorschriften für BNPL-Methoden in den Niederlanden müssen Sie Kunden vor der Verwendung eines BNPL-Plans warnen, da es leicht zu Schulden kommen kann. ","dashboard.config.financial_warning.options.disabled":"Deaktiviert","dashboard.config.financial_warning.options.enabled":"Ermöglicht","dashboard.config.showIssuers":"Emittentenauswahl im Checkout anzeigen","dashboard.config.showIssuers.disabled":"Deaktivieren","dashboard.config.showIssuers.enabled":"Aktivieren","dashboard.config.showIssuers.label":`Wenn die Option „Deaktivieren“ ausgewählt ist, wird die Emittentenauswahl für iDEAL im Checkout nicht angezeigt. Stattdessen werden Kunden auf eine separate Seite weitergeleitet, auf der sie ihren iDEAL-Aussteller (d. h. ihre Bank) auswählen können. Wenn Sie hingegen die Option „Aktivieren“ auswählen, wird die Emittentenauswahl direkt im Checkout angezeigt. Es ist wichtig zu beachten, dass die Aktivierung dieser Option zusätzliche Kosten von Buckaroo verursacht, die auf etwa 0,002 € pro Transaktion geschätzt werden. +Für genaue Kostendetails wenden Sie sich bitte direkt an Buckaroo.`,"dashboard.country_select.search_countries":"Länder suchen","dashboard.menu.channel":"Kanal","dashboard.menu.order_payment_methods":"Zahlungsmethoden für Bestellungen","dashboard.menu.payment_methods":"Zahlungsarten","dashboard.menu.settings":"Einstellungen","dashboard.menu.verification_methods":"Überprüfungsmethoden","dashboard.pages.order_payment_methods.all_countries":"Alle Länder","dashboard.pages.order_payment_methods.explanation_intro":"Sie können die Reihenfolge der Zahlungsmethoden ganz einfach ändern, indem Sie sie von oben nach unten an die richtige Stelle ziehen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"So ändern Sie die Reihenfolge der Zahlungsarten im Checkout","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Wenn Sie Fragen zu diesem Plugin von Buckaroo haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.order_payment_methods.order_payment_methods":"Zahlungsmethoden für die Bestellung","dashboard.pages.order_payment_methods.order_payment_methods_label":"Ändern Sie die Reihenfolge der Zahlungsmethoden.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Die Bestellung der Zahlungsmethode wurde erfolgreich aktualisiert.","dashboard.pages.order_payment_methods.search_country":"Land suchen","dashboard.pages.order_payment_methods.something_went_wrong":"Etwas ist schief gelaufen.","dashboard.pages.order_payment_methods.step_one":"Wählen Sie zunächst das Land aus, für das Sie die Anzeigereihenfolge der Zahlungsarten ändern möchten.","dashboard.pages.order_payment_methods.step_three":"Speichern Sie die von Ihnen gewählte Zahlungsarten-Bestellung und prüfen Sie, ob die Zahlungsarten im Checkout Ihres Webshops in der richtigen Reihenfolge angezeigt werden.","dashboard.pages.order_payment_methods.step_two":"Ziehen Sie die Zahlungsmethoden per Drag-and-Drop in die gewünschte Reihenfolge.","dashboard.pages.payments.add":"Hinzufügen","dashboard.pages.payments.add_custom_giftcard":"Fügen Sie eine benutzerdefinierte Geschenkkarte hinzu","dashboard.pages.payments.all_countries":"Alle Länder","dashboard.pages.payments.allowed_creditcards":"Erlaubte Kredit- und Debitkarten","dashboard.pages.payments.allowed_creditcards_label":"Für diese Methode werden nur ausgewählte Kredit- oder Debitkarten angezeigt","dashboard.pages.payments.allowed_giftcards":"Erlaubte Geschenkkarten","dashboard.pages.payments.allowed_giftcards_label":"Diese Methode wird nur für ausgewählte Geschenkkarten angezeigt","dashboard.pages.payments.allowed_methods":"Erlaubte Zahlungsmethoden","dashboard.pages.payments.clear":"Klar","dashboard.pages.payments.client_side":"Clientseitige Verschlüsselung","dashboard.pages.payments.client_side_label":"Aktivieren oder deaktivieren Sie das Verhalten der clientseitigen Zahlungsmethode.","dashboard.pages.payments.configure":"Konfigurieren","dashboard.pages.payments.configure_your_payment_method_settings":"Konfigurieren Sie Ihre Zahlungsmethodeneinstellungen","dashboard.pages.payments.configure_your_payment_name_settings":"Konfigurieren Sie Ihre {payment_name}-Einstellungen","dashboard.pages.payments.configure_your_verification_method_settings":"Konfigurieren Sie die Einstellungen Ihrer Verifizierungsmethode","dashboard.pages.payments.configure_your_verification_name_settings":"Konfigurieren Sie Ihre {verification_name}-Einstellungen","dashboard.pages.payments.countries":"Länder","dashboard.pages.payments.countries_label":"Die Zahlungsart wird nur für ausgewählte Länder angezeigt. ","dashboard.pages.payments.custom_giftcard":"Individuelle Geschenkkarte","dashboard.pages.payments.custom_icon_url":"Benutzerdefinierte Symbol-URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Von Geschäft zu Geschäft","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-Consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Kundentyp","dashboard.pages.payments.customer_type":"Kundentyp","dashboard.pages.payments.display_type":"Schaltflächenanzeigetyp","dashboard.pages.payments.display_type_label":"Diese Einstellung legt fest, wie die Bankauswahl für diese Zahlungsart im Checkout angezeigt wird.
Sie können zwischen Optionsfeldern oder einer Dropdown-Auswahl wählen.","dashboard.pages.payments.display_types.dropdown":"Runterfallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Fälligkeitsdatum (in Tagen)","dashboard.pages.payments.edit":"Bearbeiten","dashboard.pages.payments.enter_giftcard_details":"Geben Sie die Details der Geschenkkarte ein","dashboard.pages.payments.front_label":"Vorderes Etikett","dashboard.pages.payments.front_label_label":"Dieser Name wird für diese Zahlungsart im Checkout angezeigt. ","dashboard.pages.payments.giftcard_name":"Name der Geschenkkarte","dashboard.pages.payments.idin.display_mode":"iDIN-Modus:","dashboard.pages.payments.idin.display_mode.global":"Global","dashboard.pages.payments.idin.display_mode.product":"Spezifische Produkte","dashboard.pages.payments.idin.display_mode_label":"Mit dieser Einstellung können Sie auswählen, ob iDIN für alle Produkte im Shop (global) oder nur für bestimmte Produkte aktiviert ist.","dashboard.pages.payments.in3.version.label":"In3-Version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (iDEAL In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximaler B2B-Bestellbetrag","dashboard.pages.payments.maximum_order_amount":"Maximaler Bestellwert","dashboard.pages.payments.min_order_amount_b2b":"Mindestbestellwert für B2B","dashboard.pages.payments.minimum_order_amount":"Mindestbestellmenge","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":"Bei der Einstellung „Live“ können Sie tatsächliche Zahlungen durchführen. ","dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Aus","dashboard.pages.payments.modes_settings.test":"Prüfen","dashboard.pages.payments.order_amount_allowed":"Bestellmenge zulässig","dashboard.pages.payments.order_amount_allowed_label":"Diese Methode wird nur angezeigt, wenn diese Bedingung erfüllt ist.","dashboard.pages.payments.payment_fee_incl_vat":"Zahlungsgebühr inkl. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Sie können eine Gebühr erheben, wenn der Kunde diese Zahlung auswählt. ","dashboard.pages.payments.payment_methods":"Zahlungsmethoden","dashboard.pages.payments.remove":"Entfernen","dashboard.pages.payments.save":"Speichern","dashboard.pages.payments.search_country":"Land suchen","dashboard.pages.payments.search_creditcard":"Suche Kredit- oder Debitkarte","dashboard.pages.payments.search_giftcard":"Geschenkkarte suchen","dashboard.pages.payments.seller_protection":"Verkäuferschutz","dashboard.pages.payments.seller_protection_disabled":"NEIN","dashboard.pages.payments.seller_protection_enable":"Aktivieren Sie den PayPal-Verkäuferschutz","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Senden Sie eine E-Mail mit Zahlungsanweisungen","dashboard.pages.payments.send_email_instruction_no":"NEIN","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Händler sendet E-Mail","dashboard.pages.payments.seperate_authorize_and_capture":"Getrennte Autorisierung und Erfassung","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wenn diese Option aktiviert ist, müssen Sie die Kredit- oder Debitkartenzahlung manuell erfassen.","dashboard.pages.payments.service_code":"Service code","dashboard.pages.payments.service_code_label":"Nachdem Sie Ihre individuelle Geschenkkarte bei Intersolve angefordert haben, erhalten Sie eine E-Mail mit Ihrem Servicecode. ","dashboard.pages.payments.settings":"Einstellungen","dashboard.pages.payments.show_country_number_and_more":"und {country_number} mehr...","dashboard.pages.payments.show_less":"Zeige weniger","dashboard.pages.payments.vat_type_for_wrap":"Mehrwertsteuertyp für Geschenkverpackungen","dashboard.pages.payments.vat_type_for_wrap_select":"Bitte wählen Sie den Mehrwertsteuertyp für die Geschenkverpackung aus","dashboard.pages.payments.verification_methods":"Überprüfungsmethoden","dashboard.pages.settings.add":"Hinzufügen","dashboard.pages.settings.advance_settings":"Erweiterte Einstellungen","dashboard.pages.settings.checkout_url":"Checkout-URL","dashboard.pages.settings.checkout_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Checkout-Seite von PrestaShop zurück.","dashboard.pages.settings.checkout_url_label":"Legen Sie eine benutzerdefinierte Checkout-URL fest, nachdem der Kunde die Zahlung abgebrochen hat oder während des Vorgangs ein Fehler aufgetreten ist.","dashboard.pages.settings.credentials":"Referenzen","dashboard.pages.settings.credentials_label":"Holen Sie sich Ihre Buckaroo-Anmeldeinformationen von der Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Benutzerdefinierte Skripte","dashboard.pages.settings.custom_scripts_label":"Fügen Sie Ihrem Checkout benutzerdefiniertes Javascript oder CSS hinzu.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Beispiel","dashboard.pages.settings.explanation_intro":"Willkommen im Konfigurationsbereich der Buckaroo Payment App für Ihren PrestaShop-Webshop. In diesem Bereich können Sie die App ganz nach Ihren Wünschen einstellen. Nachfolgend finden Sie die Schritte zum Konfigurieren der Einstellungen. Weitere Fragen finden Sie in unserem Dokumentationsseite.","dashboard.pages.settings.generate_credit_slip":"Erstellen Sie einen Gutschriftsbeleg","dashboard.pages.settings.generate_credit_slip_label":"Ob eine Gutschrift erstellt werden soll.","dashboard.pages.settings.generate_negative_payments":"Erstellen Sie negative Zahlungen bei Rückerstattung","dashboard.pages.settings.generate_negative_payments_label":"Ob bei einer Rückerstattung auch eine negative Zahlung erstellt werden muss.","dashboard.pages.settings.generate_voucher":"Generieren Sie einen Gutschein","dashboard.pages.settings.generate_voucher_label":"Ob ein Gutschein generiert werden soll.","dashboard.pages.settings.hide_advance_settings":"Verberge erweiterte Einstellungen","dashboard.pages.settings.if_you_have_any_questions":"Wenn Sie Fragen zu den oben genannten Punkten haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.settings.if_you_have_any_questions_link":" oder Telefon ","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Ändern Sie ganz einfach den Modus","dashboard.pages.settings.no_im_testing":"Nein, ich teste","dashboard.pages.settings.order_number":"Bestellnummer","dashboard.pages.settings.order_number2":"Bestellnummer","dashboard.pages.settings.re_stock_products":"Produkte wieder auffüllen","dashboard.pages.settings.re_stock_products_label":"Ob erstattete Produkte wieder in den Lagerbestand aufgenommen werden sollen (Erhöhung der Lagermenge).","dashboard.pages.settings.refunds":"Rückerstattungen","dashboard.pages.settings.refunds_label":"Rückerstattungsbeschreibung","dashboard.pages.settings.refunds_label_explanation":"Diese Beschreibung wird für die Rückerstattungen verwendet und ist in Buckaroo und auf dem Kontoauszug des Verbrauchers sichtbar. ","dashboard.pages.settings.refunds_label_label":"Wenn diese Option aktiviert ist, können Sie (teilweise) Rückerstattungen direkt in Ihrem PrestaShop-Administrationsbereich vornehmen Mehr lesen","dashboard.pages.settings.remove":"Entfernen","dashboard.pages.settings.return_url":"Rückgabe-URL","dashboard.pages.settings.return_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Bestätigungsseite von PrestaShop zurück.","dashboard.pages.settings.return_url_label":"Legen Sie eine benutzerdefinierte Rückgabe-URL fest, nachdem der Kunde die Zahlung abgeschlossen hat.","dashboard.pages.settings.save":"Speichern","dashboard.pages.settings.secret_key":"Geheimer Schlüssel","dashboard.pages.settings.settings":"Einstellungen","dashboard.pages.settings.settings_label":"Konfigurieren Sie Ihre Einstellungen","dashboard.pages.settings.settings_successfully_updated":"Einstellungen erfolgreich aktualisiert.","dashboard.pages.settings.shop_name":"Laden Name","dashboard.pages.settings.shop_name2":"Laden Name","dashboard.pages.settings.step_five":"Beginnen Sie mit dem Testen. Wenn der Test in Ordnung ist, können Sie LIVE-Transaktionen starten","dashboard.pages.settings.step_four":"Konfigurieren Sie erweiterte Einstellungen","dashboard.pages.settings.step_one":"Füllen Sie Ihre aus Websiteschlüssel","dashboard.pages.settings.step_three":"Klicken Sie auf „Verbindung testen“. Wenn OK, fahren Sie mit Schritt 4 fort.","dashboard.pages.settings.step_two":"Füllen Sie Ihre aus geheimer Schlüssel","dashboard.pages.settings.successfully_verified_the_credentials":"Die Anmeldeinformationen wurden erfolgreich überprüft!","dashboard.pages.settings.test_connection":"Testverbindung","dashboard.pages.settings.the_credentials_are_not_valid":"Die Anmeldedaten sind ungültig!","dashboard.pages.settings.transaction_description":"Transaktion Beschreibung","dashboard.pages.settings.transaction_description_label":'Die Transaktionsbeschreibung kann mit statischem Text und Tags wie den folgenden gefüllt werden: {order_number} Und {shop_name}.',"dashboard.pages.settings.website_key":"Website-Schlüssel","dashboard.pages.settings.welcome_to_buckaroo":"Willkommen in Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wenn Ihr Shop noch nicht live ist","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ich bin bereit, Zahlungen zu erhalten","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Ihr Shop ist live und bereit, echte Zahlungen zu empfangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.creditcard":"Karten","payment_methods.eps":"EPS","payment_methods.giftcard":"Geschenkkarte","payment_methods.giropay":"Giropay","payment_methods.ideal":"Ideal","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WEG","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA-Lastschrift","payment_methods.sofortueberweisung":"Sofort","payment_methods.transfer":"Überweisen","payment_methods.trustly":"Vertrauenswürdig","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"Knaken Settle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group Credit-debitcards","dashboard.pages.payments.displayInCheckoutDesc":"Cards option on how to show the brands in the checkout.
Separate: Card issuers are showed seperately in the checkout.
Grouped: Card issuers are showed within one group."};/* * * * @@ -101,7 +101,7 @@ Für genaue Kostendetails wenden Sie sich bitte direkt an {const n=e.__vccOpts||e;for(const[r,i]of t)n[r]=i;return n},YM={props:["color"],setup(e){const t=ft("text-primary");return e.color&&(t.value=e.color),{loadingColor:t}}},XM={class:"flex justify-center"},qM=w("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"},null,-1),JM=w("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"},null,-1),ZM=[qM,JM];function QM(e,t,n,r,i,a){return _e(),Ne("div",XM,[(_e(),Ne("svg",{class:Yt("animate-spin h-5 w-5 "+r.loadingColor),xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},ZM,2))])}const Dy=vn(YM,[["render",QM]]);function e$(e){return Qf()?(wm(e),!0):!1}function YS(e){return typeof e=="function"?e():tu(e)}const XS=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const t$=Object.prototype.toString,n$=e=>t$.call(e)==="[object Object]",cf=()=>{},r$=s$();function s$(){var e,t;return XS&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function bc(e){var t;const n=YS(e);return(t=n==null?void 0:n.$el)!=null?t:n}const qS=XS?window:void 0;function ag(...e){let t,n,r,i;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,i]=e,t=qS):[t,n,r,i]=e,!t)return cf;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const a=[],o=()=>{a.forEach(y=>y()),a.length=0},c=(y,g,v,S)=>(y.addEventListener(g,v,S),()=>y.removeEventListener(g,v,S)),d=Ns(()=>[bc(t),YS(i)],([y,g])=>{if(o(),!y)return;const v=n$(g)?{...g}:g;a.push(...n.flatMap(S=>r.map(E=>c(y,S,E,v))))},{immediate:!0,flush:"post"}),f=()=>{d(),o()};return e$(f),f}let A0=!1;function JS(e,t,n={}){const{window:r=qS,ignore:i=[],capture:a=!0,detectIframe:o=!1}=n;if(!r)return cf;r$&&!A0&&(A0=!0,Array.from(r.document.body.children).forEach(v=>v.addEventListener("click",cf)),r.document.documentElement.addEventListener("click",cf));let c=!0;const d=v=>i.some(S=>{if(typeof S=="string")return Array.from(r.document.querySelectorAll(S)).some(E=>E===v.target||v.composedPath().includes(E));{const E=bc(S);return E&&(v.target===E||v.composedPath().includes(E))}}),y=[ag(r,"click",v=>{const S=bc(e);if(!(!S||S===v.target||v.composedPath().includes(S))){if(v.detail===0&&(c=!d(v)),!c){c=!0;return}t(v)}},{passive:!0,capture:a}),ag(r,"pointerdown",v=>{const S=bc(e);c=!d(v)&&!!(S&&!v.composedPath().includes(S))},{passive:!0}),o&&ag(r,"blur",v=>{setTimeout(()=>{var S;const E=bc(e);((S=r.document.activeElement)==null?void 0:S.tagName)==="IFRAME"&&!(E!=null&&E.contains(r.document.activeElement))&&t(v)},0)})].filter(Boolean);return()=>y.forEach(v=>v())}const o$={name:"LanguageSelector",setup(){const{locale:e}=Ko(),t=ft(!1),n=ft(null),r=ft(e.value);return JS(n,()=>t.value=!1),{showMenu:t,languageMenuRef:n,currentLanguage:r,changeLanguage:c=>{e.value=c,t.value=!1,r.value=c},languages:[{code:"en",name:"English",flag:"gb"},{code:"nl",name:"Dutch",flag:"nl"},{code:"de",name:"German",flag:"de"},{code:"fr",name:"French",flag:"fr"}],filterCurrentLanguage:(c,d=!0)=>c.filter(f=>d?f.code===r.value:f.code!==r.value)}}},i$={class:"md:px-6 w-full text-white text-sm relative"},a$={class:"flex space-x-1"},l$=["src"],c$={class:"text-xs"},u$=w("i",{class:"fas fa-chevron-down text-[8px]"},null,-1),d$={key:0,ref:"languageMenuRef",class:"bg-white text-gray-800 rounded-lg inline-block shadow-xl mt-1 absolute w-1/2 overflow-hidden"},f$=["onClick"],h$=["src"];function p$(e,t,n,r,i,a){return _e(),Ne("div",i$,[w("div",null,[w("div",{class:"inline-block hover:bg-sixthly p-2 cursor-pointer rounded-lg",onClick:t[0]||(t[0]=o=>r.showMenu=!r.showMenu)},[(_e(!0),Ne(Gt,null,$r(r.filterCurrentLanguage(r.languages),({name:o,flag:c})=>(_e(),Ne("div",a$,[w("img",{src:"../../../../../img/flags/"+c+".jpg",class:"w-4",alt:""},null,8,l$),w("span",c$,[xn(ae(o)+" ",1),u$])]))),256))])]),mt(Di,{"enter-from-class":"opacity-0 translate-y-3","enter-to-class":"opacity-100 translate-y-0","enter-active-class":"transform transition ease-out duration-200","leave-active-class":"transform transition ease-in duration-150","leave-from-class":"opacity-100 translate-y-0","leave-to-class":"opacity-0 translate-y-3"},{default:Mr(()=>[r.showMenu?(_e(),Ne("ul",d$,[(_e(!0),Ne(Gt,null,$r(r.filterCurrentLanguage(r.languages,!1),({name:o,flag:c,code:d})=>(_e(),Ne("li",{onClick:f=>r.changeLanguage(d),class:"p-2 flex space-x-2 cursor-pointer hover:bg-gray-200"},[w("img",{src:"../../../../../img/flags/"+c+".jpg",alt:"",class:"w-4"},null,8,h$),w("div",null,ae(o),1)],8,f$))),256))],512)):rt("",!0)]),_:1})])}const g$=vn(o$,[["render",p$]]),m$="/modules/buckaroo3/views/img/logo-npq9oT7p.png",y$={name:"Menu.vue",components:{LanguageSelector:g$},setup(e,{emit:t}){const n=En("view"),r=En("app");return{view:n,app:r,setView:a=>{n.value=a,t("changedView",a)}}}},b$={class:"md:border-l-2 md:border-primary space-y-5"},v$=w("div",{class:"md:px-8 md:py-5 p-5 md:w-52 w-36"},[w("img",{src:m$,alt:""})],-1),_$={class:"text-sm space-y-2 flex md:flex-col"},x$=w("i",{class:"fas fa-cogs md:text-base text-xl"},null,-1),E$={class:"md:inline block md:text-sm text-xs"},S$=w("i",{class:"fas fa-credit-card md:text-base text-xl"},null,-1),w$={class:"md:inline block md:text-sm text-xs"},T$=w("i",{class:"fas fa-check-circle md:text-base text-xl"},null,-1),C$={class:"md:inline block md:text-sm text-xs"},I$=w("i",{class:"fas fa-sort-numeric-up md:text-base text-xl"},null,-1),O$={class:"md:inline block md:text-sm text-xs"};function A$(e,t,n,r,i,a){const o=Mt("LanguageSelector");return _e(),Ne("div",b$,[w("div",null,[v$,mt(o)]),w("ul",_$,[w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="settings","hover:bg-seventhly text-eightly":r.view!=="settings"}]),onClick:t[0]||(t[0]=c=>r.setView("settings"))},[x$,xn(),w("span",E$,ae(e.$t("dashboard.menu.settings")),1)],2),w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="payment_methods","hover:bg-seventhly text-eightly":r.view!=="payment_methods"}]),onClick:t[1]||(t[1]=c=>r.setView("payment_methods"))},[S$,xn(),w("span",w$,ae(e.$t("dashboard.menu.payment_methods")),1)],2),w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="verification_methods","hover:bg-seventhly text-eightly":r.view!=="verification_methods"}]),onClick:t[2]||(t[2]=c=>r.setView("verification_methods"))},[T$,xn(),w("span",C$,ae(e.$t("dashboard.menu.verification_methods")),1)],2),w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="order_payment_methods","hover:bg-seventhly text-eightly":r.view!=="order_payment_methods"}]),onClick:t[3]||(t[3]=c=>r.setView("order_payment_methods"))},[I$,xn(),w("span",O$,ae(e.$t("dashboard.pages.order_payment_methods.order_payment_methods")),1)],2)])])}const k$=vn(y$,[["render",A$]]);var P$=Object.assign||function(e){for(var t,n=1;n"u"?"undefined":k0(o))==="object"?c:"")+"]",o,i)}):(typeof r>"u"?"undefined":k0(r))==="object"?Object.keys(r).forEach(function(o){return t.buildQueryParams(n+"["+o+"]",r[o],i)}):i(n,r)},this.getRoute=function(n){var r=t.contextRouting.prefix+n;if(t.routesRouting[r])return t.routesRouting[r];if(!t.routesRouting[n])throw new Error('The route "'+n+'" does not exist.');return t.routesRouting[n]},this.generate=function(n,r,i){var a=t.getRoute(n),o=r||{},c=P$({},o),d="_scheme",f="",y=!0,g="";if((a.tokens||[]).forEach(function(E){if(E[0]==="text")return f=E[1]+f,void(y=!1);if(E[0]==="variable"){var T=(a.defaults||{})[E[3]];if(y==!1||!T||(o||{})[E[3]]&&o[E[3]]!==a.defaults[E[3]]){var N;if((o||{})[E[3]])N=o[E[3]],delete c[E[3]];else if(T)N=a.defaults[E[3]];else{if(y)return;throw new Error('The route "'+n+'" requires the parameter "'+E[3]+'".')}var I=N===!0||N===!1||N==="";if(!I||!y){var D=encodeURIComponent(N).replace(/%2F/g,"/");D==="null"&&N===null&&(D=""),f=E[1]+D+f}y=!1}else T&&delete c[E[3]];return}throw new Error('The token type "'+E[0]+'" is not supported.')}),f==""&&(f="/"),(a.hosttokens||[]).forEach(function(E){var T;return E[0]==="text"?void(g=E[1]+g):void(E[0]==="variable"&&((o||{})[E[3]]?(T=o[E[3]],delete c[E[3]]):a.defaults[E[3]]&&(T=a.defaults[E[3]]),g=E[1]+T+g))}),f=t.contextRouting.base_url+f,a.requirements[d]&&t.getScheme()!==a.requirements[d]?f=a.requirements[d]+"://"+(g||t.getHost())+f:g&&t.getHost()!==g?f=t.getScheme()+"://"+g+f:i===!0&&(f=t.getScheme()+"://"+t.getHost()+f),0{const t=En("csrfToken"),n=En("adminUrl");let r=new V$(n,t);const i=ft(),a=ft(!1),o=ft(),c=f1.create({baseURL:n+""}),d=g=>(a.value=!0,o.value=void 0,c.get(r.generate(e,g)).then(v=>i.value=v.data).catch(v=>{throw o.value=v,v}).finally(()=>a.value=!1)),f=(g,v)=>(a.value=!0,o.value=void 0,c.post(r.generate(e,v),g).then(S=>i.value=S.data).catch(S=>{throw o.value=S,S}).finally(()=>a.value=!1)),y=Wn(()=>o.value?o.value.message:null);return Ns(o,g=>{}),{loading:a,data:i,error:o,get:d,post:f,errorMessage:y}};var ZS={exports:{}},cg={exports:{}};/*! + */const KM={en:jM,nl:VM,fr:WM,de:GM},zM=PM({legacy:!1,locale:"en",messages:KM}),xn=(e,t)=>{const n=e.__vccOpts||e;for(const[r,i]of t)n[r]=i;return n},YM={props:["color"],setup(e){const t=ft("text-primary");return e.color&&(t.value=e.color),{loadingColor:t}}},XM={class:"flex justify-center"},qM=w("circle",{class:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor","stroke-width":"4"},null,-1),JM=w("path",{class:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"},null,-1),ZM=[qM,JM];function QM(e,t,n,r,i,a){return _e(),Ne("div",XM,[(_e(),Ne("svg",{class:Yt("animate-spin h-5 w-5 "+r.loadingColor),xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},ZM,2))])}const Dy=xn(YM,[["render",QM]]);function e$(e){return Zf()?(wm(e),!0):!1}function YS(e){return typeof e=="function"?e():tu(e)}const XS=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const t$=Object.prototype.toString,n$=e=>t$.call(e)==="[object Object]",lf=()=>{},r$=s$();function s$(){var e,t;return XS&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function bc(e){var t;const n=YS(e);return(t=n==null?void 0:n.$el)!=null?t:n}const qS=XS?window:void 0;function ag(...e){let t,n,r,i;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,i]=e,t=qS):[t,n,r,i]=e,!t)return lf;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const a=[],o=()=>{a.forEach(y=>y()),a.length=0},c=(y,g,v,S)=>(y.addEventListener(g,v,S),()=>y.removeEventListener(g,v,S)),d=Ns(()=>[bc(t),YS(i)],([y,g])=>{if(o(),!y)return;const v=n$(g)?{...g}:g;a.push(...n.flatMap(S=>r.map(E=>c(y,S,E,v))))},{immediate:!0,flush:"post"}),f=()=>{d(),o()};return e$(f),f}let A0=!1;function JS(e,t,n={}){const{window:r=qS,ignore:i=[],capture:a=!0,detectIframe:o=!1}=n;if(!r)return lf;r$&&!A0&&(A0=!0,Array.from(r.document.body.children).forEach(v=>v.addEventListener("click",lf)),r.document.documentElement.addEventListener("click",lf));let c=!0;const d=v=>i.some(S=>{if(typeof S=="string")return Array.from(r.document.querySelectorAll(S)).some(E=>E===v.target||v.composedPath().includes(E));{const E=bc(S);return E&&(v.target===E||v.composedPath().includes(E))}}),y=[ag(r,"click",v=>{const S=bc(e);if(!(!S||S===v.target||v.composedPath().includes(S))){if(v.detail===0&&(c=!d(v)),!c){c=!0;return}t(v)}},{passive:!0,capture:a}),ag(r,"pointerdown",v=>{const S=bc(e);c=!d(v)&&!!(S&&!v.composedPath().includes(S))},{passive:!0}),o&&ag(r,"blur",v=>{setTimeout(()=>{var S;const E=bc(e);((S=r.document.activeElement)==null?void 0:S.tagName)==="IFRAME"&&!(E!=null&&E.contains(r.document.activeElement))&&t(v)},0)})].filter(Boolean);return()=>y.forEach(v=>v())}const o$={name:"LanguageSelector",setup(){const{locale:e}=Ko(),t=ft(!1),n=ft(null),r=ft(e.value);return JS(n,()=>t.value=!1),{showMenu:t,languageMenuRef:n,currentLanguage:r,changeLanguage:c=>{e.value=c,t.value=!1,r.value=c},languages:[{code:"en",name:"English",flag:"gb"},{code:"nl",name:"Dutch",flag:"nl"},{code:"de",name:"German",flag:"de"},{code:"fr",name:"French",flag:"fr"}],filterCurrentLanguage:(c,d=!0)=>c.filter(f=>d?f.code===r.value:f.code!==r.value)}}},i$={class:"md:px-6 w-full text-white text-sm relative"},a$={class:"flex space-x-1"},l$=["src"],c$={class:"text-xs"},u$=w("i",{class:"fas fa-chevron-down text-[8px]"},null,-1),d$={key:0,ref:"languageMenuRef",class:"bg-white text-gray-800 rounded-lg inline-block shadow-xl mt-1 absolute w-1/2 overflow-hidden"},f$=["onClick"],h$=["src"];function p$(e,t,n,r,i,a){return _e(),Ne("div",i$,[w("div",null,[w("div",{class:"inline-block hover:bg-sixthly p-2 cursor-pointer rounded-lg",onClick:t[0]||(t[0]=o=>r.showMenu=!r.showMenu)},[(_e(!0),Ne(Gt,null,$r(r.filterCurrentLanguage(r.languages),({name:o,flag:c})=>(_e(),Ne("div",a$,[w("img",{src:"../../../../../img/flags/"+c+".jpg",class:"w-4",alt:""},null,8,l$),w("span",c$,[vn(ae(o)+" ",1),u$])]))),256))])]),mt(Di,{"enter-from-class":"opacity-0 translate-y-3","enter-to-class":"opacity-100 translate-y-0","enter-active-class":"transform transition ease-out duration-200","leave-active-class":"transform transition ease-in duration-150","leave-from-class":"opacity-100 translate-y-0","leave-to-class":"opacity-0 translate-y-3"},{default:Mr(()=>[r.showMenu?(_e(),Ne("ul",d$,[(_e(!0),Ne(Gt,null,$r(r.filterCurrentLanguage(r.languages,!1),({name:o,flag:c,code:d})=>(_e(),Ne("li",{onClick:f=>r.changeLanguage(d),class:"p-2 flex space-x-2 cursor-pointer hover:bg-gray-200"},[w("img",{src:"../../../../../img/flags/"+c+".jpg",alt:"",class:"w-4"},null,8,h$),w("div",null,ae(o),1)],8,f$))),256))],512)):it("",!0)]),_:1})])}const g$=xn(o$,[["render",p$]]),m$="/modules/buckaroo3/views/img/logo-npq9oT7p.png",y$={name:"Menu.vue",components:{LanguageSelector:g$},setup(e,{emit:t}){const n=_n("view"),r=_n("app");return{view:n,app:r,setView:a=>{n.value=a,t("changedView",a)}}}},b$={class:"md:border-l-2 md:border-primary space-y-5"},v$=w("div",{class:"md:px-8 md:py-5 p-5 md:w-52 w-36"},[w("img",{src:m$,alt:""})],-1),_$={class:"text-sm space-y-2 flex md:flex-col"},x$=w("i",{class:"fas fa-cogs md:text-base text-xl"},null,-1),E$={class:"md:inline block md:text-sm text-xs"},S$=w("i",{class:"fas fa-credit-card md:text-base text-xl"},null,-1),w$={class:"md:inline block md:text-sm text-xs"},T$=w("i",{class:"fas fa-check-circle md:text-base text-xl"},null,-1),C$={class:"md:inline block md:text-sm text-xs"},I$=w("i",{class:"fas fa-sort-numeric-up md:text-base text-xl"},null,-1),O$={class:"md:inline block md:text-sm text-xs"};function A$(e,t,n,r,i,a){const o=Vt("LanguageSelector");return _e(),Ne("div",b$,[w("div",null,[v$,mt(o)]),w("ul",_$,[w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="settings","hover:bg-seventhly text-eightly":r.view!=="settings"}]),onClick:t[0]||(t[0]=c=>r.setView("settings"))},[x$,vn(),w("span",E$,ae(e.$t("dashboard.menu.settings")),1)],2),w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="payment_methods","hover:bg-seventhly text-eightly":r.view!=="payment_methods"}]),onClick:t[1]||(t[1]=c=>r.setView("payment_methods"))},[S$,vn(),w("span",w$,ae(e.$t("dashboard.menu.payment_methods")),1)],2),w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="verification_methods","hover:bg-seventhly text-eightly":r.view!=="verification_methods"}]),onClick:t[2]||(t[2]=c=>r.setView("verification_methods"))},[T$,vn(),w("span",C$,ae(e.$t("dashboard.menu.verification_methods")),1)],2),w("li",{class:Yt(["text-white md:p-5 p-2 cursor-pointer transition ease-in-out duration-300 flex-1 md:text-left text-left space-y-2 md:block md:space-x-1 flex flex-col justify-center",{"bg-sixthly text-white":r.view==="order_payment_methods","hover:bg-seventhly text-eightly":r.view!=="order_payment_methods"}]),onClick:t[3]||(t[3]=c=>r.setView("order_payment_methods"))},[I$,vn(),w("span",O$,ae(e.$t("dashboard.pages.order_payment_methods.order_payment_methods")),1)],2)])])}const k$=xn(y$,[["render",A$]]);var P$=Object.assign||function(e){for(var t,n=1;n"u"?"undefined":k0(o))==="object"?c:"")+"]",o,i)}):(typeof r>"u"?"undefined":k0(r))==="object"?Object.keys(r).forEach(function(o){return t.buildQueryParams(n+"["+o+"]",r[o],i)}):i(n,r)},this.getRoute=function(n){var r=t.contextRouting.prefix+n;if(t.routesRouting[r])return t.routesRouting[r];if(!t.routesRouting[n])throw new Error('The route "'+n+'" does not exist.');return t.routesRouting[n]},this.generate=function(n,r,i){var a=t.getRoute(n),o=r||{},c=P$({},o),d="_scheme",f="",y=!0,g="";if((a.tokens||[]).forEach(function(E){if(E[0]==="text")return f=E[1]+f,void(y=!1);if(E[0]==="variable"){var T=(a.defaults||{})[E[3]];if(y==!1||!T||(o||{})[E[3]]&&o[E[3]]!==a.defaults[E[3]]){var N;if((o||{})[E[3]])N=o[E[3]],delete c[E[3]];else if(T)N=a.defaults[E[3]];else{if(y)return;throw new Error('The route "'+n+'" requires the parameter "'+E[3]+'".')}var I=N===!0||N===!1||N==="";if(!I||!y){var D=encodeURIComponent(N).replace(/%2F/g,"/");D==="null"&&N===null&&(D=""),f=E[1]+D+f}y=!1}else T&&delete c[E[3]];return}throw new Error('The token type "'+E[0]+'" is not supported.')}),f==""&&(f="/"),(a.hosttokens||[]).forEach(function(E){var T;return E[0]==="text"?void(g=E[1]+g):void(E[0]==="variable"&&((o||{})[E[3]]?(T=o[E[3]],delete c[E[3]]):a.defaults[E[3]]&&(T=a.defaults[E[3]]),g=E[1]+T+g))}),f=t.contextRouting.base_url+f,a.requirements[d]&&t.getScheme()!==a.requirements[d]?f=a.requirements[d]+"://"+(g||t.getHost())+f:g&&t.getHost()!==g?f=t.getScheme()+"://"+g+f:i===!0&&(f=t.getScheme()+"://"+t.getHost()+f),0{const t=_n("csrfToken"),n=_n("adminUrl");let r=new V$(n,t);const i=ft(),a=ft(!1),o=ft(),c=f1.create({baseURL:n+""}),d=g=>(a.value=!0,o.value=void 0,c.get(r.generate(e,g)).then(v=>i.value=v.data).catch(v=>{throw o.value=v,v}).finally(()=>a.value=!1)),f=(g,v)=>(a.value=!0,o.value=void 0,c.post(r.generate(e,v),g).then(S=>i.value=S.data).catch(S=>{throw o.value=S,S}).finally(()=>a.value=!1)),y=Wn(()=>o.value?o.value.message:null);return Ns(o,g=>{}),{loading:a,data:i,error:o,get:d,post:f,errorMessage:y}};var ZS={exports:{}},cg={exports:{}};/*! * jQuery JavaScript Library v3.7.1 * https://jquery.com/ * @@ -110,16 +110,16 @@ Für genaue Kostendetails wenden Sie sich bitte direkt an =0&&b0&&p-1 in u}function F(u,p){return u.nodeName&&u.nodeName.toLowerCase()===p.toLowerCase()}var V=r.pop,re=r.sort,ce=r.splice,J="[\\x20\\t\\r\\n\\f]",ye=new RegExp("^"+J+"+|((?:^|[^\\\\])(?:\\\\.)*)"+J+"+$","g");m.contains=function(u,p){var b=p&&p.parentNode;return u===b||!!(b&&b.nodeType===1&&(u.contains?u.contains(b):u.compareDocumentPosition&&u.compareDocumentPosition(b)&16))};var Me=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function fe(u,p){return p?u==="\0"?"�":u.slice(0,-1)+"\\"+u.charCodeAt(u.length-1).toString(16)+" ":"\\"+u}m.escapeSelector=function(u){return(u+"").replace(Me,fe)};var Se=I,we=c;(function(){var u,p,b,x,O,k=we,M,q,z,ie,ve,xe=m.expando,he=0,De=0,Ke=Wi(),Tt=Wi(),St=Wi(),qn=Wi(),kn=function(W,ne){return W===ne&&(O=!0),0},bs="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",vs="(?:\\\\[\\da-fA-F]{1,6}"+J+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",Ht="\\["+J+"*("+vs+")(?:"+J+"*([*^$|!~]?=)"+J+`*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(`+vs+"))|)"+J+"*\\]",no=":("+vs+`)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|`+Ht+")*)|.*)\\)|)",jt=new RegExp(J+"+","g"),gn=new RegExp("^"+J+"*,"+J+"*"),Hi=new RegExp("^"+J+"*([>+~]|"+J+")"+J+"*"),Fa=new RegExp(J+"|>"),ns=new RegExp(no),xo=new RegExp("^"+vs+"$"),Ur={ID:new RegExp("^#("+vs+")"),CLASS:new RegExp("^\\.("+vs+")"),TAG:new RegExp("^("+vs+"|[*])"),ATTR:new RegExp("^"+Ht),PSEUDO:new RegExp("^"+no),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+J+"*(even|odd|(([+-]|)(\\d*)n|)"+J+"*(?:([+-]|)"+J+"*(\\d+)|))"+J+"*\\)|)","i"),bool:new RegExp("^(?:"+bs+")$","i"),needsContext:new RegExp("^"+J+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+J+"*((?:-\\d)?\\d*)"+J+"*\\)|)(?=[^-]|$)","i")},Ms=/^(?:input|select|textarea|button)$/i,ro=/^h\d$/i,br=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ji=/[+~]/,$s=new RegExp("\\\\[\\da-fA-F]{1,6}"+J+"?|\\\\([^\\r\\n\\f])","g"),_s=function(W,ne){var de="0x"+W.slice(1)-65536;return ne||(de<0?String.fromCharCode(de+65536):String.fromCharCode(de>>10|55296,de&1023|56320))},Ir=function(){so()},Gl=Eo(function(W){return W.disabled===!0&&F(W,"fieldset")},{dir:"parentNode",next:"legend"});function Vi(){try{return M.activeElement}catch{}}try{k.apply(r=a.call(Se.childNodes),Se.childNodes),r[Se.childNodes.length].nodeType}catch{k={apply:function(ne,de){we.apply(ne,a.call(de))},call:function(ne){we.apply(ne,a.call(arguments,1))}}}function ln(W,ne,de,me){var j,Q,Z,Ee,Ie,ze,Ye,We=ne&&ne.ownerDocument,Pt=ne?ne.nodeType:9;if(de=de||[],typeof W!="string"||!W||Pt!==1&&Pt!==9&&Pt!==11)return de;if(!me&&(so(ne),ne=ne||M,z)){if(Pt!==11&&(Ie=br.exec(W)))if(j=Ie[1]){if(Pt===9)if(Z=ne.getElementById(j)){if(Z.id===j)return k.call(de,Z),de}else return de;else if(We&&(Z=We.getElementById(j))&&ln.contains(ne,Z)&&Z.id===j)return k.call(de,Z),de}else{if(Ie[2])return k.apply(de,ne.getElementsByTagName(W)),de;if((j=Ie[3])&&ne.getElementsByClassName)return k.apply(de,ne.getElementsByClassName(j)),de}if(!qn[W+" "]&&(!ie||!ie.test(W))){if(Ye=W,We=ne,Pt===1&&(Fa.test(W)||Hi.test(W))){for(We=ji.test(W)&&Kl(ne.parentNode)||ne,(We!=ne||!E.scope)&&((Ee=ne.getAttribute("id"))?Ee=m.escapeSelector(Ee):ne.setAttribute("id",Ee=xe)),ze=ni(W),Q=ze.length;Q--;)ze[Q]=(Ee?"#"+Ee:":scope")+" "+ss(ze[Q]);Ye=ze.join(",")}try{return k.apply(de,We.querySelectorAll(Ye)),de}catch{qn(W,!0)}finally{Ee===xe&&ne.removeAttribute("id")}}}return zu(W.replace(ye,"$1"),ne,de,me)}function Wi(){var W=[];function ne(de,me){return W.push(de+" ")>p.cacheLength&&delete ne[W.shift()],ne[de+" "]=me}return ne}function rs(W){return W[xe]=!0,W}function ti(W){var ne=M.createElement("fieldset");try{return!!W(ne)}catch{return!1}finally{ne.parentNode&&ne.parentNode.removeChild(ne),ne=null}}function zh(W){return function(ne){return F(ne,"input")&&ne.type===W}}function Yh(W){return function(ne){return(F(ne,"input")||F(ne,"button"))&&ne.type===W}}function Gu(W){return function(ne){return"form"in ne?ne.parentNode&&ne.disabled===!1?"label"in ne?"label"in ne.parentNode?ne.parentNode.disabled===W:ne.disabled===W:ne.isDisabled===W||ne.isDisabled!==!W&&Gl(ne)===W:ne.disabled===W:"label"in ne?ne.disabled===W:!1}}function Hr(W){return rs(function(ne){return ne=+ne,rs(function(de,me){for(var j,Q=W([],de.length,ne),Z=Q.length;Z--;)de[j=Q[Z]]&&(de[j]=!(me[j]=de[j]))})})}function Kl(W){return W&&typeof W.getElementsByTagName<"u"&&W}function so(W){var ne,de=W?W.ownerDocument||W:Se;return de==M||de.nodeType!==9||!de.documentElement||(M=de,q=M.documentElement,z=!m.isXMLDoc(M),ve=q.matches||q.webkitMatchesSelector||q.msMatchesSelector,q.msMatchesSelector&&Se!=M&&(ne=M.defaultView)&&ne.top!==ne&&ne.addEventListener("unload",Ir),E.getById=ti(function(me){return q.appendChild(me).id=m.expando,!M.getElementsByName||!M.getElementsByName(m.expando).length}),E.disconnectedMatch=ti(function(me){return ve.call(me,"*")}),E.scope=ti(function(){return M.querySelectorAll(":scope")}),E.cssHas=ti(function(){try{return M.querySelector(":has(*,:jqfake)"),!1}catch{return!0}}),E.getById?(p.filter.ID=function(me){var j=me.replace($s,_s);return function(Q){return Q.getAttribute("id")===j}},p.find.ID=function(me,j){if(typeof j.getElementById<"u"&&z){var Q=j.getElementById(me);return Q?[Q]:[]}}):(p.filter.ID=function(me){var j=me.replace($s,_s);return function(Q){var Z=typeof Q.getAttributeNode<"u"&&Q.getAttributeNode("id");return Z&&Z.value===j}},p.find.ID=function(me,j){if(typeof j.getElementById<"u"&&z){var Q,Z,Ee,Ie=j.getElementById(me);if(Ie){if(Q=Ie.getAttributeNode("id"),Q&&Q.value===me)return[Ie];for(Ee=j.getElementsByName(me),Z=0;Ie=Ee[Z++];)if(Q=Ie.getAttributeNode("id"),Q&&Q.value===me)return[Ie]}return[]}}),p.find.TAG=function(me,j){return typeof j.getElementsByTagName<"u"?j.getElementsByTagName(me):j.querySelectorAll(me)},p.find.CLASS=function(me,j){if(typeof j.getElementsByClassName<"u"&&z)return j.getElementsByClassName(me)},ie=[],ti(function(me){var j;q.appendChild(me).innerHTML="",me.querySelectorAll("[selected]").length||ie.push("\\["+J+"*(?:value|"+bs+")"),me.querySelectorAll("[id~="+xe+"-]").length||ie.push("~="),me.querySelectorAll("a#"+xe+"+*").length||ie.push(".#.+[+~]"),me.querySelectorAll(":checked").length||ie.push(":checked"),j=M.createElement("input"),j.setAttribute("type","hidden"),me.appendChild(j).setAttribute("name","D"),q.appendChild(me).disabled=!0,me.querySelectorAll(":disabled").length!==2&&ie.push(":enabled",":disabled"),j=M.createElement("input"),j.setAttribute("name",""),me.appendChild(j),me.querySelectorAll("[name='']").length||ie.push("\\["+J+"*name"+J+"*="+J+`*(?:''|"")`)}),E.cssHas||ie.push(":has"),ie=ie.length&&new RegExp(ie.join("|")),kn=function(me,j){if(me===j)return O=!0,0;var Q=!me.compareDocumentPosition-!j.compareDocumentPosition;return Q||(Q=(me.ownerDocument||me)==(j.ownerDocument||j)?me.compareDocumentPosition(j):1,Q&1||!E.sortDetached&&j.compareDocumentPosition(me)===Q?me===M||me.ownerDocument==Se&&ln.contains(Se,me)?-1:j===M||j.ownerDocument==Se&&ln.contains(Se,j)?1:x?d.call(x,me)-d.call(x,j):0:Q&4?-1:1)}),M}ln.matches=function(W,ne){return ln(W,null,null,ne)},ln.matchesSelector=function(W,ne){if(so(W),z&&!qn[ne+" "]&&(!ie||!ie.test(ne)))try{var de=ve.call(W,ne);if(de||E.disconnectedMatch||W.document&&W.document.nodeType!==11)return de}catch{qn(ne,!0)}return ln(ne,M,null,[W]).length>0},ln.contains=function(W,ne){return(W.ownerDocument||W)!=M&&so(W),m.contains(W,ne)},ln.attr=function(W,ne){(W.ownerDocument||W)!=M&&so(W);var de=p.attrHandle[ne.toLowerCase()],me=de&&g.call(p.attrHandle,ne.toLowerCase())?de(W,ne,!z):void 0;return me!==void 0?me:W.getAttribute(ne)},ln.error=function(W){throw new Error("Syntax error, unrecognized expression: "+W)},m.uniqueSort=function(W){var ne,de=[],me=0,j=0;if(O=!E.sortStable,x=!E.sortStable&&a.call(W,0),re.call(W,kn),O){for(;ne=W[j++];)ne===W[j]&&(me=de.push(j));for(;me--;)ce.call(W,de[me],1)}return x=null,W},m.fn.uniqueSort=function(){return this.pushStack(m.uniqueSort(a.apply(this)))},p=m.expr={cacheLength:50,createPseudo:rs,match:Ur,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(W){return W[1]=W[1].replace($s,_s),W[3]=(W[3]||W[4]||W[5]||"").replace($s,_s),W[2]==="~="&&(W[3]=" "+W[3]+" "),W.slice(0,4)},CHILD:function(W){return W[1]=W[1].toLowerCase(),W[1].slice(0,3)==="nth"?(W[3]||ln.error(W[0]),W[4]=+(W[4]?W[5]+(W[6]||1):2*(W[3]==="even"||W[3]==="odd")),W[5]=+(W[7]+W[8]||W[3]==="odd")):W[3]&&ln.error(W[0]),W},PSEUDO:function(W){var ne,de=!W[6]&&W[2];return Ur.CHILD.test(W[0])?null:(W[3]?W[2]=W[4]||W[5]||"":de&&ns.test(de)&&(ne=ni(de,!0))&&(ne=de.indexOf(")",de.length-ne)-de.length)&&(W[0]=W[0].slice(0,ne),W[2]=de.slice(0,ne)),W.slice(0,3))}},filter:{TAG:function(W){var ne=W.replace($s,_s).toLowerCase();return W==="*"?function(){return!0}:function(de){return F(de,ne)}},CLASS:function(W){var ne=Ke[W+" "];return ne||(ne=new RegExp("(^|"+J+")"+W+"("+J+"|$)"))&&Ke(W,function(de){return ne.test(typeof de.className=="string"&&de.className||typeof de.getAttribute<"u"&&de.getAttribute("class")||"")})},ATTR:function(W,ne,de){return function(me){var j=ln.attr(me,W);return j==null?ne==="!=":ne?(j+="",ne==="="?j===de:ne==="!="?j!==de:ne==="^="?de&&j.indexOf(de)===0:ne==="*="?de&&j.indexOf(de)>-1:ne==="$="?de&&j.slice(-de.length)===de:ne==="~="?(" "+j.replace(jt," ")+" ").indexOf(de)>-1:ne==="|="?j===de||j.slice(0,de.length+1)===de+"-":!1):!0}},CHILD:function(W,ne,de,me,j){var Q=W.slice(0,3)!=="nth",Z=W.slice(-4)!=="last",Ee=ne==="of-type";return me===1&&j===0?function(Ie){return!!Ie.parentNode}:function(Ie,ze,Ye){var We,Pt,it,Bt,Jn,ar=Q!==Z?"nextSibling":"previousSibling",Zn=Ie.parentNode,Ar=Ee&&Ie.nodeName.toLowerCase(),Fs=!Ye&&!Ee,xt=!1;if(Zn){if(Q){for(;ar;){for(it=Ie;it=it[ar];)if(Ee?F(it,Ar):it.nodeType===1)return!1;Jn=ar=W==="only"&&!Jn&&"nextSibling"}return!0}if(Jn=[Z?Zn.firstChild:Zn.lastChild],Z&&Fs){for(Pt=Zn[xe]||(Zn[xe]={}),We=Pt[W]||[],Bt=We[0]===he&&We[1],xt=Bt&&We[2],it=Bt&&Zn.childNodes[Bt];it=++Bt&&it&&it[ar]||(xt=Bt=0)||Jn.pop();)if(it.nodeType===1&&++xt&&it===Ie){Pt[W]=[he,Bt,xt];break}}else if(Fs&&(Pt=Ie[xe]||(Ie[xe]={}),We=Pt[W]||[],Bt=We[0]===he&&We[1],xt=Bt),xt===!1)for(;(it=++Bt&&it&&it[ar]||(xt=Bt=0)||Jn.pop())&&!((Ee?F(it,Ar):it.nodeType===1)&&++xt&&(Fs&&(Pt=it[xe]||(it[xe]={}),Pt[W]=[he,xt]),it===Ie)););return xt-=j,xt===me||xt%me===0&&xt/me>=0}}},PSEUDO:function(W,ne){var de,me=p.pseudos[W]||p.setFilters[W.toLowerCase()]||ln.error("unsupported pseudo: "+W);return me[xe]?me(ne):me.length>1?(de=[W,W,"",ne],p.setFilters.hasOwnProperty(W.toLowerCase())?rs(function(j,Q){for(var Z,Ee=me(j,ne),Ie=Ee.length;Ie--;)Z=d.call(j,Ee[Ie]),j[Z]=!(Q[Z]=Ee[Ie])}):function(j){return me(j,0,de)}):me}},pseudos:{not:rs(function(W){var ne=[],de=[],me=Yl(W.replace(ye,"$1"));return me[xe]?rs(function(j,Q,Z,Ee){for(var Ie,ze=me(j,null,Ee,[]),Ye=j.length;Ye--;)(Ie=ze[Ye])&&(j[Ye]=!(Q[Ye]=Ie))}):function(j,Q,Z){return ne[0]=j,me(ne,null,Z,de),ne[0]=null,!de.pop()}}),has:rs(function(W){return function(ne){return ln(W,ne).length>0}}),contains:rs(function(W){return W=W.replace($s,_s),function(ne){return(ne.textContent||m.text(ne)).indexOf(W)>-1}}),lang:rs(function(W){return xo.test(W||"")||ln.error("unsupported lang: "+W),W=W.replace($s,_s).toLowerCase(),function(ne){var de;do if(de=z?ne.lang:ne.getAttribute("xml:lang")||ne.getAttribute("lang"))return de=de.toLowerCase(),de===W||de.indexOf(W+"-")===0;while((ne=ne.parentNode)&&ne.nodeType===1);return!1}}),target:function(W){var ne=t.location&&t.location.hash;return ne&&ne.slice(1)===W.id},root:function(W){return W===q},focus:function(W){return W===Vi()&&M.hasFocus()&&!!(W.type||W.href||~W.tabIndex)},enabled:Gu(!1),disabled:Gu(!0),checked:function(W){return F(W,"input")&&!!W.checked||F(W,"option")&&!!W.selected},selected:function(W){return W.parentNode&&W.parentNode.selectedIndex,W.selected===!0},empty:function(W){for(W=W.firstChild;W;W=W.nextSibling)if(W.nodeType<6)return!1;return!0},parent:function(W){return!p.pseudos.empty(W)},header:function(W){return ro.test(W.nodeName)},input:function(W){return Ms.test(W.nodeName)},button:function(W){return F(W,"input")&&W.type==="button"||F(W,"button")},text:function(W){var ne;return F(W,"input")&&W.type==="text"&&((ne=W.getAttribute("type"))==null||ne.toLowerCase()==="text")},first:Hr(function(){return[0]}),last:Hr(function(W,ne){return[ne-1]}),eq:Hr(function(W,ne,de){return[de<0?de+ne:de]}),even:Hr(function(W,ne){for(var de=0;dene?me=ne:me=de;--me>=0;)W.push(me);return W}),gt:Hr(function(W,ne,de){for(var me=de<0?de+ne:de;++me1?function(ne,de,me){for(var j=W.length;j--;)if(!W[j](ne,de,me))return!1;return!0}:W[0]}function Xh(W,ne,de){for(var me=0,j=ne.length;me-1&&(Z[Ye]=!(Ee[Ye]=Pt))}}else it=Ua(it===Ee?it.splice(ar,it.length):it),j?j(null,Ee,it,ze):k.apply(Ee,it)})}function Or(W){for(var ne,de,me,j=W.length,Q=p.relative[W[0].type],Z=Q||p.relative[" "],Ee=Q?1:0,Ie=Eo(function(We){return We===ne},Z,!0),ze=Eo(function(We){return d.call(ne,We)>-1},Z,!0),Ye=[function(We,Pt,it){var Bt=!Q&&(it||Pt!=b)||((ne=Pt).nodeType?Ie(We,Pt,it):ze(We,Pt,it));return ne=null,Bt}];Ee1&&zl(Ye),Ee>1&&ss(W.slice(0,Ee-1).concat({value:W[Ee-2].type===" "?"*":""})).replace(ye,"$1"),de,Ee0,me=W.length>0,j=function(Q,Z,Ee,Ie,ze){var Ye,We,Pt,it=0,Bt="0",Jn=Q&&[],ar=[],Zn=b,Ar=Q||me&&p.find.TAG("*",ze),Fs=he+=Zn==null?1:Math.random()||.1,xt=Ar.length;for(ze&&(b=Z==M||Z||ze);Bt!==xt&&(Ye=Ar[Bt])!=null;Bt++){if(me&&Ye){for(We=0,!Z&&Ye.ownerDocument!=M&&(so(Ye),Ee=!z);Pt=W[We++];)if(Pt(Ye,Z||M,Ee)){k.call(Ie,Ye);break}ze&&(he=Fs)}de&&((Ye=!Pt&&Ye)&&it--,Q&&Jn.push(Ye))}if(it+=Bt,de&&Bt!==it){for(We=0;Pt=ne[We++];)Pt(Jn,ar,Z,Ee);if(Q){if(it>0)for(;Bt--;)Jn[Bt]||ar[Bt]||(ar[Bt]=V.call(Ie));ar=Ua(ar)}k.apply(Ie,ar),ze&&!Q&&ar.length>0&&it+ne.length>1&&m.uniqueSort(Ie)}return ze&&(he=Fs,b=Zn),Jn};return de?rs(j):j}function Yl(W,ne){var de,me=[],j=[],Q=St[W+" "];if(!Q){for(ne||(ne=ni(W)),de=ne.length;de--;)Q=Or(ne[de]),Q[xe]?me.push(Q):j.push(Q);Q=St(W,Ku(j,me)),Q.selector=W}return Q}function zu(W,ne,de,me){var j,Q,Z,Ee,Ie,ze=typeof W=="function"&&W,Ye=!me&&ni(W=ze.selector||W);if(de=de||[],Ye.length===1){if(Q=Ye[0]=Ye[0].slice(0),Q.length>2&&(Z=Q[0]).type==="ID"&&ne.nodeType===9&&z&&p.relative[Q[1].type]){if(ne=(p.find.ID(Z.matches[0].replace($s,_s),ne)||[])[0],ne)ze&&(ne=ne.parentNode);else return de;W=W.slice(Q.shift().value.length)}for(j=Ur.needsContext.test(W)?0:Q.length;j--&&(Z=Q[j],!p.relative[Ee=Z.type]);)if((Ie=p.find[Ee])&&(me=Ie(Z.matches[0].replace($s,_s),ji.test(Q[0].type)&&Kl(ne.parentNode)||ne))){if(Q.splice(j,1),W=me.length&&ss(Q),!W)return k.apply(de,me),de;break}}return(ze||Yl(W,Ye))(me,ne,!z,de,!ne||ji.test(W)&&Kl(ne.parentNode)||ne),de}E.sortStable=xe.split("").sort(kn).join("")===xe,so(),E.sortDetached=ti(function(W){return W.compareDocumentPosition(M.createElement("fieldset"))&1}),m.find=ln,m.expr[":"]=m.expr.pseudos,m.unique=m.uniqueSort,ln.compile=Yl,ln.select=zu,ln.setDocument=so,ln.tokenize=ni,ln.escape=m.escapeSelector,ln.getText=m.text,ln.isXML=m.isXMLDoc,ln.selectors=m.expr,ln.support=m.support,ln.uniqueSort=m.uniqueSort})();var Qe=function(u,p,b){for(var x=[],O=b!==void 0;(u=u[p])&&u.nodeType!==9;)if(u.nodeType===1){if(O&&m(u).is(b))break;x.push(u)}return x},ht=function(u,p){for(var b=[];u;u=u.nextSibling)u.nodeType===1&&u!==p&&b.push(u);return b},at=m.expr.match.needsContext,vt=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function Xt(u,p,b){return T(p)?m.grep(u,function(x,O){return!!p.call(x,O,x)!==b}):p.nodeType?m.grep(u,function(x){return x===p!==b}):typeof p!="string"?m.grep(u,function(x){return d.call(p,x)>-1!==b}):m.filter(p,u,b)}m.filter=function(u,p,b){var x=p[0];return b&&(u=":not("+u+")"),p.length===1&&x.nodeType===1?m.find.matchesSelector(x,u)?[x]:[]:m.find.matches(u,m.grep(p,function(O){return O.nodeType===1}))},m.fn.extend({find:function(u){var p,b,x=this.length,O=this;if(typeof u!="string")return this.pushStack(m(u).filter(function(){for(p=0;p1?m.uniqueSort(b):b},filter:function(u){return this.pushStack(Xt(this,u||[],!1))},not:function(u){return this.pushStack(Xt(this,u||[],!0))},is:function(u){return!!Xt(this,typeof u=="string"&&at.test(u)?m(u):u||[],!1).length}});var tn,Ft=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,yt=m.fn.init=function(u,p,b){var x,O;if(!u)return this;if(b=b||tn,typeof u=="string")if(u[0]==="<"&&u[u.length-1]===">"&&u.length>=3?x=[null,u,null]:x=Ft.exec(u),x&&(x[1]||!p))if(x[1]){if(p=p instanceof m?p[0]:p,m.merge(this,m.parseHTML(x[1],p&&p.nodeType?p.ownerDocument||p:I,!0)),vt.test(x[1])&&m.isPlainObject(p))for(x in p)T(this[x])?this[x](p[x]):this.attr(x,p[x]);return this}else return O=I.getElementById(x[2]),O&&(this[0]=O,this.length=1),this;else return!p||p.jquery?(p||b).find(u):this.constructor(p).find(u);else{if(u.nodeType)return this[0]=u,this.length=1,this;if(T(u))return b.ready!==void 0?b.ready(u):u(m)}return m.makeArray(u,this)};yt.prototype=m.fn,tn=m(I);var Lt=/^(?:parents|prev(?:Until|All))/,Qt={children:!0,contents:!0,next:!0,prev:!0};m.fn.extend({has:function(u){var p=m(u,this),b=p.length;return this.filter(function(){for(var x=0;x-1:b.nodeType===1&&m.find.matchesSelector(b,u))){k.push(b);break}}return this.pushStack(k.length>1?m.uniqueSort(k):k)},index:function(u){return u?typeof u=="string"?d.call(m(u),this[0]):d.call(this,u.jquery?u[0]:u):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(u,p){return this.pushStack(m.uniqueSort(m.merge(this.get(),m(u,p))))},addBack:function(u){return this.add(u==null?this.prevObject:this.prevObject.filter(u))}});function Kt(u,p){for(;(u=u[p])&&u.nodeType!==1;);return u}m.each({parent:function(u){var p=u.parentNode;return p&&p.nodeType!==11?p:null},parents:function(u){return Qe(u,"parentNode")},parentsUntil:function(u,p,b){return Qe(u,"parentNode",b)},next:function(u){return Kt(u,"nextSibling")},prev:function(u){return Kt(u,"previousSibling")},nextAll:function(u){return Qe(u,"nextSibling")},prevAll:function(u){return Qe(u,"previousSibling")},nextUntil:function(u,p,b){return Qe(u,"nextSibling",b)},prevUntil:function(u,p,b){return Qe(u,"previousSibling",b)},siblings:function(u){return ht((u.parentNode||{}).firstChild,u)},children:function(u){return ht(u.firstChild)},contents:function(u){return u.contentDocument!=null&&i(u.contentDocument)?u.contentDocument:(F(u,"template")&&(u=u.content||u),m.merge([],u.childNodes))}},function(u,p){m.fn[u]=function(b,x){var O=m.map(this,p,b);return u.slice(-5)!=="Until"&&(x=b),x&&typeof x=="string"&&(O=m.filter(x,O)),this.length>1&&(Qt[u]||m.uniqueSort(O),Lt.test(u)&&O.reverse()),this.pushStack(O)}});var Rt=/[^\x20\t\r\n\f]+/g;function yn(u){var p={};return m.each(u.match(Rt)||[],function(b,x){p[x]=!0}),p}m.Callbacks=function(u){u=typeof u=="string"?yn(u):m.extend({},u);var p,b,x,O,k=[],M=[],q=-1,z=function(){for(O=O||u.once,x=p=!0;M.length;q=-1)for(b=M.shift();++q-1;)k.splice(he,1),he<=q&&q--}),this},has:function(ve){return ve?m.inArray(ve,k)>-1:k.length>0},empty:function(){return k&&(k=[]),this},disable:function(){return O=M=[],k=b="",this},disabled:function(){return!k},lock:function(){return O=M=[],!b&&!p&&(k=b=""),this},locked:function(){return!!O},fireWith:function(ve,xe){return O||(xe=xe||[],xe=[ve,xe.slice?xe.slice():xe],M.push(xe),p||z()),this},fire:function(){return ie.fireWith(this,arguments),this},fired:function(){return!!x}};return ie};function an(u){return u}function A(u){throw u}function C(u,p,b,x){var O;try{u&&T(O=u.promise)?O.call(u).done(p).fail(b):u&&T(O=u.then)?O.call(u,p,b):p.apply(void 0,[u].slice(x))}catch(k){b.apply(void 0,[k])}}m.extend({Deferred:function(u){var p=[["notify","progress",m.Callbacks("memory"),m.Callbacks("memory"),2],["resolve","done",m.Callbacks("once memory"),m.Callbacks("once memory"),0,"resolved"],["reject","fail",m.Callbacks("once memory"),m.Callbacks("once memory"),1,"rejected"]],b="pending",x={state:function(){return b},always:function(){return O.done(arguments).fail(arguments),this},catch:function(k){return x.then(null,k)},pipe:function(){var k=arguments;return m.Deferred(function(M){m.each(p,function(q,z){var ie=T(k[z[4]])&&k[z[4]];O[z[1]](function(){var ve=ie&&ie.apply(this,arguments);ve&&T(ve.promise)?ve.promise().progress(M.notify).done(M.resolve).fail(M.reject):M[z[0]+"With"](this,ie?[ve]:arguments)})}),k=null}).promise()},then:function(k,M,q){var z=0;function ie(ve,xe,he,De){return function(){var Ke=this,Tt=arguments,St=function(){var kn,bs;if(!(ve=z&&(he!==A&&(Ke=void 0,Tt=[kn]),xe.rejectWith(Ke,Tt))}};ve?qn():(m.Deferred.getErrorHook?qn.error=m.Deferred.getErrorHook():m.Deferred.getStackHook&&(qn.error=m.Deferred.getStackHook()),t.setTimeout(qn))}}return m.Deferred(function(ve){p[0][3].add(ie(0,ve,T(q)?q:an,ve.notifyWith)),p[1][3].add(ie(0,ve,T(k)?k:an)),p[2][3].add(ie(0,ve,T(M)?M:A))}).promise()},promise:function(k){return k!=null?m.extend(k,x):x}},O={};return m.each(p,function(k,M){var q=M[2],z=M[5];x[M[1]]=q.add,z&&q.add(function(){b=z},p[3-k][2].disable,p[3-k][3].disable,p[0][2].lock,p[0][3].lock),q.add(M[3].fire),O[M[0]]=function(){return O[M[0]+"With"](this===O?void 0:this,arguments),this},O[M[0]+"With"]=q.fireWith}),x.promise(O),u&&u.call(O,O),O},when:function(u){var p=arguments.length,b=p,x=Array(b),O=a.call(arguments),k=m.Deferred(),M=function(q){return function(z){x[q]=this,O[q]=arguments.length>1?a.call(arguments):z,--p||k.resolveWith(x,O)}};if(p<=1&&(C(u,k.done(M(b)).resolve,k.reject,!p),k.state()==="pending"||T(O[b]&&O[b].then)))return k.then();for(;b--;)C(O[b],M(b),k.reject);return k.promise()}});var G=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;m.Deferred.exceptionHook=function(u,p){t.console&&t.console.warn&&u&&G.test(u.name)&&t.console.warn("jQuery.Deferred exception: "+u.message,u.stack,p)},m.readyException=function(u){t.setTimeout(function(){throw u})};var oe=m.Deferred();m.fn.ready=function(u){return oe.then(u).catch(function(p){m.readyException(p)}),this},m.extend({isReady:!1,readyWait:1,ready:function(u){(u===!0?--m.readyWait:m.isReady)||(m.isReady=!0,!(u!==!0&&--m.readyWait>0)&&oe.resolveWith(I,[m]))}}),m.ready.then=oe.then;function te(){I.removeEventListener("DOMContentLoaded",te),t.removeEventListener("load",te),m.ready()}I.readyState==="complete"||I.readyState!=="loading"&&!I.documentElement.doScroll?t.setTimeout(m.ready):(I.addEventListener("DOMContentLoaded",te),t.addEventListener("load",te));var be=function(u,p,b,x,O,k,M){var q=0,z=u.length,ie=b==null;if(R(b)==="object"){O=!0;for(q in b)be(u,p,q,b[q],!0,k,M)}else if(x!==void 0&&(O=!0,T(x)||(M=!0),ie&&(M?(p.call(u,x),p=null):(ie=p,p=function(ve,xe,he){return ie.call(m(ve),he)})),p))for(;q1,null,!0)},removeData:function(u){return this.each(function(){ge.remove(this,u)})}}),m.extend({queue:function(u,p,b){var x;if(u)return p=(p||"fx")+"queue",x=X.get(u,p),b&&(!x||Array.isArray(b)?x=X.access(u,p,m.makeArray(b)):x.push(b)),x||[]},dequeue:function(u,p){p=p||"fx";var b=m.queue(u,p),x=b.length,O=b.shift(),k=m._queueHooks(u,p),M=function(){m.dequeue(u,p)};O==="inprogress"&&(O=b.shift(),x--),O&&(p==="fx"&&b.unshift("inprogress"),delete k.stop,O.call(u,M,k)),!x&&k&&k.empty.fire()},_queueHooks:function(u,p){var b=p+"queueHooks";return X.get(u,b)||X.access(u,b,{empty:m.Callbacks("once memory").add(function(){X.remove(u,[p+"queue",b])})})}}),m.fn.extend({queue:function(u,p){var b=2;return typeof u!="string"&&(p=u,u="fx",b--),arguments.length\x20\t\r\n\f]*)/i,Yo=/^$|^module$|\/(?:java|ecma)script/i;(function(){var u=I.createDocumentFragment(),p=u.appendChild(I.createElement("div")),b=I.createElement("input");b.setAttribute("type","radio"),b.setAttribute("checked","checked"),b.setAttribute("name","t"),p.appendChild(b),E.checkClone=p.cloneNode(!0).cloneNode(!0).lastChild.checked,p.innerHTML="",E.noCloneChecked=!!p.cloneNode(!0).lastChild.defaultValue,p.innerHTML="",E.option=!!p.lastChild})();var yr={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};yr.tbody=yr.tfoot=yr.colgroup=yr.caption=yr.thead,yr.th=yr.td,E.option||(yr.optgroup=yr.option=[1,""]);function Hn(u,p){var b;return typeof u.getElementsByTagName<"u"?b=u.getElementsByTagName(p||"*"):typeof u.querySelectorAll<"u"?b=u.querySelectorAll(p||"*"):b=[],p===void 0||p&&F(u,p)?m.merge([u],b):b}function ka(u,p){for(var b=0,x=u.length;b-1){O&&O.push(k);continue}if(ie=nt(k),M=Hn(xe.appendChild(k),"script"),ie&&ka(M),b)for(ve=0;k=M[ve++];)Yo.test(k.type||"")&&b.push(k)}return xe}var Eu=/^([^.]*)(?:\.(.+)|)/;function Qs(){return!0}function Xo(){return!1}function Fi(u,p,b,x,O,k){var M,q;if(typeof p=="object"){typeof b!="string"&&(x=x||b,b=void 0);for(q in p)Fi(u,q,b,x,p[q],k);return u}if(x==null&&O==null?(O=b,x=b=void 0):O==null&&(typeof b=="string"?(O=x,x=void 0):(O=x,x=b,b=void 0)),O===!1)O=Xo;else if(!O)return u;return k===1&&(M=O,O=function(z){return m().off(z),M.apply(this,arguments)},O.guid=M.guid||(M.guid=m.guid++)),u.each(function(){m.event.add(this,p,O,x,b)})}m.event={global:{},add:function(u,p,b,x,O){var k,M,q,z,ie,ve,xe,he,De,Ke,Tt,St=X.get(u);if(Fe(u))for(b.handler&&(k=b,b=k.handler,O=k.selector),O&&m.find.matchesSelector(Je,O),b.guid||(b.guid=m.guid++),(z=St.events)||(z=St.events=Object.create(null)),(M=St.handle)||(M=St.handle=function(qn){return typeof m<"u"&&m.event.triggered!==qn.type?m.event.dispatch.apply(u,arguments):void 0}),p=(p||"").match(Rt)||[""],ie=p.length;ie--;)q=Eu.exec(p[ie])||[],De=Tt=q[1],Ke=(q[2]||"").split(".").sort(),De&&(xe=m.event.special[De]||{},De=(O?xe.delegateType:xe.bindType)||De,xe=m.event.special[De]||{},ve=m.extend({type:De,origType:Tt,data:x,handler:b,guid:b.guid,selector:O,needsContext:O&&m.expr.match.needsContext.test(O),namespace:Ke.join(".")},k),(he=z[De])||(he=z[De]=[],he.delegateCount=0,(!xe.setup||xe.setup.call(u,x,Ke,M)===!1)&&u.addEventListener&&u.addEventListener(De,M)),xe.add&&(xe.add.call(u,ve),ve.handler.guid||(ve.handler.guid=b.guid)),O?he.splice(he.delegateCount++,0,ve):he.push(ve),m.event.global[De]=!0)},remove:function(u,p,b,x,O){var k,M,q,z,ie,ve,xe,he,De,Ke,Tt,St=X.hasData(u)&&X.get(u);if(!(!St||!(z=St.events))){for(p=(p||"").match(Rt)||[""],ie=p.length;ie--;){if(q=Eu.exec(p[ie])||[],De=Tt=q[1],Ke=(q[2]||"").split(".").sort(),!De){for(De in z)m.event.remove(u,De+p[ie],b,x,!0);continue}for(xe=m.event.special[De]||{},De=(x?xe.delegateType:xe.bindType)||De,he=z[De]||[],q=q[2]&&new RegExp("(^|\\.)"+Ke.join("\\.(?:.*\\.|)")+"(\\.|$)"),M=k=he.length;k--;)ve=he[k],(O||Tt===ve.origType)&&(!b||b.guid===ve.guid)&&(!q||q.test(ve.namespace))&&(!x||x===ve.selector||x==="**"&&ve.selector)&&(he.splice(k,1),ve.selector&&he.delegateCount--,xe.remove&&xe.remove.call(u,ve));M&&!he.length&&((!xe.teardown||xe.teardown.call(u,Ke,St.handle)===!1)&&m.removeEvent(u,De,St.handle),delete z[De])}m.isEmptyObject(z)&&X.remove(u,"handle events")}},dispatch:function(u){var p,b,x,O,k,M,q=new Array(arguments.length),z=m.event.fix(u),ie=(X.get(this,"events")||Object.create(null))[z.type]||[],ve=m.event.special[z.type]||{};for(q[0]=z,p=1;p=1)){for(;ie!==this;ie=ie.parentNode||this)if(ie.nodeType===1&&!(u.type==="click"&&ie.disabled===!0)){for(k=[],M={},b=0;b-1:m.find(O,this,null,[ie]).length),M[O]&&k.push(x);k.length&&q.push({elem:ie,handlers:k})}}return ie=this,z\s*$/g;function Su(u,p){return F(u,"table")&&F(p.nodeType!==11?p:p.firstChild,"tr")&&m(u).children("tbody")[0]||u}function Nh(u){return u.type=(u.getAttribute("type")!==null)+"/"+u.type,u}function Lh(u){return(u.type||"").slice(0,5)==="true/"?u.type=u.type.slice(5):u.removeAttribute("type"),u}function wu(u,p){var b,x,O,k,M,q,z;if(p.nodeType===1){if(X.hasData(u)&&(k=X.get(u),z=k.events,z)){X.remove(p,"handle events");for(O in z)for(b=0,x=z[O].length;b1&&typeof De=="string"&&!E.checkClone&&kh.test(De))return u.each(function(Tt){var St=u.eq(Tt);Ke&&(p[0]=De.call(this,Tt,St.html())),qo(St,p,b,x)});if(xe&&(O=xu(p,u[0].ownerDocument,!1,u,x),k=O.firstChild,O.childNodes.length===1&&(O=k),k||x)){for(M=m.map(Hn(O,"script"),Nh),q=M.length;ve0&&ka(M,!z&&Hn(u,"script")),q},cleanData:function(u){for(var p,b,x,O=m.event.special,k=0;(b=u[k])!==void 0;k++)if(Fe(b)){if(p=b[X.expando]){if(p.events)for(x in p.events)O[x]?m.event.remove(b,x):m.removeEvent(b,x,p.handle);b[X.expando]=void 0}b[ge.expando]&&(b[ge.expando]=void 0)}}}),m.fn.extend({detach:function(u){return Cu(this,u,!0)},remove:function(u){return Cu(this,u)},text:function(u){return be(this,function(p){return p===void 0?m.text(this):this.empty().each(function(){(this.nodeType===1||this.nodeType===11||this.nodeType===9)&&(this.textContent=p)})},null,u,arguments.length)},append:function(){return qo(this,arguments,function(u){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var p=Su(this,u);p.appendChild(u)}})},prepend:function(){return qo(this,arguments,function(u){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var p=Su(this,u);p.insertBefore(u,p.firstChild)}})},before:function(){return qo(this,arguments,function(u){this.parentNode&&this.parentNode.insertBefore(u,this)})},after:function(){return qo(this,arguments,function(u){this.parentNode&&this.parentNode.insertBefore(u,this.nextSibling)})},empty:function(){for(var u,p=0;(u=this[p])!=null;p++)u.nodeType===1&&(m.cleanData(Hn(u,!1)),u.textContent="");return this},clone:function(u,p){return u=u??!1,p=p??u,this.map(function(){return m.clone(this,u,p)})},html:function(u){return be(this,function(p){var b=this[0]||{},x=0,O=this.length;if(p===void 0&&b.nodeType===1)return b.innerHTML;if(typeof p=="string"&&!Ah.test(p)&&!yr[(Xn.exec(p)||["",""])[1].toLowerCase()]){p=m.htmlPrefilter(p);try{for(;x=0&&(z+=Math.max(0,Math.ceil(u["offset"+p[0].toUpperCase()+p.slice(1)]-k-z-q-.5))||0),z+ie}function Pl(u,p,b){var x=Na(u),O=!E.boxSizingReliable()||b,k=O&&m.css(u,"boxSizing",!1,x)==="border-box",M=k,q=Bi(u,p,x),z="offset"+p[0].toUpperCase()+p.slice(1);if(Ol.test(q)){if(!b)return q;q="auto"}return(!E.boxSizingReliable()&&k||!E.reliableTrDimensions()&&F(u,"tr")||q==="auto"||!parseFloat(q)&&m.css(u,"display",!1,x)==="inline")&&u.getClientRects().length&&(k=m.css(u,"boxSizing",!1,x)==="border-box",M=z in u,M&&(q=u[z])),q=parseFloat(q)||0,q+kl(u,p,b||(k?"border":"content"),M,x,q)+"px"}m.extend({cssHooks:{opacity:{get:function(u,p){if(p){var b=Bi(u,"opacity");return b===""?"1":b}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(u,p,b,x){if(!(!u||u.nodeType===3||u.nodeType===8||!u.style)){var O,k,M,q=Te(p),z=Al.test(p),ie=u.style;if(z||(p=Ra(q)),M=m.cssHooks[p]||m.cssHooks[q],b!==void 0){if(k=typeof b,k==="string"&&(O=Pe.exec(b))&&O[1]&&(b=st(u,p,O),k="number"),b==null||b!==b)return;k==="number"&&!z&&(b+=O&&O[3]||(m.cssNumber[q]?"":"px")),!E.clearCloneStyle&&b===""&&p.indexOf("background")===0&&(ie[p]="inherit"),(!M||!("set"in M)||(b=M.set(u,b,x))!==void 0)&&(z?ie.setProperty(p,b):ie[p]=b)}else return M&&"get"in M&&(O=M.get(u,!1,x))!==void 0?O:ie[p]}},css:function(u,p,b,x){var O,k,M,q=Te(p),z=Al.test(p);return z||(p=Ra(q)),M=m.cssHooks[p]||m.cssHooks[q],M&&"get"in M&&(O=M.get(u,!0,b)),O===void 0&&(O=Bi(u,p,x)),O==="normal"&&p in Lu&&(O=Lu[p]),b===""||b?(k=parseFloat(O),b===!0||isFinite(k)?k||0:O):O}}),m.each(["height","width"],function(u,p){m.cssHooks[p]={get:function(b,x,O){if(x)return Nu.test(m.css(b,"display"))&&(!b.getClientRects().length||!b.getBoundingClientRect().width)?Iu(b,Rh,function(){return Pl(b,p,O)}):Pl(b,p,O)},set:function(b,x,O){var k,M=Na(b),q=!E.scrollboxSize()&&M.position==="absolute",z=q||O,ie=z&&m.css(b,"boxSizing",!1,M)==="border-box",ve=O?kl(b,p,O,ie,M):0;return ie&&q&&(ve-=Math.ceil(b["offset"+p[0].toUpperCase()+p.slice(1)]-parseFloat(M[p])-kl(b,p,"border",!1,M)-.5)),ve&&(k=Pe.exec(x))&&(k[3]||"px")!=="px"&&(b.style[p]=x,x=m.css(b,p)),Ru(b,x,ve)}}}),m.cssHooks.marginLeft=Ui(E.reliableMarginLeft,function(u,p){if(p)return(parseFloat(Bi(u,"marginLeft"))||u.getBoundingClientRect().left-Iu(u,{marginLeft:0},function(){return u.getBoundingClientRect().left}))+"px"}),m.each({margin:"",padding:"",border:"Width"},function(u,p){m.cssHooks[u+p]={expand:function(b){for(var x=0,O={},k=typeof b=="string"?b.split(" "):[b];x<4;x++)O[u+He[x]+p]=k[x]||k[x-2]||k[0];return O}},u!=="margin"&&(m.cssHooks[u+p].set=Ru)}),m.fn.extend({css:function(u,p){return be(this,function(b,x,O){var k,M,q={},z=0;if(Array.isArray(x)){for(k=Na(b),M=x.length;z1)}});function ur(u,p,b,x,O){return new ur.prototype.init(u,p,b,x,O)}m.Tween=ur,ur.prototype={constructor:ur,init:function(u,p,b,x,O,k){this.elem=u,this.prop=b,this.easing=O||m.easing._default,this.options=p,this.start=this.now=this.cur(),this.end=x,this.unit=k||(m.cssNumber[b]?"":"px")},cur:function(){var u=ur.propHooks[this.prop];return u&&u.get?u.get(this):ur.propHooks._default.get(this)},run:function(u){var p,b=ur.propHooks[this.prop];return this.options.duration?this.pos=p=m.easing[this.easing](u,this.options.duration*u,0,1,this.options.duration):this.pos=p=u,this.now=(this.end-this.start)*p+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),b&&b.set?b.set(this):ur.propHooks._default.set(this),this}},ur.prototype.init.prototype=ur.prototype,ur.propHooks={_default:{get:function(u){var p;return u.elem.nodeType!==1||u.elem[u.prop]!=null&&u.elem.style[u.prop]==null?u.elem[u.prop]:(p=m.css(u.elem,u.prop,""),!p||p==="auto"?0:p)},set:function(u){m.fx.step[u.prop]?m.fx.step[u.prop](u):u.elem.nodeType===1&&(m.cssHooks[u.prop]||u.elem.style[Ra(u.prop)]!=null)?m.style(u.elem,u.prop,u.now+u.unit):u.elem[u.prop]=u.now}}},ur.propHooks.scrollTop=ur.propHooks.scrollLeft={set:function(u){u.elem.nodeType&&u.elem.parentNode&&(u.elem[u.prop]=u.now)}},m.easing={linear:function(u){return u},swing:function(u){return .5-Math.cos(u*Math.PI)/2},_default:"swing"},m.fx=ur.prototype.init,m.fx.step={};var vo,Jo,Dh=/^(?:toggle|show|hide)$/,Du=/queueHooks$/;function Zo(){Jo&&(I.hidden===!1&&t.requestAnimationFrame?t.requestAnimationFrame(Zo):t.setTimeout(Zo,m.fx.interval),m.fx.tick())}function Nl(){return t.setTimeout(function(){vo=void 0}),vo=Date.now()}function Da(u,p){var b,x=0,O={height:u};for(p=p?1:0;x<4;x+=2-p)b=He[x],O["margin"+b]=O["padding"+b]=u;return p&&(O.opacity=O.width=u),O}function Ll(u,p,b){for(var x,O=(ts.tweeners[p]||[]).concat(ts.tweeners["*"]),k=0,M=O.length;k1)},removeAttr:function(u){return this.each(function(){m.removeAttr(this,u)})}}),m.extend({attr:function(u,p,b){var x,O,k=u.nodeType;if(!(k===3||k===8||k===2)){if(typeof u.getAttribute>"u")return m.prop(u,p,b);if((k!==1||!m.isXMLDoc(u))&&(O=m.attrHooks[p.toLowerCase()]||(m.expr.match.bool.test(p)?Dl:void 0)),b!==void 0){if(b===null){m.removeAttr(u,p);return}return O&&"set"in O&&(x=O.set(u,b,p))!==void 0?x:(u.setAttribute(p,b+""),b)}return O&&"get"in O&&(x=O.get(u,p))!==null?x:(x=m.find.attr(u,p),x??void 0)}},attrHooks:{type:{set:function(u,p){if(!E.radioValue&&p==="radio"&&F(u,"input")){var b=u.value;return u.setAttribute("type",p),b&&(u.value=b),p}}}},removeAttr:function(u,p){var b,x=0,O=p&&p.match(Rt);if(O&&u.nodeType===1)for(;b=O[x++];)u.removeAttribute(b)}}),Dl={set:function(u,p,b){return p===!1?m.removeAttr(u,b):u.setAttribute(b,b),b}},m.each(m.expr.match.bool.source.match(/\w+/g),function(u,p){var b=_o[p]||m.find.attr;_o[p]=function(x,O,k){var M,q,z=O.toLowerCase();return k||(q=_o[z],_o[z]=M,M=b(x,O,k)!=null?z:null,_o[z]=q),M}});var Ml=/^(?:input|select|textarea|button)$/i,Qo=/^(?:a|area)$/i;m.fn.extend({prop:function(u,p){return be(this,m.prop,u,p,arguments.length>1)},removeProp:function(u){return this.each(function(){delete this[m.propFix[u]||u]})}}),m.extend({prop:function(u,p,b){var x,O,k=u.nodeType;if(!(k===3||k===8||k===2))return(k!==1||!m.isXMLDoc(u))&&(p=m.propFix[p]||p,O=m.propHooks[p]),b!==void 0?O&&"set"in O&&(x=O.set(u,b,p))!==void 0?x:u[p]=b:O&&"get"in O&&(x=O.get(u,p))!==null?x:u[p]},propHooks:{tabIndex:{get:function(u){var p=m.find.attr(u,"tabindex");return p?parseInt(p,10):Ml.test(u.nodeName)||Qo.test(u.nodeName)&&u.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),E.optSelected||(m.propHooks.selected={get:function(u){var p=u.parentNode;return p&&p.parentNode&&p.parentNode.selectedIndex,null},set:function(u){var p=u.parentNode;p&&(p.selectedIndex,p.parentNode&&p.parentNode.selectedIndex)}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this});function eo(u){var p=u.match(Rt)||[];return p.join(" ")}function to(u){return u.getAttribute&&u.getAttribute("class")||""}function $l(u){return Array.isArray(u)?u:typeof u=="string"?u.match(Rt)||[]:[]}m.fn.extend({addClass:function(u){var p,b,x,O,k,M;return T(u)?this.each(function(q){m(this).addClass(u.call(this,q,to(this)))}):(p=$l(u),p.length?this.each(function(){if(x=to(this),b=this.nodeType===1&&" "+eo(x)+" ",b){for(k=0;k-1;)b=b.replace(" "+O+" "," ");M=eo(b),x!==M&&this.setAttribute("class",M)}}):this):this.attr("class","")},toggleClass:function(u,p){var b,x,O,k,M=typeof u,q=M==="string"||Array.isArray(u);return T(u)?this.each(function(z){m(this).toggleClass(u.call(this,z,to(this),p),p)}):typeof p=="boolean"&&q?p?this.addClass(u):this.removeClass(u):(b=$l(u),this.each(function(){if(q)for(k=m(this),O=0;O-1)return!0;return!1}});var $u=/\r/g;m.fn.extend({val:function(u){var p,b,x,O=this[0];return arguments.length?(x=T(u),this.each(function(k){var M;this.nodeType===1&&(x?M=u.call(this,k,m(this).val()):M=u,M==null?M="":typeof M=="number"?M+="":Array.isArray(M)&&(M=m.map(M,function(q){return q==null?"":q+""})),p=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],(!p||!("set"in p)||p.set(this,M,"value")===void 0)&&(this.value=M))})):O?(p=m.valHooks[O.type]||m.valHooks[O.nodeName.toLowerCase()],p&&"get"in p&&(b=p.get(O,"value"))!==void 0?b:(b=O.value,typeof b=="string"?b.replace($u,""):b??"")):void 0}}),m.extend({valHooks:{option:{get:function(u){var p=m.find.attr(u,"value");return p??eo(m.text(u))}},select:{get:function(u){var p,b,x,O=u.options,k=u.selectedIndex,M=u.type==="select-one",q=M?null:[],z=M?k+1:O.length;for(k<0?x=z:x=M?k:0;x-1)&&(b=!0);return b||(u.selectedIndex=-1),k}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(u,p){if(Array.isArray(p))return u.checked=m.inArray(m(u).val(),p)>-1}},E.checkOn||(m.valHooks[this].get=function(u){return u.getAttribute("value")===null?"on":u.value})});var ei=t.location,Fl={guid:Date.now()},Ma=/\?/;m.parseXML=function(u){var p,b;if(!u||typeof u!="string")return null;try{p=new t.DOMParser().parseFromString(u,"text/xml")}catch{}return b=p&&p.getElementsByTagName("parsererror")[0],(!p||b)&&m.error("Invalid XML: "+(b?m.map(b.childNodes,function(x){return x.textContent}).join(` -`):u)),p};var Fu=/^(?:focusinfocus|focusoutblur)$/,Bu=function(u){u.stopPropagation()};m.extend(m.event,{trigger:function(u,p,b,x){var O,k,M,q,z,ie,ve,xe,he=[b||I],De=g.call(u,"type")?u.type:u,Ke=g.call(u,"namespace")?u.namespace.split("."):[];if(k=xe=M=b=b||I,!(b.nodeType===3||b.nodeType===8)&&!Fu.test(De+m.event.triggered)&&(De.indexOf(".")>-1&&(Ke=De.split("."),De=Ke.shift(),Ke.sort()),z=De.indexOf(":")<0&&"on"+De,u=u[m.expando]?u:new m.Event(De,typeof u=="object"&&u),u.isTrigger=x?2:3,u.namespace=Ke.join("."),u.rnamespace=u.namespace?new RegExp("(^|\\.)"+Ke.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,u.result=void 0,u.target||(u.target=b),p=p==null?[u]:m.makeArray(p,[u]),ve=m.event.special[De]||{},!(!x&&ve.trigger&&ve.trigger.apply(b,p)===!1))){if(!x&&!ve.noBubble&&!N(b)){for(q=ve.delegateType||De,Fu.test(q+De)||(k=k.parentNode);k;k=k.parentNode)he.push(k),M=k;M===(b.ownerDocument||I)&&he.push(M.defaultView||M.parentWindow||t)}for(O=0;(k=he[O++])&&!u.isPropagationStopped();)xe=k,u.type=O>1?q:ve.bindType||De,ie=(X.get(k,"events")||Object.create(null))[u.type]&&X.get(k,"handle"),ie&&ie.apply(k,p),ie=z&&k[z],ie&&ie.apply&&Fe(k)&&(u.result=ie.apply(k,p),u.result===!1&&u.preventDefault());return u.type=De,!x&&!u.isDefaultPrevented()&&(!ve._default||ve._default.apply(he.pop(),p)===!1)&&Fe(b)&&z&&T(b[De])&&!N(b)&&(M=b[z],M&&(b[z]=null),m.event.triggered=De,u.isPropagationStopped()&&xe.addEventListener(De,Bu),b[De](),u.isPropagationStopped()&&xe.removeEventListener(De,Bu),m.event.triggered=void 0,M&&(b[z]=M)),u.result}},simulate:function(u,p,b){var x=m.extend(new m.Event,b,{type:u,isSimulated:!0});m.event.trigger(x,null,p)}}),m.fn.extend({trigger:function(u,p){return this.each(function(){m.event.trigger(u,p,this)})},triggerHandler:function(u,p){var b=this[0];if(b)return m.event.trigger(u,p,b,!0)}});var Mh=/\[\]$/,Bl=/\r?\n/g,$h=/^(?:submit|button|image|reset|file)$/i,Fh=/^(?:input|select|textarea|keygen)/i;function Ul(u,p,b,x){var O;if(Array.isArray(p))m.each(p,function(k,M){b||Mh.test(u)?x(u,M):Ul(u+"["+(typeof M=="object"&&M!=null?k:"")+"]",M,b,x)});else if(!b&&R(p)==="object")for(O in p)Ul(u+"["+O+"]",p[O],b,x);else x(u,p)}m.param=function(u,p){var b,x=[],O=function(k,M){var q=T(M)?M():M;x[x.length]=encodeURIComponent(k)+"="+encodeURIComponent(q??"")};if(u==null)return"";if(Array.isArray(u)||u.jquery&&!m.isPlainObject(u))m.each(u,function(){O(this.name,this.value)});else for(b in u)Ul(b,u[b],p,O);return x.join("&")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var u=m.prop(this,"elements");return u?m.makeArray(u):this}).filter(function(){var u=this.type;return this.name&&!m(this).is(":disabled")&&Fh.test(this.nodeName)&&!$h.test(u)&&(this.checked||!It.test(u))}).map(function(u,p){var b=m(this).val();return b==null?null:Array.isArray(b)?m.map(b,function(x){return{name:p.name,value:x.replace(Bl,`\r + */var P0;function W$(){return P0||(P0=1,function(e){(function(t,n){e.exports=t.document?n(t,!0):function(r){if(!r.document)throw new Error("jQuery requires a window with a document");return n(r)}})(typeof window<"u"?window:ia,function(t,n){var r=[],i=Object.getPrototypeOf,a=r.slice,o=r.flat?function(u){return r.flat.call(u)}:function(u){return r.concat.apply([],u)},c=r.push,d=r.indexOf,f={},y=f.toString,g=f.hasOwnProperty,v=g.toString,S=v.call(Object),E={},T=function(p){return typeof p=="function"&&typeof p.nodeType!="number"&&typeof p.item!="function"},N=function(p){return p!=null&&p===p.window},I=t.document,D={type:!0,src:!0,nonce:!0,noModule:!0};function L(u,p,b){b=b||I;var x,O,k=b.createElement("script");if(k.text=u,p)for(x in D)O=p[x]||p.getAttribute&&p.getAttribute(x),O&&k.setAttribute(x,O);b.head.appendChild(k).parentNode.removeChild(k)}function R(u){return u==null?u+"":typeof u=="object"||typeof u=="function"?f[y.call(u)]||"object":typeof u}var U="3.7.1",H=/HTML$/i,m=function(u,p){return new m.fn.init(u,p)};m.fn=m.prototype={jquery:U,constructor:m,length:0,toArray:function(){return a.call(this)},get:function(u){return u==null?a.call(this):u<0?this[u+this.length]:this[u]},pushStack:function(u){var p=m.merge(this.constructor(),u);return p.prevObject=this,p},each:function(u){return m.each(this,u)},map:function(u){return this.pushStack(m.map(this,function(p,b){return u.call(p,b,p)}))},slice:function(){return this.pushStack(a.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(m.grep(this,function(u,p){return(p+1)%2}))},odd:function(){return this.pushStack(m.grep(this,function(u,p){return p%2}))},eq:function(u){var p=this.length,b=+u+(u<0?p:0);return this.pushStack(b>=0&&b0&&p-1 in u}function F(u,p){return u.nodeName&&u.nodeName.toLowerCase()===p.toLowerCase()}var V=r.pop,re=r.sort,ce=r.splice,J="[\\x20\\t\\r\\n\\f]",ye=new RegExp("^"+J+"+|((?:^|[^\\\\])(?:\\\\.)*)"+J+"+$","g");m.contains=function(u,p){var b=p&&p.parentNode;return u===b||!!(b&&b.nodeType===1&&(u.contains?u.contains(b):u.compareDocumentPosition&&u.compareDocumentPosition(b)&16))};var Me=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function fe(u,p){return p?u==="\0"?"�":u.slice(0,-1)+"\\"+u.charCodeAt(u.length-1).toString(16)+" ":"\\"+u}m.escapeSelector=function(u){return(u+"").replace(Me,fe)};var Se=I,we=c;(function(){var u,p,b,x,O,k=we,M,q,z,ie,ve,xe=m.expando,he=0,De=0,Ke=Wi(),Tt=Wi(),St=Wi(),qn=Wi(),kn=function(W,ne){return W===ne&&(O=!0),0},bs="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",vs="(?:\\\\[\\da-fA-F]{1,6}"+J+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",Ut="\\["+J+"*("+vs+")(?:"+J+"*([*^$|!~]?=)"+J+`*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(`+vs+"))|)"+J+"*\\]",no=":("+vs+`)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|`+Ut+")*)|.*)\\)|)",Ht=new RegExp(J+"+","g"),gn=new RegExp("^"+J+"*,"+J+"*"),Hi=new RegExp("^"+J+"*([>+~]|"+J+")"+J+"*"),Fa=new RegExp(J+"|>"),ns=new RegExp(no),xo=new RegExp("^"+vs+"$"),Ur={ID:new RegExp("^#("+vs+")"),CLASS:new RegExp("^\\.("+vs+")"),TAG:new RegExp("^("+vs+"|[*])"),ATTR:new RegExp("^"+Ut),PSEUDO:new RegExp("^"+no),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+J+"*(even|odd|(([+-]|)(\\d*)n|)"+J+"*(?:([+-]|)"+J+"*(\\d+)|))"+J+"*\\)|)","i"),bool:new RegExp("^(?:"+bs+")$","i"),needsContext:new RegExp("^"+J+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+J+"*((?:-\\d)?\\d*)"+J+"*\\)|)(?=[^-]|$)","i")},Ms=/^(?:input|select|textarea|button)$/i,ro=/^h\d$/i,br=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ji=/[+~]/,$s=new RegExp("\\\\[\\da-fA-F]{1,6}"+J+"?|\\\\([^\\r\\n\\f])","g"),_s=function(W,ne){var de="0x"+W.slice(1)-65536;return ne||(de<0?String.fromCharCode(de+65536):String.fromCharCode(de>>10|55296,de&1023|56320))},Ir=function(){so()},Gl=Eo(function(W){return W.disabled===!0&&F(W,"fieldset")},{dir:"parentNode",next:"legend"});function Vi(){try{return M.activeElement}catch{}}try{k.apply(r=a.call(Se.childNodes),Se.childNodes),r[Se.childNodes.length].nodeType}catch{k={apply:function(ne,de){we.apply(ne,a.call(de))},call:function(ne){we.apply(ne,a.call(arguments,1))}}}function ln(W,ne,de,me){var j,Q,Z,Ee,Ie,ze,Ye,We=ne&&ne.ownerDocument,Pt=ne?ne.nodeType:9;if(de=de||[],typeof W!="string"||!W||Pt!==1&&Pt!==9&&Pt!==11)return de;if(!me&&(so(ne),ne=ne||M,z)){if(Pt!==11&&(Ie=br.exec(W)))if(j=Ie[1]){if(Pt===9)if(Z=ne.getElementById(j)){if(Z.id===j)return k.call(de,Z),de}else return de;else if(We&&(Z=We.getElementById(j))&&ln.contains(ne,Z)&&Z.id===j)return k.call(de,Z),de}else{if(Ie[2])return k.apply(de,ne.getElementsByTagName(W)),de;if((j=Ie[3])&&ne.getElementsByClassName)return k.apply(de,ne.getElementsByClassName(j)),de}if(!qn[W+" "]&&(!ie||!ie.test(W))){if(Ye=W,We=ne,Pt===1&&(Fa.test(W)||Hi.test(W))){for(We=ji.test(W)&&Kl(ne.parentNode)||ne,(We!=ne||!E.scope)&&((Ee=ne.getAttribute("id"))?Ee=m.escapeSelector(Ee):ne.setAttribute("id",Ee=xe)),ze=ni(W),Q=ze.length;Q--;)ze[Q]=(Ee?"#"+Ee:":scope")+" "+ss(ze[Q]);Ye=ze.join(",")}try{return k.apply(de,We.querySelectorAll(Ye)),de}catch{qn(W,!0)}finally{Ee===xe&&ne.removeAttribute("id")}}}return Ku(W.replace(ye,"$1"),ne,de,me)}function Wi(){var W=[];function ne(de,me){return W.push(de+" ")>p.cacheLength&&delete ne[W.shift()],ne[de+" "]=me}return ne}function rs(W){return W[xe]=!0,W}function ti(W){var ne=M.createElement("fieldset");try{return!!W(ne)}catch{return!1}finally{ne.parentNode&&ne.parentNode.removeChild(ne),ne=null}}function zh(W){return function(ne){return F(ne,"input")&&ne.type===W}}function Yh(W){return function(ne){return(F(ne,"input")||F(ne,"button"))&&ne.type===W}}function Wu(W){return function(ne){return"form"in ne?ne.parentNode&&ne.disabled===!1?"label"in ne?"label"in ne.parentNode?ne.parentNode.disabled===W:ne.disabled===W:ne.isDisabled===W||ne.isDisabled!==!W&&Gl(ne)===W:ne.disabled===W:"label"in ne?ne.disabled===W:!1}}function Hr(W){return rs(function(ne){return ne=+ne,rs(function(de,me){for(var j,Q=W([],de.length,ne),Z=Q.length;Z--;)de[j=Q[Z]]&&(de[j]=!(me[j]=de[j]))})})}function Kl(W){return W&&typeof W.getElementsByTagName<"u"&&W}function so(W){var ne,de=W?W.ownerDocument||W:Se;return de==M||de.nodeType!==9||!de.documentElement||(M=de,q=M.documentElement,z=!m.isXMLDoc(M),ve=q.matches||q.webkitMatchesSelector||q.msMatchesSelector,q.msMatchesSelector&&Se!=M&&(ne=M.defaultView)&&ne.top!==ne&&ne.addEventListener("unload",Ir),E.getById=ti(function(me){return q.appendChild(me).id=m.expando,!M.getElementsByName||!M.getElementsByName(m.expando).length}),E.disconnectedMatch=ti(function(me){return ve.call(me,"*")}),E.scope=ti(function(){return M.querySelectorAll(":scope")}),E.cssHas=ti(function(){try{return M.querySelector(":has(*,:jqfake)"),!1}catch{return!0}}),E.getById?(p.filter.ID=function(me){var j=me.replace($s,_s);return function(Q){return Q.getAttribute("id")===j}},p.find.ID=function(me,j){if(typeof j.getElementById<"u"&&z){var Q=j.getElementById(me);return Q?[Q]:[]}}):(p.filter.ID=function(me){var j=me.replace($s,_s);return function(Q){var Z=typeof Q.getAttributeNode<"u"&&Q.getAttributeNode("id");return Z&&Z.value===j}},p.find.ID=function(me,j){if(typeof j.getElementById<"u"&&z){var Q,Z,Ee,Ie=j.getElementById(me);if(Ie){if(Q=Ie.getAttributeNode("id"),Q&&Q.value===me)return[Ie];for(Ee=j.getElementsByName(me),Z=0;Ie=Ee[Z++];)if(Q=Ie.getAttributeNode("id"),Q&&Q.value===me)return[Ie]}return[]}}),p.find.TAG=function(me,j){return typeof j.getElementsByTagName<"u"?j.getElementsByTagName(me):j.querySelectorAll(me)},p.find.CLASS=function(me,j){if(typeof j.getElementsByClassName<"u"&&z)return j.getElementsByClassName(me)},ie=[],ti(function(me){var j;q.appendChild(me).innerHTML="",me.querySelectorAll("[selected]").length||ie.push("\\["+J+"*(?:value|"+bs+")"),me.querySelectorAll("[id~="+xe+"-]").length||ie.push("~="),me.querySelectorAll("a#"+xe+"+*").length||ie.push(".#.+[+~]"),me.querySelectorAll(":checked").length||ie.push(":checked"),j=M.createElement("input"),j.setAttribute("type","hidden"),me.appendChild(j).setAttribute("name","D"),q.appendChild(me).disabled=!0,me.querySelectorAll(":disabled").length!==2&&ie.push(":enabled",":disabled"),j=M.createElement("input"),j.setAttribute("name",""),me.appendChild(j),me.querySelectorAll("[name='']").length||ie.push("\\["+J+"*name"+J+"*="+J+`*(?:''|"")`)}),E.cssHas||ie.push(":has"),ie=ie.length&&new RegExp(ie.join("|")),kn=function(me,j){if(me===j)return O=!0,0;var Q=!me.compareDocumentPosition-!j.compareDocumentPosition;return Q||(Q=(me.ownerDocument||me)==(j.ownerDocument||j)?me.compareDocumentPosition(j):1,Q&1||!E.sortDetached&&j.compareDocumentPosition(me)===Q?me===M||me.ownerDocument==Se&&ln.contains(Se,me)?-1:j===M||j.ownerDocument==Se&&ln.contains(Se,j)?1:x?d.call(x,me)-d.call(x,j):0:Q&4?-1:1)}),M}ln.matches=function(W,ne){return ln(W,null,null,ne)},ln.matchesSelector=function(W,ne){if(so(W),z&&!qn[ne+" "]&&(!ie||!ie.test(ne)))try{var de=ve.call(W,ne);if(de||E.disconnectedMatch||W.document&&W.document.nodeType!==11)return de}catch{qn(ne,!0)}return ln(ne,M,null,[W]).length>0},ln.contains=function(W,ne){return(W.ownerDocument||W)!=M&&so(W),m.contains(W,ne)},ln.attr=function(W,ne){(W.ownerDocument||W)!=M&&so(W);var de=p.attrHandle[ne.toLowerCase()],me=de&&g.call(p.attrHandle,ne.toLowerCase())?de(W,ne,!z):void 0;return me!==void 0?me:W.getAttribute(ne)},ln.error=function(W){throw new Error("Syntax error, unrecognized expression: "+W)},m.uniqueSort=function(W){var ne,de=[],me=0,j=0;if(O=!E.sortStable,x=!E.sortStable&&a.call(W,0),re.call(W,kn),O){for(;ne=W[j++];)ne===W[j]&&(me=de.push(j));for(;me--;)ce.call(W,de[me],1)}return x=null,W},m.fn.uniqueSort=function(){return this.pushStack(m.uniqueSort(a.apply(this)))},p=m.expr={cacheLength:50,createPseudo:rs,match:Ur,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(W){return W[1]=W[1].replace($s,_s),W[3]=(W[3]||W[4]||W[5]||"").replace($s,_s),W[2]==="~="&&(W[3]=" "+W[3]+" "),W.slice(0,4)},CHILD:function(W){return W[1]=W[1].toLowerCase(),W[1].slice(0,3)==="nth"?(W[3]||ln.error(W[0]),W[4]=+(W[4]?W[5]+(W[6]||1):2*(W[3]==="even"||W[3]==="odd")),W[5]=+(W[7]+W[8]||W[3]==="odd")):W[3]&&ln.error(W[0]),W},PSEUDO:function(W){var ne,de=!W[6]&&W[2];return Ur.CHILD.test(W[0])?null:(W[3]?W[2]=W[4]||W[5]||"":de&&ns.test(de)&&(ne=ni(de,!0))&&(ne=de.indexOf(")",de.length-ne)-de.length)&&(W[0]=W[0].slice(0,ne),W[2]=de.slice(0,ne)),W.slice(0,3))}},filter:{TAG:function(W){var ne=W.replace($s,_s).toLowerCase();return W==="*"?function(){return!0}:function(de){return F(de,ne)}},CLASS:function(W){var ne=Ke[W+" "];return ne||(ne=new RegExp("(^|"+J+")"+W+"("+J+"|$)"))&&Ke(W,function(de){return ne.test(typeof de.className=="string"&&de.className||typeof de.getAttribute<"u"&&de.getAttribute("class")||"")})},ATTR:function(W,ne,de){return function(me){var j=ln.attr(me,W);return j==null?ne==="!=":ne?(j+="",ne==="="?j===de:ne==="!="?j!==de:ne==="^="?de&&j.indexOf(de)===0:ne==="*="?de&&j.indexOf(de)>-1:ne==="$="?de&&j.slice(-de.length)===de:ne==="~="?(" "+j.replace(Ht," ")+" ").indexOf(de)>-1:ne==="|="?j===de||j.slice(0,de.length+1)===de+"-":!1):!0}},CHILD:function(W,ne,de,me,j){var Q=W.slice(0,3)!=="nth",Z=W.slice(-4)!=="last",Ee=ne==="of-type";return me===1&&j===0?function(Ie){return!!Ie.parentNode}:function(Ie,ze,Ye){var We,Pt,ot,Ft,Jn,ar=Q!==Z?"nextSibling":"previousSibling",Zn=Ie.parentNode,Ar=Ee&&Ie.nodeName.toLowerCase(),Fs=!Ye&&!Ee,xt=!1;if(Zn){if(Q){for(;ar;){for(ot=Ie;ot=ot[ar];)if(Ee?F(ot,Ar):ot.nodeType===1)return!1;Jn=ar=W==="only"&&!Jn&&"nextSibling"}return!0}if(Jn=[Z?Zn.firstChild:Zn.lastChild],Z&&Fs){for(Pt=Zn[xe]||(Zn[xe]={}),We=Pt[W]||[],Ft=We[0]===he&&We[1],xt=Ft&&We[2],ot=Ft&&Zn.childNodes[Ft];ot=++Ft&&ot&&ot[ar]||(xt=Ft=0)||Jn.pop();)if(ot.nodeType===1&&++xt&&ot===Ie){Pt[W]=[he,Ft,xt];break}}else if(Fs&&(Pt=Ie[xe]||(Ie[xe]={}),We=Pt[W]||[],Ft=We[0]===he&&We[1],xt=Ft),xt===!1)for(;(ot=++Ft&&ot&&ot[ar]||(xt=Ft=0)||Jn.pop())&&!((Ee?F(ot,Ar):ot.nodeType===1)&&++xt&&(Fs&&(Pt=ot[xe]||(ot[xe]={}),Pt[W]=[he,xt]),ot===Ie)););return xt-=j,xt===me||xt%me===0&&xt/me>=0}}},PSEUDO:function(W,ne){var de,me=p.pseudos[W]||p.setFilters[W.toLowerCase()]||ln.error("unsupported pseudo: "+W);return me[xe]?me(ne):me.length>1?(de=[W,W,"",ne],p.setFilters.hasOwnProperty(W.toLowerCase())?rs(function(j,Q){for(var Z,Ee=me(j,ne),Ie=Ee.length;Ie--;)Z=d.call(j,Ee[Ie]),j[Z]=!(Q[Z]=Ee[Ie])}):function(j){return me(j,0,de)}):me}},pseudos:{not:rs(function(W){var ne=[],de=[],me=Yl(W.replace(ye,"$1"));return me[xe]?rs(function(j,Q,Z,Ee){for(var Ie,ze=me(j,null,Ee,[]),Ye=j.length;Ye--;)(Ie=ze[Ye])&&(j[Ye]=!(Q[Ye]=Ie))}):function(j,Q,Z){return ne[0]=j,me(ne,null,Z,de),ne[0]=null,!de.pop()}}),has:rs(function(W){return function(ne){return ln(W,ne).length>0}}),contains:rs(function(W){return W=W.replace($s,_s),function(ne){return(ne.textContent||m.text(ne)).indexOf(W)>-1}}),lang:rs(function(W){return xo.test(W||"")||ln.error("unsupported lang: "+W),W=W.replace($s,_s).toLowerCase(),function(ne){var de;do if(de=z?ne.lang:ne.getAttribute("xml:lang")||ne.getAttribute("lang"))return de=de.toLowerCase(),de===W||de.indexOf(W+"-")===0;while((ne=ne.parentNode)&&ne.nodeType===1);return!1}}),target:function(W){var ne=t.location&&t.location.hash;return ne&&ne.slice(1)===W.id},root:function(W){return W===q},focus:function(W){return W===Vi()&&M.hasFocus()&&!!(W.type||W.href||~W.tabIndex)},enabled:Wu(!1),disabled:Wu(!0),checked:function(W){return F(W,"input")&&!!W.checked||F(W,"option")&&!!W.selected},selected:function(W){return W.parentNode&&W.parentNode.selectedIndex,W.selected===!0},empty:function(W){for(W=W.firstChild;W;W=W.nextSibling)if(W.nodeType<6)return!1;return!0},parent:function(W){return!p.pseudos.empty(W)},header:function(W){return ro.test(W.nodeName)},input:function(W){return Ms.test(W.nodeName)},button:function(W){return F(W,"input")&&W.type==="button"||F(W,"button")},text:function(W){var ne;return F(W,"input")&&W.type==="text"&&((ne=W.getAttribute("type"))==null||ne.toLowerCase()==="text")},first:Hr(function(){return[0]}),last:Hr(function(W,ne){return[ne-1]}),eq:Hr(function(W,ne,de){return[de<0?de+ne:de]}),even:Hr(function(W,ne){for(var de=0;dene?me=ne:me=de;--me>=0;)W.push(me);return W}),gt:Hr(function(W,ne,de){for(var me=de<0?de+ne:de;++me1?function(ne,de,me){for(var j=W.length;j--;)if(!W[j](ne,de,me))return!1;return!0}:W[0]}function Xh(W,ne,de){for(var me=0,j=ne.length;me-1&&(Z[Ye]=!(Ee[Ye]=Pt))}}else ot=Ua(ot===Ee?ot.splice(ar,ot.length):ot),j?j(null,Ee,ot,ze):k.apply(Ee,ot)})}function Or(W){for(var ne,de,me,j=W.length,Q=p.relative[W[0].type],Z=Q||p.relative[" "],Ee=Q?1:0,Ie=Eo(function(We){return We===ne},Z,!0),ze=Eo(function(We){return d.call(ne,We)>-1},Z,!0),Ye=[function(We,Pt,ot){var Ft=!Q&&(ot||Pt!=b)||((ne=Pt).nodeType?Ie(We,Pt,ot):ze(We,Pt,ot));return ne=null,Ft}];Ee1&&zl(Ye),Ee>1&&ss(W.slice(0,Ee-1).concat({value:W[Ee-2].type===" "?"*":""})).replace(ye,"$1"),de,Ee0,me=W.length>0,j=function(Q,Z,Ee,Ie,ze){var Ye,We,Pt,ot=0,Ft="0",Jn=Q&&[],ar=[],Zn=b,Ar=Q||me&&p.find.TAG("*",ze),Fs=he+=Zn==null?1:Math.random()||.1,xt=Ar.length;for(ze&&(b=Z==M||Z||ze);Ft!==xt&&(Ye=Ar[Ft])!=null;Ft++){if(me&&Ye){for(We=0,!Z&&Ye.ownerDocument!=M&&(so(Ye),Ee=!z);Pt=W[We++];)if(Pt(Ye,Z||M,Ee)){k.call(Ie,Ye);break}ze&&(he=Fs)}de&&((Ye=!Pt&&Ye)&&ot--,Q&&Jn.push(Ye))}if(ot+=Ft,de&&Ft!==ot){for(We=0;Pt=ne[We++];)Pt(Jn,ar,Z,Ee);if(Q){if(ot>0)for(;Ft--;)Jn[Ft]||ar[Ft]||(ar[Ft]=V.call(Ie));ar=Ua(ar)}k.apply(Ie,ar),ze&&!Q&&ar.length>0&&ot+ne.length>1&&m.uniqueSort(Ie)}return ze&&(he=Fs,b=Zn),Jn};return de?rs(j):j}function Yl(W,ne){var de,me=[],j=[],Q=St[W+" "];if(!Q){for(ne||(ne=ni(W)),de=ne.length;de--;)Q=Or(ne[de]),Q[xe]?me.push(Q):j.push(Q);Q=St(W,Gu(j,me)),Q.selector=W}return Q}function Ku(W,ne,de,me){var j,Q,Z,Ee,Ie,ze=typeof W=="function"&&W,Ye=!me&&ni(W=ze.selector||W);if(de=de||[],Ye.length===1){if(Q=Ye[0]=Ye[0].slice(0),Q.length>2&&(Z=Q[0]).type==="ID"&&ne.nodeType===9&&z&&p.relative[Q[1].type]){if(ne=(p.find.ID(Z.matches[0].replace($s,_s),ne)||[])[0],ne)ze&&(ne=ne.parentNode);else return de;W=W.slice(Q.shift().value.length)}for(j=Ur.needsContext.test(W)?0:Q.length;j--&&(Z=Q[j],!p.relative[Ee=Z.type]);)if((Ie=p.find[Ee])&&(me=Ie(Z.matches[0].replace($s,_s),ji.test(Q[0].type)&&Kl(ne.parentNode)||ne))){if(Q.splice(j,1),W=me.length&&ss(Q),!W)return k.apply(de,me),de;break}}return(ze||Yl(W,Ye))(me,ne,!z,de,!ne||ji.test(W)&&Kl(ne.parentNode)||ne),de}E.sortStable=xe.split("").sort(kn).join("")===xe,so(),E.sortDetached=ti(function(W){return W.compareDocumentPosition(M.createElement("fieldset"))&1}),m.find=ln,m.expr[":"]=m.expr.pseudos,m.unique=m.uniqueSort,ln.compile=Yl,ln.select=Ku,ln.setDocument=so,ln.tokenize=ni,ln.escape=m.escapeSelector,ln.getText=m.text,ln.isXML=m.isXMLDoc,ln.selectors=m.expr,ln.support=m.support,ln.uniqueSort=m.uniqueSort})();var Qe=function(u,p,b){for(var x=[],O=b!==void 0;(u=u[p])&&u.nodeType!==9;)if(u.nodeType===1){if(O&&m(u).is(b))break;x.push(u)}return x},ht=function(u,p){for(var b=[];u;u=u.nextSibling)u.nodeType===1&&u!==p&&b.push(u);return b},at=m.expr.match.needsContext,vt=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function Xt(u,p,b){return T(p)?m.grep(u,function(x,O){return!!p.call(x,O,x)!==b}):p.nodeType?m.grep(u,function(x){return x===p!==b}):typeof p!="string"?m.grep(u,function(x){return d.call(p,x)>-1!==b}):m.filter(p,u,b)}m.filter=function(u,p,b){var x=p[0];return b&&(u=":not("+u+")"),p.length===1&&x.nodeType===1?m.find.matchesSelector(x,u)?[x]:[]:m.find.matches(u,m.grep(p,function(O){return O.nodeType===1}))},m.fn.extend({find:function(u){var p,b,x=this.length,O=this;if(typeof u!="string")return this.pushStack(m(u).filter(function(){for(p=0;p1?m.uniqueSort(b):b},filter:function(u){return this.pushStack(Xt(this,u||[],!1))},not:function(u){return this.pushStack(Xt(this,u||[],!0))},is:function(u){return!!Xt(this,typeof u=="string"&&at.test(u)?m(u):u||[],!1).length}});var tn,$t=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,yt=m.fn.init=function(u,p,b){var x,O;if(!u)return this;if(b=b||tn,typeof u=="string")if(u[0]==="<"&&u[u.length-1]===">"&&u.length>=3?x=[null,u,null]:x=$t.exec(u),x&&(x[1]||!p))if(x[1]){if(p=p instanceof m?p[0]:p,m.merge(this,m.parseHTML(x[1],p&&p.nodeType?p.ownerDocument||p:I,!0)),vt.test(x[1])&&m.isPlainObject(p))for(x in p)T(this[x])?this[x](p[x]):this.attr(x,p[x]);return this}else return O=I.getElementById(x[2]),O&&(this[0]=O,this.length=1),this;else return!p||p.jquery?(p||b).find(u):this.constructor(p).find(u);else{if(u.nodeType)return this[0]=u,this.length=1,this;if(T(u))return b.ready!==void 0?b.ready(u):u(m)}return m.makeArray(u,this)};yt.prototype=m.fn,tn=m(I);var Lt=/^(?:parents|prev(?:Until|All))/,Qt={children:!0,contents:!0,next:!0,prev:!0};m.fn.extend({has:function(u){var p=m(u,this),b=p.length;return this.filter(function(){for(var x=0;x-1:b.nodeType===1&&m.find.matchesSelector(b,u))){k.push(b);break}}return this.pushStack(k.length>1?m.uniqueSort(k):k)},index:function(u){return u?typeof u=="string"?d.call(m(u),this[0]):d.call(this,u.jquery?u[0]:u):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(u,p){return this.pushStack(m.uniqueSort(m.merge(this.get(),m(u,p))))},addBack:function(u){return this.add(u==null?this.prevObject:this.prevObject.filter(u))}});function Kt(u,p){for(;(u=u[p])&&u.nodeType!==1;);return u}m.each({parent:function(u){var p=u.parentNode;return p&&p.nodeType!==11?p:null},parents:function(u){return Qe(u,"parentNode")},parentsUntil:function(u,p,b){return Qe(u,"parentNode",b)},next:function(u){return Kt(u,"nextSibling")},prev:function(u){return Kt(u,"previousSibling")},nextAll:function(u){return Qe(u,"nextSibling")},prevAll:function(u){return Qe(u,"previousSibling")},nextUntil:function(u,p,b){return Qe(u,"nextSibling",b)},prevUntil:function(u,p,b){return Qe(u,"previousSibling",b)},siblings:function(u){return ht((u.parentNode||{}).firstChild,u)},children:function(u){return ht(u.firstChild)},contents:function(u){return u.contentDocument!=null&&i(u.contentDocument)?u.contentDocument:(F(u,"template")&&(u=u.content||u),m.merge([],u.childNodes))}},function(u,p){m.fn[u]=function(b,x){var O=m.map(this,p,b);return u.slice(-5)!=="Until"&&(x=b),x&&typeof x=="string"&&(O=m.filter(x,O)),this.length>1&&(Qt[u]||m.uniqueSort(O),Lt.test(u)&&O.reverse()),this.pushStack(O)}});var Rt=/[^\x20\t\r\n\f]+/g;function yn(u){var p={};return m.each(u.match(Rt)||[],function(b,x){p[x]=!0}),p}m.Callbacks=function(u){u=typeof u=="string"?yn(u):m.extend({},u);var p,b,x,O,k=[],M=[],q=-1,z=function(){for(O=O||u.once,x=p=!0;M.length;q=-1)for(b=M.shift();++q-1;)k.splice(he,1),he<=q&&q--}),this},has:function(ve){return ve?m.inArray(ve,k)>-1:k.length>0},empty:function(){return k&&(k=[]),this},disable:function(){return O=M=[],k=b="",this},disabled:function(){return!k},lock:function(){return O=M=[],!b&&!p&&(k=b=""),this},locked:function(){return!!O},fireWith:function(ve,xe){return O||(xe=xe||[],xe=[ve,xe.slice?xe.slice():xe],M.push(xe),p||z()),this},fire:function(){return ie.fireWith(this,arguments),this},fired:function(){return!!x}};return ie};function an(u){return u}function A(u){throw u}function C(u,p,b,x){var O;try{u&&T(O=u.promise)?O.call(u).done(p).fail(b):u&&T(O=u.then)?O.call(u,p,b):p.apply(void 0,[u].slice(x))}catch(k){b.apply(void 0,[k])}}m.extend({Deferred:function(u){var p=[["notify","progress",m.Callbacks("memory"),m.Callbacks("memory"),2],["resolve","done",m.Callbacks("once memory"),m.Callbacks("once memory"),0,"resolved"],["reject","fail",m.Callbacks("once memory"),m.Callbacks("once memory"),1,"rejected"]],b="pending",x={state:function(){return b},always:function(){return O.done(arguments).fail(arguments),this},catch:function(k){return x.then(null,k)},pipe:function(){var k=arguments;return m.Deferred(function(M){m.each(p,function(q,z){var ie=T(k[z[4]])&&k[z[4]];O[z[1]](function(){var ve=ie&&ie.apply(this,arguments);ve&&T(ve.promise)?ve.promise().progress(M.notify).done(M.resolve).fail(M.reject):M[z[0]+"With"](this,ie?[ve]:arguments)})}),k=null}).promise()},then:function(k,M,q){var z=0;function ie(ve,xe,he,De){return function(){var Ke=this,Tt=arguments,St=function(){var kn,bs;if(!(ve=z&&(he!==A&&(Ke=void 0,Tt=[kn]),xe.rejectWith(Ke,Tt))}};ve?qn():(m.Deferred.getErrorHook?qn.error=m.Deferred.getErrorHook():m.Deferred.getStackHook&&(qn.error=m.Deferred.getStackHook()),t.setTimeout(qn))}}return m.Deferred(function(ve){p[0][3].add(ie(0,ve,T(q)?q:an,ve.notifyWith)),p[1][3].add(ie(0,ve,T(k)?k:an)),p[2][3].add(ie(0,ve,T(M)?M:A))}).promise()},promise:function(k){return k!=null?m.extend(k,x):x}},O={};return m.each(p,function(k,M){var q=M[2],z=M[5];x[M[1]]=q.add,z&&q.add(function(){b=z},p[3-k][2].disable,p[3-k][3].disable,p[0][2].lock,p[0][3].lock),q.add(M[3].fire),O[M[0]]=function(){return O[M[0]+"With"](this===O?void 0:this,arguments),this},O[M[0]+"With"]=q.fireWith}),x.promise(O),u&&u.call(O,O),O},when:function(u){var p=arguments.length,b=p,x=Array(b),O=a.call(arguments),k=m.Deferred(),M=function(q){return function(z){x[q]=this,O[q]=arguments.length>1?a.call(arguments):z,--p||k.resolveWith(x,O)}};if(p<=1&&(C(u,k.done(M(b)).resolve,k.reject,!p),k.state()==="pending"||T(O[b]&&O[b].then)))return k.then();for(;b--;)C(O[b],M(b),k.reject);return k.promise()}});var G=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;m.Deferred.exceptionHook=function(u,p){t.console&&t.console.warn&&u&&G.test(u.name)&&t.console.warn("jQuery.Deferred exception: "+u.message,u.stack,p)},m.readyException=function(u){t.setTimeout(function(){throw u})};var oe=m.Deferred();m.fn.ready=function(u){return oe.then(u).catch(function(p){m.readyException(p)}),this},m.extend({isReady:!1,readyWait:1,ready:function(u){(u===!0?--m.readyWait:m.isReady)||(m.isReady=!0,!(u!==!0&&--m.readyWait>0)&&oe.resolveWith(I,[m]))}}),m.ready.then=oe.then;function te(){I.removeEventListener("DOMContentLoaded",te),t.removeEventListener("load",te),m.ready()}I.readyState==="complete"||I.readyState!=="loading"&&!I.documentElement.doScroll?t.setTimeout(m.ready):(I.addEventListener("DOMContentLoaded",te),t.addEventListener("load",te));var be=function(u,p,b,x,O,k,M){var q=0,z=u.length,ie=b==null;if(R(b)==="object"){O=!0;for(q in b)be(u,p,q,b[q],!0,k,M)}else if(x!==void 0&&(O=!0,T(x)||(M=!0),ie&&(M?(p.call(u,x),p=null):(ie=p,p=function(ve,xe,he){return ie.call(m(ve),he)})),p))for(;q1,null,!0)},removeData:function(u){return this.each(function(){ge.remove(this,u)})}}),m.extend({queue:function(u,p,b){var x;if(u)return p=(p||"fx")+"queue",x=X.get(u,p),b&&(!x||Array.isArray(b)?x=X.access(u,p,m.makeArray(b)):x.push(b)),x||[]},dequeue:function(u,p){p=p||"fx";var b=m.queue(u,p),x=b.length,O=b.shift(),k=m._queueHooks(u,p),M=function(){m.dequeue(u,p)};O==="inprogress"&&(O=b.shift(),x--),O&&(p==="fx"&&b.unshift("inprogress"),delete k.stop,O.call(u,M,k)),!x&&k&&k.empty.fire()},_queueHooks:function(u,p){var b=p+"queueHooks";return X.get(u,b)||X.access(u,b,{empty:m.Callbacks("once memory").add(function(){X.remove(u,[p+"queue",b])})})}}),m.fn.extend({queue:function(u,p){var b=2;return typeof u!="string"&&(p=u,u="fx",b--),arguments.length\x20\t\r\n\f]*)/i,Yo=/^$|^module$|\/(?:java|ecma)script/i;(function(){var u=I.createDocumentFragment(),p=u.appendChild(I.createElement("div")),b=I.createElement("input");b.setAttribute("type","radio"),b.setAttribute("checked","checked"),b.setAttribute("name","t"),p.appendChild(b),E.checkClone=p.cloneNode(!0).cloneNode(!0).lastChild.checked,p.innerHTML="",E.noCloneChecked=!!p.cloneNode(!0).lastChild.defaultValue,p.innerHTML="",E.option=!!p.lastChild})();var yr={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};yr.tbody=yr.tfoot=yr.colgroup=yr.caption=yr.thead,yr.th=yr.td,E.option||(yr.optgroup=yr.option=[1,""]);function Hn(u,p){var b;return typeof u.getElementsByTagName<"u"?b=u.getElementsByTagName(p||"*"):typeof u.querySelectorAll<"u"?b=u.querySelectorAll(p||"*"):b=[],p===void 0||p&&F(u,p)?m.merge([u],b):b}function ka(u,p){for(var b=0,x=u.length;b-1){O&&O.push(k);continue}if(ie=nt(k),M=Hn(xe.appendChild(k),"script"),ie&&ka(M),b)for(ve=0;k=M[ve++];)Yo.test(k.type||"")&&b.push(k)}return xe}var xu=/^([^.]*)(?:\.(.+)|)/;function Qs(){return!0}function Xo(){return!1}function Fi(u,p,b,x,O,k){var M,q;if(typeof p=="object"){typeof b!="string"&&(x=x||b,b=void 0);for(q in p)Fi(u,q,b,x,p[q],k);return u}if(x==null&&O==null?(O=b,x=b=void 0):O==null&&(typeof b=="string"?(O=x,x=void 0):(O=x,x=b,b=void 0)),O===!1)O=Xo;else if(!O)return u;return k===1&&(M=O,O=function(z){return m().off(z),M.apply(this,arguments)},O.guid=M.guid||(M.guid=m.guid++)),u.each(function(){m.event.add(this,p,O,x,b)})}m.event={global:{},add:function(u,p,b,x,O){var k,M,q,z,ie,ve,xe,he,De,Ke,Tt,St=X.get(u);if(Fe(u))for(b.handler&&(k=b,b=k.handler,O=k.selector),O&&m.find.matchesSelector(Je,O),b.guid||(b.guid=m.guid++),(z=St.events)||(z=St.events=Object.create(null)),(M=St.handle)||(M=St.handle=function(qn){return typeof m<"u"&&m.event.triggered!==qn.type?m.event.dispatch.apply(u,arguments):void 0}),p=(p||"").match(Rt)||[""],ie=p.length;ie--;)q=xu.exec(p[ie])||[],De=Tt=q[1],Ke=(q[2]||"").split(".").sort(),De&&(xe=m.event.special[De]||{},De=(O?xe.delegateType:xe.bindType)||De,xe=m.event.special[De]||{},ve=m.extend({type:De,origType:Tt,data:x,handler:b,guid:b.guid,selector:O,needsContext:O&&m.expr.match.needsContext.test(O),namespace:Ke.join(".")},k),(he=z[De])||(he=z[De]=[],he.delegateCount=0,(!xe.setup||xe.setup.call(u,x,Ke,M)===!1)&&u.addEventListener&&u.addEventListener(De,M)),xe.add&&(xe.add.call(u,ve),ve.handler.guid||(ve.handler.guid=b.guid)),O?he.splice(he.delegateCount++,0,ve):he.push(ve),m.event.global[De]=!0)},remove:function(u,p,b,x,O){var k,M,q,z,ie,ve,xe,he,De,Ke,Tt,St=X.hasData(u)&&X.get(u);if(!(!St||!(z=St.events))){for(p=(p||"").match(Rt)||[""],ie=p.length;ie--;){if(q=xu.exec(p[ie])||[],De=Tt=q[1],Ke=(q[2]||"").split(".").sort(),!De){for(De in z)m.event.remove(u,De+p[ie],b,x,!0);continue}for(xe=m.event.special[De]||{},De=(x?xe.delegateType:xe.bindType)||De,he=z[De]||[],q=q[2]&&new RegExp("(^|\\.)"+Ke.join("\\.(?:.*\\.|)")+"(\\.|$)"),M=k=he.length;k--;)ve=he[k],(O||Tt===ve.origType)&&(!b||b.guid===ve.guid)&&(!q||q.test(ve.namespace))&&(!x||x===ve.selector||x==="**"&&ve.selector)&&(he.splice(k,1),ve.selector&&he.delegateCount--,xe.remove&&xe.remove.call(u,ve));M&&!he.length&&((!xe.teardown||xe.teardown.call(u,Ke,St.handle)===!1)&&m.removeEvent(u,De,St.handle),delete z[De])}m.isEmptyObject(z)&&X.remove(u,"handle events")}},dispatch:function(u){var p,b,x,O,k,M,q=new Array(arguments.length),z=m.event.fix(u),ie=(X.get(this,"events")||Object.create(null))[z.type]||[],ve=m.event.special[z.type]||{};for(q[0]=z,p=1;p=1)){for(;ie!==this;ie=ie.parentNode||this)if(ie.nodeType===1&&!(u.type==="click"&&ie.disabled===!0)){for(k=[],M={},b=0;b-1:m.find(O,this,null,[ie]).length),M[O]&&k.push(x);k.length&&q.push({elem:ie,handlers:k})}}return ie=this,z\s*$/g;function Eu(u,p){return F(u,"table")&&F(p.nodeType!==11?p:p.firstChild,"tr")&&m(u).children("tbody")[0]||u}function Nh(u){return u.type=(u.getAttribute("type")!==null)+"/"+u.type,u}function Lh(u){return(u.type||"").slice(0,5)==="true/"?u.type=u.type.slice(5):u.removeAttribute("type"),u}function Su(u,p){var b,x,O,k,M,q,z;if(p.nodeType===1){if(X.hasData(u)&&(k=X.get(u),z=k.events,z)){X.remove(p,"handle events");for(O in z)for(b=0,x=z[O].length;b1&&typeof De=="string"&&!E.checkClone&&kh.test(De))return u.each(function(Tt){var St=u.eq(Tt);Ke&&(p[0]=De.call(this,Tt,St.html())),qo(St,p,b,x)});if(xe&&(O=_u(p,u[0].ownerDocument,!1,u,x),k=O.firstChild,O.childNodes.length===1&&(O=k),k||x)){for(M=m.map(Hn(O,"script"),Nh),q=M.length;ve0&&ka(M,!z&&Hn(u,"script")),q},cleanData:function(u){for(var p,b,x,O=m.event.special,k=0;(b=u[k])!==void 0;k++)if(Fe(b)){if(p=b[X.expando]){if(p.events)for(x in p.events)O[x]?m.event.remove(b,x):m.removeEvent(b,x,p.handle);b[X.expando]=void 0}b[ge.expando]&&(b[ge.expando]=void 0)}}}),m.fn.extend({detach:function(u){return Tu(this,u,!0)},remove:function(u){return Tu(this,u)},text:function(u){return be(this,function(p){return p===void 0?m.text(this):this.empty().each(function(){(this.nodeType===1||this.nodeType===11||this.nodeType===9)&&(this.textContent=p)})},null,u,arguments.length)},append:function(){return qo(this,arguments,function(u){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var p=Eu(this,u);p.appendChild(u)}})},prepend:function(){return qo(this,arguments,function(u){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var p=Eu(this,u);p.insertBefore(u,p.firstChild)}})},before:function(){return qo(this,arguments,function(u){this.parentNode&&this.parentNode.insertBefore(u,this)})},after:function(){return qo(this,arguments,function(u){this.parentNode&&this.parentNode.insertBefore(u,this.nextSibling)})},empty:function(){for(var u,p=0;(u=this[p])!=null;p++)u.nodeType===1&&(m.cleanData(Hn(u,!1)),u.textContent="");return this},clone:function(u,p){return u=u??!1,p=p??u,this.map(function(){return m.clone(this,u,p)})},html:function(u){return be(this,function(p){var b=this[0]||{},x=0,O=this.length;if(p===void 0&&b.nodeType===1)return b.innerHTML;if(typeof p=="string"&&!Ah.test(p)&&!yr[(Xn.exec(p)||["",""])[1].toLowerCase()]){p=m.htmlPrefilter(p);try{for(;x=0&&(z+=Math.max(0,Math.ceil(u["offset"+p[0].toUpperCase()+p.slice(1)]-k-z-q-.5))||0),z+ie}function Pl(u,p,b){var x=Na(u),O=!E.boxSizingReliable()||b,k=O&&m.css(u,"boxSizing",!1,x)==="border-box",M=k,q=Bi(u,p,x),z="offset"+p[0].toUpperCase()+p.slice(1);if(Ol.test(q)){if(!b)return q;q="auto"}return(!E.boxSizingReliable()&&k||!E.reliableTrDimensions()&&F(u,"tr")||q==="auto"||!parseFloat(q)&&m.css(u,"display",!1,x)==="inline")&&u.getClientRects().length&&(k=m.css(u,"boxSizing",!1,x)==="border-box",M=z in u,M&&(q=u[z])),q=parseFloat(q)||0,q+kl(u,p,b||(k?"border":"content"),M,x,q)+"px"}m.extend({cssHooks:{opacity:{get:function(u,p){if(p){var b=Bi(u,"opacity");return b===""?"1":b}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(u,p,b,x){if(!(!u||u.nodeType===3||u.nodeType===8||!u.style)){var O,k,M,q=Te(p),z=Al.test(p),ie=u.style;if(z||(p=Ra(q)),M=m.cssHooks[p]||m.cssHooks[q],b!==void 0){if(k=typeof b,k==="string"&&(O=Pe.exec(b))&&O[1]&&(b=rt(u,p,O),k="number"),b==null||b!==b)return;k==="number"&&!z&&(b+=O&&O[3]||(m.cssNumber[q]?"":"px")),!E.clearCloneStyle&&b===""&&p.indexOf("background")===0&&(ie[p]="inherit"),(!M||!("set"in M)||(b=M.set(u,b,x))!==void 0)&&(z?ie.setProperty(p,b):ie[p]=b)}else return M&&"get"in M&&(O=M.get(u,!1,x))!==void 0?O:ie[p]}},css:function(u,p,b,x){var O,k,M,q=Te(p),z=Al.test(p);return z||(p=Ra(q)),M=m.cssHooks[p]||m.cssHooks[q],M&&"get"in M&&(O=M.get(u,!0,b)),O===void 0&&(O=Bi(u,p,x)),O==="normal"&&p in Nu&&(O=Nu[p]),b===""||b?(k=parseFloat(O),b===!0||isFinite(k)?k||0:O):O}}),m.each(["height","width"],function(u,p){m.cssHooks[p]={get:function(b,x,O){if(x)return Pu.test(m.css(b,"display"))&&(!b.getClientRects().length||!b.getBoundingClientRect().width)?Cu(b,Rh,function(){return Pl(b,p,O)}):Pl(b,p,O)},set:function(b,x,O){var k,M=Na(b),q=!E.scrollboxSize()&&M.position==="absolute",z=q||O,ie=z&&m.css(b,"boxSizing",!1,M)==="border-box",ve=O?kl(b,p,O,ie,M):0;return ie&&q&&(ve-=Math.ceil(b["offset"+p[0].toUpperCase()+p.slice(1)]-parseFloat(M[p])-kl(b,p,"border",!1,M)-.5)),ve&&(k=Pe.exec(x))&&(k[3]||"px")!=="px"&&(b.style[p]=x,x=m.css(b,p)),Lu(b,x,ve)}}}),m.cssHooks.marginLeft=Ui(E.reliableMarginLeft,function(u,p){if(p)return(parseFloat(Bi(u,"marginLeft"))||u.getBoundingClientRect().left-Cu(u,{marginLeft:0},function(){return u.getBoundingClientRect().left}))+"px"}),m.each({margin:"",padding:"",border:"Width"},function(u,p){m.cssHooks[u+p]={expand:function(b){for(var x=0,O={},k=typeof b=="string"?b.split(" "):[b];x<4;x++)O[u+He[x]+p]=k[x]||k[x-2]||k[0];return O}},u!=="margin"&&(m.cssHooks[u+p].set=Lu)}),m.fn.extend({css:function(u,p){return be(this,function(b,x,O){var k,M,q={},z=0;if(Array.isArray(x)){for(k=Na(b),M=x.length;z1)}});function ur(u,p,b,x,O){return new ur.prototype.init(u,p,b,x,O)}m.Tween=ur,ur.prototype={constructor:ur,init:function(u,p,b,x,O,k){this.elem=u,this.prop=b,this.easing=O||m.easing._default,this.options=p,this.start=this.now=this.cur(),this.end=x,this.unit=k||(m.cssNumber[b]?"":"px")},cur:function(){var u=ur.propHooks[this.prop];return u&&u.get?u.get(this):ur.propHooks._default.get(this)},run:function(u){var p,b=ur.propHooks[this.prop];return this.options.duration?this.pos=p=m.easing[this.easing](u,this.options.duration*u,0,1,this.options.duration):this.pos=p=u,this.now=(this.end-this.start)*p+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),b&&b.set?b.set(this):ur.propHooks._default.set(this),this}},ur.prototype.init.prototype=ur.prototype,ur.propHooks={_default:{get:function(u){var p;return u.elem.nodeType!==1||u.elem[u.prop]!=null&&u.elem.style[u.prop]==null?u.elem[u.prop]:(p=m.css(u.elem,u.prop,""),!p||p==="auto"?0:p)},set:function(u){m.fx.step[u.prop]?m.fx.step[u.prop](u):u.elem.nodeType===1&&(m.cssHooks[u.prop]||u.elem.style[Ra(u.prop)]!=null)?m.style(u.elem,u.prop,u.now+u.unit):u.elem[u.prop]=u.now}}},ur.propHooks.scrollTop=ur.propHooks.scrollLeft={set:function(u){u.elem.nodeType&&u.elem.parentNode&&(u.elem[u.prop]=u.now)}},m.easing={linear:function(u){return u},swing:function(u){return .5-Math.cos(u*Math.PI)/2},_default:"swing"},m.fx=ur.prototype.init,m.fx.step={};var vo,Jo,Dh=/^(?:toggle|show|hide)$/,Ru=/queueHooks$/;function Zo(){Jo&&(I.hidden===!1&&t.requestAnimationFrame?t.requestAnimationFrame(Zo):t.setTimeout(Zo,m.fx.interval),m.fx.tick())}function Nl(){return t.setTimeout(function(){vo=void 0}),vo=Date.now()}function Da(u,p){var b,x=0,O={height:u};for(p=p?1:0;x<4;x+=2-p)b=He[x],O["margin"+b]=O["padding"+b]=u;return p&&(O.opacity=O.width=u),O}function Ll(u,p,b){for(var x,O=(ts.tweeners[p]||[]).concat(ts.tweeners["*"]),k=0,M=O.length;k1)},removeAttr:function(u){return this.each(function(){m.removeAttr(this,u)})}}),m.extend({attr:function(u,p,b){var x,O,k=u.nodeType;if(!(k===3||k===8||k===2)){if(typeof u.getAttribute>"u")return m.prop(u,p,b);if((k!==1||!m.isXMLDoc(u))&&(O=m.attrHooks[p.toLowerCase()]||(m.expr.match.bool.test(p)?Dl:void 0)),b!==void 0){if(b===null){m.removeAttr(u,p);return}return O&&"set"in O&&(x=O.set(u,b,p))!==void 0?x:(u.setAttribute(p,b+""),b)}return O&&"get"in O&&(x=O.get(u,p))!==null?x:(x=m.find.attr(u,p),x??void 0)}},attrHooks:{type:{set:function(u,p){if(!E.radioValue&&p==="radio"&&F(u,"input")){var b=u.value;return u.setAttribute("type",p),b&&(u.value=b),p}}}},removeAttr:function(u,p){var b,x=0,O=p&&p.match(Rt);if(O&&u.nodeType===1)for(;b=O[x++];)u.removeAttribute(b)}}),Dl={set:function(u,p,b){return p===!1?m.removeAttr(u,b):u.setAttribute(b,b),b}},m.each(m.expr.match.bool.source.match(/\w+/g),function(u,p){var b=_o[p]||m.find.attr;_o[p]=function(x,O,k){var M,q,z=O.toLowerCase();return k||(q=_o[z],_o[z]=M,M=b(x,O,k)!=null?z:null,_o[z]=q),M}});var Ml=/^(?:input|select|textarea|button)$/i,Qo=/^(?:a|area)$/i;m.fn.extend({prop:function(u,p){return be(this,m.prop,u,p,arguments.length>1)},removeProp:function(u){return this.each(function(){delete this[m.propFix[u]||u]})}}),m.extend({prop:function(u,p,b){var x,O,k=u.nodeType;if(!(k===3||k===8||k===2))return(k!==1||!m.isXMLDoc(u))&&(p=m.propFix[p]||p,O=m.propHooks[p]),b!==void 0?O&&"set"in O&&(x=O.set(u,b,p))!==void 0?x:u[p]=b:O&&"get"in O&&(x=O.get(u,p))!==null?x:u[p]},propHooks:{tabIndex:{get:function(u){var p=m.find.attr(u,"tabindex");return p?parseInt(p,10):Ml.test(u.nodeName)||Qo.test(u.nodeName)&&u.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),E.optSelected||(m.propHooks.selected={get:function(u){var p=u.parentNode;return p&&p.parentNode&&p.parentNode.selectedIndex,null},set:function(u){var p=u.parentNode;p&&(p.selectedIndex,p.parentNode&&p.parentNode.selectedIndex)}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this});function eo(u){var p=u.match(Rt)||[];return p.join(" ")}function to(u){return u.getAttribute&&u.getAttribute("class")||""}function $l(u){return Array.isArray(u)?u:typeof u=="string"?u.match(Rt)||[]:[]}m.fn.extend({addClass:function(u){var p,b,x,O,k,M;return T(u)?this.each(function(q){m(this).addClass(u.call(this,q,to(this)))}):(p=$l(u),p.length?this.each(function(){if(x=to(this),b=this.nodeType===1&&" "+eo(x)+" ",b){for(k=0;k-1;)b=b.replace(" "+O+" "," ");M=eo(b),x!==M&&this.setAttribute("class",M)}}):this):this.attr("class","")},toggleClass:function(u,p){var b,x,O,k,M=typeof u,q=M==="string"||Array.isArray(u);return T(u)?this.each(function(z){m(this).toggleClass(u.call(this,z,to(this),p),p)}):typeof p=="boolean"&&q?p?this.addClass(u):this.removeClass(u):(b=$l(u),this.each(function(){if(q)for(k=m(this),O=0;O-1)return!0;return!1}});var Mu=/\r/g;m.fn.extend({val:function(u){var p,b,x,O=this[0];return arguments.length?(x=T(u),this.each(function(k){var M;this.nodeType===1&&(x?M=u.call(this,k,m(this).val()):M=u,M==null?M="":typeof M=="number"?M+="":Array.isArray(M)&&(M=m.map(M,function(q){return q==null?"":q+""})),p=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],(!p||!("set"in p)||p.set(this,M,"value")===void 0)&&(this.value=M))})):O?(p=m.valHooks[O.type]||m.valHooks[O.nodeName.toLowerCase()],p&&"get"in p&&(b=p.get(O,"value"))!==void 0?b:(b=O.value,typeof b=="string"?b.replace(Mu,""):b??"")):void 0}}),m.extend({valHooks:{option:{get:function(u){var p=m.find.attr(u,"value");return p??eo(m.text(u))}},select:{get:function(u){var p,b,x,O=u.options,k=u.selectedIndex,M=u.type==="select-one",q=M?null:[],z=M?k+1:O.length;for(k<0?x=z:x=M?k:0;x-1)&&(b=!0);return b||(u.selectedIndex=-1),k}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(u,p){if(Array.isArray(p))return u.checked=m.inArray(m(u).val(),p)>-1}},E.checkOn||(m.valHooks[this].get=function(u){return u.getAttribute("value")===null?"on":u.value})});var ei=t.location,Fl={guid:Date.now()},Ma=/\?/;m.parseXML=function(u){var p,b;if(!u||typeof u!="string")return null;try{p=new t.DOMParser().parseFromString(u,"text/xml")}catch{}return b=p&&p.getElementsByTagName("parsererror")[0],(!p||b)&&m.error("Invalid XML: "+(b?m.map(b.childNodes,function(x){return x.textContent}).join(` +`):u)),p};var $u=/^(?:focusinfocus|focusoutblur)$/,Fu=function(u){u.stopPropagation()};m.extend(m.event,{trigger:function(u,p,b,x){var O,k,M,q,z,ie,ve,xe,he=[b||I],De=g.call(u,"type")?u.type:u,Ke=g.call(u,"namespace")?u.namespace.split("."):[];if(k=xe=M=b=b||I,!(b.nodeType===3||b.nodeType===8)&&!$u.test(De+m.event.triggered)&&(De.indexOf(".")>-1&&(Ke=De.split("."),De=Ke.shift(),Ke.sort()),z=De.indexOf(":")<0&&"on"+De,u=u[m.expando]?u:new m.Event(De,typeof u=="object"&&u),u.isTrigger=x?2:3,u.namespace=Ke.join("."),u.rnamespace=u.namespace?new RegExp("(^|\\.)"+Ke.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,u.result=void 0,u.target||(u.target=b),p=p==null?[u]:m.makeArray(p,[u]),ve=m.event.special[De]||{},!(!x&&ve.trigger&&ve.trigger.apply(b,p)===!1))){if(!x&&!ve.noBubble&&!N(b)){for(q=ve.delegateType||De,$u.test(q+De)||(k=k.parentNode);k;k=k.parentNode)he.push(k),M=k;M===(b.ownerDocument||I)&&he.push(M.defaultView||M.parentWindow||t)}for(O=0;(k=he[O++])&&!u.isPropagationStopped();)xe=k,u.type=O>1?q:ve.bindType||De,ie=(X.get(k,"events")||Object.create(null))[u.type]&&X.get(k,"handle"),ie&&ie.apply(k,p),ie=z&&k[z],ie&&ie.apply&&Fe(k)&&(u.result=ie.apply(k,p),u.result===!1&&u.preventDefault());return u.type=De,!x&&!u.isDefaultPrevented()&&(!ve._default||ve._default.apply(he.pop(),p)===!1)&&Fe(b)&&z&&T(b[De])&&!N(b)&&(M=b[z],M&&(b[z]=null),m.event.triggered=De,u.isPropagationStopped()&&xe.addEventListener(De,Fu),b[De](),u.isPropagationStopped()&&xe.removeEventListener(De,Fu),m.event.triggered=void 0,M&&(b[z]=M)),u.result}},simulate:function(u,p,b){var x=m.extend(new m.Event,b,{type:u,isSimulated:!0});m.event.trigger(x,null,p)}}),m.fn.extend({trigger:function(u,p){return this.each(function(){m.event.trigger(u,p,this)})},triggerHandler:function(u,p){var b=this[0];if(b)return m.event.trigger(u,p,b,!0)}});var Mh=/\[\]$/,Bl=/\r?\n/g,$h=/^(?:submit|button|image|reset|file)$/i,Fh=/^(?:input|select|textarea|keygen)/i;function Ul(u,p,b,x){var O;if(Array.isArray(p))m.each(p,function(k,M){b||Mh.test(u)?x(u,M):Ul(u+"["+(typeof M=="object"&&M!=null?k:"")+"]",M,b,x)});else if(!b&&R(p)==="object")for(O in p)Ul(u+"["+O+"]",p[O],b,x);else x(u,p)}m.param=function(u,p){var b,x=[],O=function(k,M){var q=T(M)?M():M;x[x.length]=encodeURIComponent(k)+"="+encodeURIComponent(q??"")};if(u==null)return"";if(Array.isArray(u)||u.jquery&&!m.isPlainObject(u))m.each(u,function(){O(this.name,this.value)});else for(b in u)Ul(b,u[b],p,O);return x.join("&")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var u=m.prop(this,"elements");return u?m.makeArray(u):this}).filter(function(){var u=this.type;return this.name&&!m(this).is(":disabled")&&Fh.test(this.nodeName)&&!$h.test(u)&&(this.checked||!It.test(u))}).map(function(u,p){var b=m(this).val();return b==null?null:Array.isArray(b)?m.map(b,function(x){return{name:p.name,value:x.replace(Bl,`\r `)}}):{name:p.name,value:b.replace(Bl,`\r -`)}}).get()}});var Bh=/%20/g,Hl=/#.*$/,Uh=/([?&])_=[^&]*/,Hh=/^(.*?):[ \t]*([^\r\n]*)$/mg,jh=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Vh=/^(?:GET|HEAD)$/,Wh=/^\/\//,bn={},fn={},Uu="*/".concat("*"),jl=I.createElement("a");jl.href=ei.href;function Hu(u){return function(p,b){typeof p!="string"&&(b=p,p="*");var x,O=0,k=p.toLowerCase().match(Rt)||[];if(T(b))for(;x=k[O++];)x[0]==="+"?(x=x.slice(1)||"*",(u[x]=u[x]||[]).unshift(b)):(u[x]=u[x]||[]).push(b)}}function ju(u,p,b,x){var O={},k=u===fn;function M(q){var z;return O[q]=!0,m.each(u[q]||[],function(ie,ve){var xe=ve(p,b,x);if(typeof xe=="string"&&!k&&!O[xe])return p.dataTypes.unshift(xe),M(xe),!1;if(k)return!(z=xe)}),z}return M(p.dataTypes[0])||!O["*"]&&M("*")}function Vl(u,p){var b,x,O=m.ajaxSettings.flatOptions||{};for(b in p)p[b]!==void 0&&((O[b]?u:x||(x={}))[b]=p[b]);return x&&m.extend(!0,u,x),u}function Gh(u,p,b){for(var x,O,k,M,q=u.contents,z=u.dataTypes;z[0]==="*";)z.shift(),x===void 0&&(x=u.mimeType||p.getResponseHeader("Content-Type"));if(x){for(O in q)if(q[O]&&q[O].test(x)){z.unshift(O);break}}if(z[0]in b)k=z[0];else{for(O in b){if(!z[0]||u.converters[O+" "+z[0]]){k=O;break}M||(M=O)}k=k||M}if(k)return k!==z[0]&&z.unshift(k),b[k]}function Vu(u,p,b,x){var O,k,M,q,z,ie={},ve=u.dataTypes.slice();if(ve[1])for(M in u.converters)ie[M.toLowerCase()]=u.converters[M];for(k=ve.shift();k;)if(u.responseFields[k]&&(b[u.responseFields[k]]=p),!z&&x&&u.dataFilter&&(p=u.dataFilter(p,u.dataType)),z=k,k=ve.shift(),k){if(k==="*")k=z;else if(z!=="*"&&z!==k){if(M=ie[z+" "+k]||ie["* "+k],!M){for(O in ie)if(q=O.split(" "),q[1]===k&&(M=ie[z+" "+q[0]]||ie["* "+q[0]],M)){M===!0?M=ie[O]:ie[O]!==!0&&(k=q[0],ve.unshift(q[1]));break}}if(M!==!0)if(M&&u.throws)p=M(p);else try{p=M(p)}catch(xe){return{state:"parsererror",error:M?xe:"No conversion from "+z+" to "+k}}}}return{state:"success",data:p}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ei.href,type:"GET",isLocal:jh.test(ei.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Uu,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(u,p){return p?Vl(Vl(u,m.ajaxSettings),p):Vl(m.ajaxSettings,u)},ajaxPrefilter:Hu(bn),ajaxTransport:Hu(fn),ajax:function(u,p){typeof u=="object"&&(p=u,u=void 0),p=p||{};var b,x,O,k,M,q,z,ie,ve,xe,he=m.ajaxSetup({},p),De=he.context||he,Ke=he.context&&(De.nodeType||De.jquery)?m(De):m.event,Tt=m.Deferred(),St=m.Callbacks("once memory"),qn=he.statusCode||{},kn={},bs={},vs="canceled",Ht={readyState:0,getResponseHeader:function(jt){var gn;if(z){if(!k)for(k={};gn=Hh.exec(O);)k[gn[1].toLowerCase()+" "]=(k[gn[1].toLowerCase()+" "]||[]).concat(gn[2]);gn=k[jt.toLowerCase()+" "]}return gn==null?null:gn.join(", ")},getAllResponseHeaders:function(){return z?O:null},setRequestHeader:function(jt,gn){return z==null&&(jt=bs[jt.toLowerCase()]=bs[jt.toLowerCase()]||jt,kn[jt]=gn),this},overrideMimeType:function(jt){return z==null&&(he.mimeType=jt),this},statusCode:function(jt){var gn;if(jt)if(z)Ht.always(jt[Ht.status]);else for(gn in jt)qn[gn]=[qn[gn],jt[gn]];return this},abort:function(jt){var gn=jt||vs;return b&&b.abort(gn),no(0,gn),this}};if(Tt.promise(Ht),he.url=((u||he.url||ei.href)+"").replace(Wh,ei.protocol+"//"),he.type=p.method||p.type||he.method||he.type,he.dataTypes=(he.dataType||"*").toLowerCase().match(Rt)||[""],he.crossDomain==null){q=I.createElement("a");try{q.href=he.url,q.href=q.href,he.crossDomain=jl.protocol+"//"+jl.host!=q.protocol+"//"+q.host}catch{he.crossDomain=!0}}if(he.data&&he.processData&&typeof he.data!="string"&&(he.data=m.param(he.data,he.traditional)),ju(bn,he,p,Ht),z)return Ht;ie=m.event&&he.global,ie&&m.active++===0&&m.event.trigger("ajaxStart"),he.type=he.type.toUpperCase(),he.hasContent=!Vh.test(he.type),x=he.url.replace(Hl,""),he.hasContent?he.data&&he.processData&&(he.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&(he.data=he.data.replace(Bh,"+")):(xe=he.url.slice(x.length),he.data&&(he.processData||typeof he.data=="string")&&(x+=(Ma.test(x)?"&":"?")+he.data,delete he.data),he.cache===!1&&(x=x.replace(Uh,"$1"),xe=(Ma.test(x)?"&":"?")+"_="+Fl.guid+++xe),he.url=x+xe),he.ifModified&&(m.lastModified[x]&&Ht.setRequestHeader("If-Modified-Since",m.lastModified[x]),m.etag[x]&&Ht.setRequestHeader("If-None-Match",m.etag[x])),(he.data&&he.hasContent&&he.contentType!==!1||p.contentType)&&Ht.setRequestHeader("Content-Type",he.contentType),Ht.setRequestHeader("Accept",he.dataTypes[0]&&he.accepts[he.dataTypes[0]]?he.accepts[he.dataTypes[0]]+(he.dataTypes[0]!=="*"?", "+Uu+"; q=0.01":""):he.accepts["*"]);for(ve in he.headers)Ht.setRequestHeader(ve,he.headers[ve]);if(he.beforeSend&&(he.beforeSend.call(De,Ht,he)===!1||z))return Ht.abort();if(vs="abort",St.add(he.complete),Ht.done(he.success),Ht.fail(he.error),b=ju(fn,he,p,Ht),!b)no(-1,"No Transport");else{if(Ht.readyState=1,ie&&Ke.trigger("ajaxSend",[Ht,he]),z)return Ht;he.async&&he.timeout>0&&(M=t.setTimeout(function(){Ht.abort("timeout")},he.timeout));try{z=!1,b.send(kn,no)}catch(jt){if(z)throw jt;no(-1,jt)}}function no(jt,gn,Hi,Fa){var ns,xo,Ur,Ms,ro,br=gn;z||(z=!0,M&&t.clearTimeout(M),b=void 0,O=Fa||"",Ht.readyState=jt>0?4:0,ns=jt>=200&&jt<300||jt===304,Hi&&(Ms=Gh(he,Ht,Hi)),!ns&&m.inArray("script",he.dataTypes)>-1&&m.inArray("json",he.dataTypes)<0&&(he.converters["text script"]=function(){}),Ms=Vu(he,Ms,Ht,ns),ns?(he.ifModified&&(ro=Ht.getResponseHeader("Last-Modified"),ro&&(m.lastModified[x]=ro),ro=Ht.getResponseHeader("etag"),ro&&(m.etag[x]=ro)),jt===204||he.type==="HEAD"?br="nocontent":jt===304?br="notmodified":(br=Ms.state,xo=Ms.data,Ur=Ms.error,ns=!Ur)):(Ur=br,(jt||!br)&&(br="error",jt<0&&(jt=0))),Ht.status=jt,Ht.statusText=(gn||br)+"",ns?Tt.resolveWith(De,[xo,br,Ht]):Tt.rejectWith(De,[Ht,br,Ur]),Ht.statusCode(qn),qn=void 0,ie&&Ke.trigger(ns?"ajaxSuccess":"ajaxError",[Ht,he,ns?xo:Ur]),St.fireWith(De,[Ht,br]),ie&&(Ke.trigger("ajaxComplete",[Ht,he]),--m.active||m.event.trigger("ajaxStop")))}return Ht},getJSON:function(u,p,b){return m.get(u,p,b,"json")},getScript:function(u,p){return m.get(u,void 0,p,"script")}}),m.each(["get","post"],function(u,p){m[p]=function(b,x,O,k){return T(x)&&(k=k||O,O=x,x=void 0),m.ajax(m.extend({url:b,type:p,dataType:k,data:x,success:O},m.isPlainObject(b)&&b))}}),m.ajaxPrefilter(function(u){var p;for(p in u.headers)p.toLowerCase()==="content-type"&&(u.contentType=u.headers[p]||"")}),m._evalUrl=function(u,p,b){return m.ajax({url:u,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(x){m.globalEval(x,p,b)}})},m.fn.extend({wrapAll:function(u){var p;return this[0]&&(T(u)&&(u=u.call(this[0])),p=m(u,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&p.insertBefore(this[0]),p.map(function(){for(var b=this;b.firstElementChild;)b=b.firstElementChild;return b}).append(this)),this},wrapInner:function(u){return T(u)?this.each(function(p){m(this).wrapInner(u.call(this,p))}):this.each(function(){var p=m(this),b=p.contents();b.length?b.wrapAll(u):p.append(u)})},wrap:function(u){var p=T(u);return this.each(function(b){m(this).wrapAll(p?u.call(this,b):u)})},unwrap:function(u){return this.parent(u).not("body").each(function(){m(this).replaceWith(this.childNodes)}),this}}),m.expr.pseudos.hidden=function(u){return!m.expr.pseudos.visible(u)},m.expr.pseudos.visible=function(u){return!!(u.offsetWidth||u.offsetHeight||u.getClientRects().length)},m.ajaxSettings.xhr=function(){try{return new t.XMLHttpRequest}catch{}};var Kh={0:200,1223:204},An=m.ajaxSettings.xhr();E.cors=!!An&&"withCredentials"in An,E.ajax=An=!!An,m.ajaxTransport(function(u){var p,b;if(E.cors||An&&!u.crossDomain)return{send:function(x,O){var k,M=u.xhr();if(M.open(u.type,u.url,u.async,u.username,u.password),u.xhrFields)for(k in u.xhrFields)M[k]=u.xhrFields[k];u.mimeType&&M.overrideMimeType&&M.overrideMimeType(u.mimeType),!u.crossDomain&&!x["X-Requested-With"]&&(x["X-Requested-With"]="XMLHttpRequest");for(k in x)M.setRequestHeader(k,x[k]);p=function(q){return function(){p&&(p=b=M.onload=M.onerror=M.onabort=M.ontimeout=M.onreadystatechange=null,q==="abort"?M.abort():q==="error"?typeof M.status!="number"?O(0,"error"):O(M.status,M.statusText):O(Kh[M.status]||M.status,M.statusText,(M.responseType||"text")!=="text"||typeof M.responseText!="string"?{binary:M.response}:{text:M.responseText},M.getAllResponseHeaders()))}},M.onload=p(),b=M.onerror=M.ontimeout=p("error"),M.onabort!==void 0?M.onabort=b:M.onreadystatechange=function(){M.readyState===4&&t.setTimeout(function(){p&&b()})},p=p("abort");try{M.send(u.hasContent&&u.data||null)}catch(q){if(p)throw q}},abort:function(){p&&p()}}}),m.ajaxPrefilter(function(u){u.crossDomain&&(u.contents.script=!1)}),m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(u){return m.globalEval(u),u}}}),m.ajaxPrefilter("script",function(u){u.cache===void 0&&(u.cache=!1),u.crossDomain&&(u.type="GET")}),m.ajaxTransport("script",function(u){if(u.crossDomain||u.scriptAttrs){var p,b;return{send:function(x,O){p=m("