-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathtext-editors.js
More file actions
3 lines (3 loc) Β· 230 KB
/
Copy pathtext-editors.js
File metadata and controls
3 lines (3 loc) Β· 230 KB
1
2
3
/*! For license information please see text-editors.js.LICENSE.txt */
(()=>{var t,e,n,r,i={22200:(t,e,n)=>{"use strict";var r=n(57888),i=void 0,o=[];r.subscribe("csrf-token-update",(function(t){i=t.token,o.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}));var s=function(t,e){return t?t.getAttribute(e):null},a=void 0;e.getCurrentUser=function(){if(void 0!==a)return a;var t=null===document||void 0===document?void 0:document.getElementsByTagName("head")[0];if(!t)return null;var e=s(t,"data-user");return a=null===e?null:{uid:e,displayName:s(t,"data-user-displayname"),isAdmin:!!window._oc_isadmin}},e.getRequestToken=function(){if(void 0===i){var t=null===document||void 0===document?void 0:document.getElementsByTagName("head")[0];i=t?t.getAttribute("data-requesttoken"):null}return i},e.onRequestTokenUpdate=function(t){o.push(t)}},62556:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.clearAll=function(){[window.sessionStorage,window.localStorage].map((t=>s(t)))},e.clearNonPersistent=function(){[window.sessionStorage,window.localStorage].map((t=>s(t,(t=>!t.startsWith(i.default.GLOBAL_SCOPE_PERSISTENT)))))},e.getBuilder=function(t){return new r.default(t)};var r=o(n(71957)),i=o(n(48971));function o(t){return t&&t.__esModule?t:{default:t}}function s(t,e){Object.keys(t).filter((t=>!e||e(t))).map(t.removeItem.bind(t))}},48971:(t,e)=>{"use strict";function n(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;class r{constructor(t,e,i){n(this,"scope",void 0),n(this,"wrapped",void 0),this.scope=`${i?r.GLOBAL_SCOPE_PERSISTENT:r.GLOBAL_SCOPE_VOLATILE}_${btoa(t)}_`,this.wrapped=e}scopeKey(t){return`${this.scope}${t}`}setItem(t,e){this.wrapped.setItem(this.scopeKey(t),e)}getItem(t){return this.wrapped.getItem(this.scopeKey(t))}removeItem(t){this.wrapped.removeItem(this.scopeKey(t))}clear(){Object.keys(this.wrapped).filter((t=>t.startsWith(this.scope))).map(this.wrapped.removeItem.bind(this.wrapped))}}e.default=r,n(r,"GLOBAL_SCOPE_VOLATILE","nextcloud_vol"),n(r,"GLOBAL_SCOPE_PERSISTENT","nextcloud_per")},71957:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r,i=(r=n(48971))&&r.__esModule?r:{default:r};function o(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}e.default=class{constructor(t){o(this,"appId",void 0),o(this,"persisted",!1),o(this,"clearedOnLogout",!1),this.appId=t}persist(){let t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this.persisted=t,this}clearOnLogout(){let t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this.clearedOnLogout=t,this}build(){return new i.default(this.appId,this.persisted?window.localStorage:window.sessionStorage,!this.clearedOnLogout)}}},67737:(t,e,n)=>{const r=n(85503),{MAX_LENGTH:i,MAX_SAFE_INTEGER:o}=n(35519),{safeRe:s,t:a}=n(88238),c=n(74433),{compareIdentifiers:u}=n(63242);class f{constructor(t,e){if(e=c(e),t instanceof f){if(t.loose===!!e.loose&&t.includePrerelease===!!e.includePrerelease)return t;t=t.version}else if("string"!=typeof t)throw new TypeError(`Invalid version. Must be a string. Got type "${typeof t}".`);if(t.length>i)throw new TypeError(`version is longer than ${i} characters`);r("SemVer",t,e),this.options=e,this.loose=!!e.loose,this.includePrerelease=!!e.includePrerelease;const n=t.trim().match(e.loose?s[a.LOOSE]:s[a.FULL]);if(!n)throw new TypeError(`Invalid Version: ${t}`);if(this.raw=t,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>o||this.major<0)throw new TypeError("Invalid major version");if(this.minor>o||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>o||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map((t=>{if(/^[0-9]+$/.test(t)){const e=+t;if(e>=0&&e<o)return e}return t})):this.prerelease=[],this.build=n[5]?n[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(t){if(r("SemVer.compare",this.version,this.options,t),!(t instanceof f)){if("string"==typeof t&&t===this.version)return 0;t=new f(t,this.options)}return t.version===this.version?0:this.compareMain(t)||this.comparePre(t)}compareMain(t){return t instanceof f||(t=new f(t,this.options)),u(this.major,t.major)||u(this.minor,t.minor)||u(this.patch,t.patch)}comparePre(t){if(t instanceof f||(t=new f(t,this.options)),this.prerelease.length&&!t.prerelease.length)return-1;if(!this.prerelease.length&&t.prerelease.length)return 1;if(!this.prerelease.length&&!t.prerelease.length)return 0;let e=0;do{const n=this.prerelease[e],i=t.prerelease[e];if(r("prerelease compare",e,n,i),void 0===n&&void 0===i)return 0;if(void 0===i)return 1;if(void 0===n)return-1;if(n!==i)return u(n,i)}while(++e)}compareBuild(t){t instanceof f||(t=new f(t,this.options));let e=0;do{const n=this.build[e],i=t.build[e];if(r("prerelease compare",e,n,i),void 0===n&&void 0===i)return 0;if(void 0===i)return 1;if(void 0===n)return-1;if(n!==i)return u(n,i)}while(++e)}inc(t,e,n){switch(t){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",e,n);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",e,n);break;case"prepatch":this.prerelease.length=0,this.inc("patch",e,n),this.inc("pre",e,n);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",e,n),this.inc("pre",e,n);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":{const t=Number(n)?1:0;if(!e&&!1===n)throw new Error("invalid increment argument: identifier is empty");if(0===this.prerelease.length)this.prerelease=[t];else{let r=this.prerelease.length;for(;--r>=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);if(-1===r){if(e===this.prerelease.join(".")&&!1===n)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(t)}}if(e){let r=[e,t];!1===n&&(r=[e]),0===u(this.prerelease[0],e)?isNaN(this.prerelease[1])&&(this.prerelease=r):this.prerelease=r}break}default:throw new Error(`invalid increment argument: ${t}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}t.exports=f},92426:(t,e,n)=>{const r=n(67737);t.exports=(t,e)=>new r(t,e).major},67488:(t,e,n)=>{const r=n(67737);t.exports=(t,e,n=!1)=>{if(t instanceof r)return t;try{return new r(t,e)}catch(t){if(!n)return null;throw t}}},77907:(t,e,n)=>{const r=n(67488);t.exports=(t,e)=>{const n=r(t,e);return n?n.version:null}},35519:t=>{const e=Number.MAX_SAFE_INTEGER||9007199254740991;t.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:16,MAX_SAFE_INTEGER:e,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:"2.0.0",FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},85503:(t,e,n)=>{var r=n(34155);const i="object"==typeof r&&r.env&&r.env.NODE_DEBUG&&/\bsemver\b/i.test(r.env.NODE_DEBUG)?(...t)=>console.error("SEMVER",...t):()=>{};t.exports=i},63242:t=>{const e=/^[0-9]+$/,n=(t,n)=>{const r=e.test(t),i=e.test(n);return r&&i&&(t=+t,n=+n),t===n?0:r&&!i?-1:i&&!r?1:t<n?-1:1};t.exports={compareIdentifiers:n,rcompareIdentifiers:(t,e)=>n(e,t)}},74433:t=>{const e=Object.freeze({loose:!0}),n=Object.freeze({});t.exports=t=>t?"object"!=typeof t?e:t:n},88238:(t,e,n)=>{const{MAX_SAFE_COMPONENT_LENGTH:r}=n(35519),i=n(85503),o=(e=t.exports={}).re=[],s=e.safeRe=[],a=e.src=[],c=e.t={};let u=0;const f=(t,e,n)=>{const r=e.split("\\s*").join("\\s{0,1}").split("\\s+").join("\\s"),f=u++;i(t,f,e),c[t]=f,a[f]=e,o[f]=new RegExp(e,n?"g":void 0),s[f]=new RegExp(r,n?"g":void 0)};f("NUMERICIDENTIFIER","0|[1-9]\\d*"),f("NUMERICIDENTIFIERLOOSE","[0-9]+"),f("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-][a-zA-Z0-9-]*"),f("MAINVERSION",`(${a[c.NUMERICIDENTIFIER]})\\.(${a[c.NUMERICIDENTIFIER]})\\.(${a[c.NUMERICIDENTIFIER]})`),f("MAINVERSIONLOOSE",`(${a[c.NUMERICIDENTIFIERLOOSE]})\\.(${a[c.NUMERICIDENTIFIERLOOSE]})\\.(${a[c.NUMERICIDENTIFIERLOOSE]})`),f("PRERELEASEIDENTIFIER",`(?:${a[c.NUMERICIDENTIFIER]}|${a[c.NONNUMERICIDENTIFIER]})`),f("PRERELEASEIDENTIFIERLOOSE",`(?:${a[c.NUMERICIDENTIFIERLOOSE]}|${a[c.NONNUMERICIDENTIFIER]})`),f("PRERELEASE",`(?:-(${a[c.PRERELEASEIDENTIFIER]}(?:\\.${a[c.PRERELEASEIDENTIFIER]})*))`),f("PRERELEASELOOSE",`(?:-?(${a[c.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${a[c.PRERELEASEIDENTIFIERLOOSE]})*))`),f("BUILDIDENTIFIER","[0-9A-Za-z-]+"),f("BUILD",`(?:\\+(${a[c.BUILDIDENTIFIER]}(?:\\.${a[c.BUILDIDENTIFIER]})*))`),f("FULLPLAIN",`v?${a[c.MAINVERSION]}${a[c.PRERELEASE]}?${a[c.BUILD]}?`),f("FULL",`^${a[c.FULLPLAIN]}$`),f("LOOSEPLAIN",`[v=\\s]*${a[c.MAINVERSIONLOOSE]}${a[c.PRERELEASELOOSE]}?${a[c.BUILD]}?`),f("LOOSE",`^${a[c.LOOSEPLAIN]}$`),f("GTLT","((?:<|>)?=?)"),f("XRANGEIDENTIFIERLOOSE",`${a[c.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),f("XRANGEIDENTIFIER",`${a[c.NUMERICIDENTIFIER]}|x|X|\\*`),f("XRANGEPLAIN",`[v=\\s]*(${a[c.XRANGEIDENTIFIER]})(?:\\.(${a[c.XRANGEIDENTIFIER]})(?:\\.(${a[c.XRANGEIDENTIFIER]})(?:${a[c.PRERELEASE]})?${a[c.BUILD]}?)?)?`),f("XRANGEPLAINLOOSE",`[v=\\s]*(${a[c.XRANGEIDENTIFIERLOOSE]})(?:\\.(${a[c.XRANGEIDENTIFIERLOOSE]})(?:\\.(${a[c.XRANGEIDENTIFIERLOOSE]})(?:${a[c.PRERELEASELOOSE]})?${a[c.BUILD]}?)?)?`),f("XRANGE",`^${a[c.GTLT]}\\s*${a[c.XRANGEPLAIN]}$`),f("XRANGELOOSE",`^${a[c.GTLT]}\\s*${a[c.XRANGEPLAINLOOSE]}$`),f("COERCE",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?(?:$|[^\\d])`),f("COERCERTL",a[c.COERCE],!0),f("LONETILDE","(?:~>?)"),f("TILDETRIM",`(\\s*)${a[c.LONETILDE]}\\s+`,!0),e.tildeTrimReplace="$1~",f("TILDE",`^${a[c.LONETILDE]}${a[c.XRANGEPLAIN]}$`),f("TILDELOOSE",`^${a[c.LONETILDE]}${a[c.XRANGEPLAINLOOSE]}$`),f("LONECARET","(?:\\^)"),f("CARETTRIM",`(\\s*)${a[c.LONECARET]}\\s+`,!0),e.caretTrimReplace="$1^",f("CARET",`^${a[c.LONECARET]}${a[c.XRANGEPLAIN]}$`),f("CARETLOOSE",`^${a[c.LONECARET]}${a[c.XRANGEPLAINLOOSE]}$`),f("COMPARATORLOOSE",`^${a[c.GTLT]}\\s*(${a[c.LOOSEPLAIN]})$|^$`),f("COMPARATOR",`^${a[c.GTLT]}\\s*(${a[c.FULLPLAIN]})$|^$`),f("COMPARATORTRIM",`(\\s*)${a[c.GTLT]}\\s*(${a[c.LOOSEPLAIN]}|${a[c.XRANGEPLAIN]})`,!0),e.comparatorTrimReplace="$1$2$3",f("HYPHENRANGE",`^\\s*(${a[c.XRANGEPLAIN]})\\s+-\\s+(${a[c.XRANGEPLAIN]})\\s*$`),f("HYPHENRANGELOOSE",`^\\s*(${a[c.XRANGEPLAINLOOSE]})\\s+-\\s+(${a[c.XRANGEPLAINLOOSE]})\\s*$`),f("STAR","(<|>)?=?\\s*\\*"),f("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),f("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},71356:(t,e,n)=>{"use strict";n(69070),n(32165),n(66992),n(78783),n(33948),Object.defineProperty(e,"__esModule",{value:!0}),e.ConsoleLogger=void 0,e.buildConsoleLogger=function(t){return new a(t)},n(19601),n(96649),n(96078),n(82526),n(41817),n(41539),n(9653);var r=n(20006);function i(t){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},i(t)}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,s(r.key),r)}}function s(t){var e=function(t,e){if("object"!==i(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!==i(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===i(e)?e:String(e)}var a=function(){function t(e){var n,r,i;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),n=this,i=void 0,(r=s(r="context"))in n?Object.defineProperty(n,r,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[r]=i,this.context=e||{}}var e,n,a;return e=t,(n=[{key:"formatMessage",value:function(t,e,n){var i="["+r.LogLevel[e].toUpperCase()+"] ";return n&&n.app&&(i+=n.app+": "),"string"==typeof t?i+t:(i+="Unexpected ".concat(t.name),t.message&&(i+=' "'.concat(t.message,'"')),e===r.LogLevel.Debug&&t.stack&&(i+="\n\nStack trace:\n".concat(t.stack)),i)}},{key:"log",value:function(t,e,n){var o,s;if(!("number"==typeof(null===(o=this.context)||void 0===o?void 0:o.level)&&t<(null===(s=this.context)||void 0===s?void 0:s.level)))switch("object"===i(e)&&void 0===(null==n?void 0:n.error)&&(n.error=e),t){case r.LogLevel.Debug:console.debug(this.formatMessage(e,r.LogLevel.Debug,n),n);break;case r.LogLevel.Info:console.info(this.formatMessage(e,r.LogLevel.Info,n),n);break;case r.LogLevel.Warn:console.warn(this.formatMessage(e,r.LogLevel.Warn,n),n);break;case r.LogLevel.Error:console.error(this.formatMessage(e,r.LogLevel.Error,n),n);break;case r.LogLevel.Fatal:default:console.error(this.formatMessage(e,r.LogLevel.Fatal,n),n)}}},{key:"debug",value:function(t,e){this.log(r.LogLevel.Debug,t,Object.assign({},this.context,e))}},{key:"info",value:function(t,e){this.log(r.LogLevel.Info,t,Object.assign({},this.context,e))}},{key:"warn",value:function(t,e){this.log(r.LogLevel.Warn,t,Object.assign({},this.context,e))}},{key:"error",value:function(t,e){this.log(r.LogLevel.Error,t,Object.assign({},this.context,e))}},{key:"fatal",value:function(t,e){this.log(r.LogLevel.Fatal,t,Object.assign({},this.context,e))}}])&&o(e.prototype,n),a&&o(e,a),Object.defineProperty(e,"prototype",{writable:!1}),t}();e.ConsoleLogger=a},55058:(t,e,n)=>{"use strict";n(69070),n(32165),n(66992),n(78783),n(33948),Object.defineProperty(e,"__esModule",{value:!0}),e.LoggerBuilder=void 0,n(96649),n(96078),n(82526),n(41817),n(41539),n(9653);var r=n(22200),i=n(20006);function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function s(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,c(r.key),r)}}function a(t,e,n){return(e=c(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function c(t){var e=function(t,e){if("object"!==o(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!==o(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===o(e)?e:String(e)}var u=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,"context",void 0),a(this,"factory",void 0),this.context={},this.factory=e}var e,n,o;return e=t,(n=[{key:"setApp",value:function(t){return this.context.app=t,this}},{key:"setLogLevel",value:function(t){return this.context.level=t,this}},{key:"setUid",value:function(t){return this.context.uid=t,this}},{key:"detectUser",value:function(){var t=(0,r.getCurrentUser)();return null!==t&&(this.context.uid=t.uid),this}},{key:"detectLogLevel",value:function(){var t=this;return function e(){var n,r;"complete"===document.readyState||"interactive"===document.readyState?(t.context.level=null!==(n=null===(r=window._oc_config)||void 0===r?void 0:r.loglevel)&&void 0!==n?n:i.LogLevel.Warn,window._oc_debug&&(t.context.level=i.LogLevel.Debug),document.removeEventListener("readystatechange",e)):document.addEventListener("readystatechange",e)}(),this}},{key:"build",value:function(){return void 0===this.context.level&&this.detectLogLevel(),this.factory(this.context)}}])&&s(e.prototype,n),o&&s(e,o),Object.defineProperty(e,"prototype",{writable:!1}),t}();e.LoggerBuilder=u},20006:(t,e,n)=>{"use strict";n(69070),Object.defineProperty(e,"__esModule",{value:!0}),e.LogLevel=void 0;var r=function(t){return t[t.Debug=0]="Debug",t[t.Info=1]="Info",t[t.Warn=2]="Warn",t[t.Error=3]="Error",t[t.Fatal=4]="Fatal",t}({});e.LogLevel=r},17499:(t,e,n)=>{"use strict";n(69070),e.IY=s;var r=n(71356),i=n(55058),o=n(20006);function s(){return new i.LoggerBuilder(r.buildConsoleLogger)}},79753:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.linkTo=e.imagePath=e.getRootUrl=e.generateUrl=e.generateRemoteUrl=e.generateOcsUrl=e.generateFilePath=void 0;e.linkTo=(t,e)=>r(t,"",e);e.generateRemoteUrl=t=>window.location.protocol+"//"+window.location.host+(t=>i()+"/remote.php/"+t)(t);e.generateOcsUrl=(t,e,r)=>{const o=1===Object.assign({ocsVersion:2},r||{}).ocsVersion?1:2;return window.location.protocol+"//"+window.location.host+i()+"/ocs/v"+o+".php"+n(t,e,r)};const n=(t,e,n)=>{const r=Object.assign({escape:!0},n||{});return"/"!==t.charAt(0)&&(t="/"+t),i=(i=e||{})||{},t.replace(/{([^{}]*)}/g,(function(t,e){var n=i[e];return r.escape?"string"==typeof n||"number"==typeof n?encodeURIComponent(n.toString()):encodeURIComponent(t):"string"==typeof n||"number"==typeof n?n.toString():t}));var i};e.generateUrl=(t,e,r)=>{const o=Object.assign({noRewrite:!1},r||{});return!0!==window?.OC?.config?.modRewriteWorking||o.noRewrite?i()+"/index.php"+n(t,e,r):i()+n(t,e,r)};e.imagePath=(t,e)=>-1===e.indexOf(".")?r(t,"img",e+".svg"):r(t,"img",e);const r=(t,e,n)=>{const r=-1!==window?.OC?.coreApps?.indexOf(t);let o=i();return"php"!==n.substring(n.length-3)||r?"php"===n.substring(n.length-3)||r?(o+="settings"!==t&&"core"!==t&&"search"!==t||"ajax"!==e?"/":"/index.php/",r||(o+="apps/"),""!==t&&(o+=t+="/"),e&&(o+=e+"/"),o+=n):(o=window?.OC?.appswebroots?.[t],e&&(o+="/"+e+"/"),"/"!==o.substring(o.length-1)&&(o+="/"),o+=n):(o+="/index.php/apps/"+t,"index.php"!==n&&(o+="/",e&&(o+=encodeURI(e+"/")),o+=n)),o};e.generateFilePath=r;const i=()=>window?.OC?.webroot||"";e.getRootUrl=i},31728:(t,e,n)=>{"use strict";n.d(e,{$r:()=>S,BG:()=>b,C6:()=>h,Cy:()=>v,FQ:()=>s,HB:()=>o,IT:()=>f,OV:()=>d,QT:()=>w,Uw:()=>i,Zf:()=>E,a_:()=>j,cY:()=>c,eP:()=>O,fB:()=>m,q$:()=>a,rz:()=>y,sw:()=>p,vo:()=>u,wU:()=>l,ww:()=>_,zZ:()=>g});var r=n(52029);const i=Symbol("tiptap:editor"),o=Symbol("editor:file"),s=Symbol("attachment:resolver"),a=Symbol("editor:is-mobile"),c=Symbol("editor:is-public"),u=Symbol("editor:is-rich-editor"),f=Symbol("editor:is-rich-woskapace"),l=Symbol("sync:service"),h=Symbol("editor:upload"),d=Symbol("hook:link-click"),p=Symbol("hook:mention-search"),g=Symbol("hook:mention-insert"),v={inject:{$editor:{from:i,default:null}}},b={inject:{$syncService:{from:l,default:null}}},m={inject:{$isPublic:{from:c,default:!1}}},y={inject:{$isRichWorkspace:{from:f,default:!1}}},w={inject:{$isRichEditor:{from:u,default:!1}}},_={inject:{$isMobile:{from:a,default:!1}}},j={inject:{$file:{from:o,default:()=>({fileId:0,relativePath:null,document:null})}}},E={inject:{$attachmentResolver:{from:s,default:{resolve:t=>(r.k.warn("No attachment resolver provided. Some attachment sources cannot be resolved."),[t])}}}},O={inject:{$editorUpload:{from:h,default:!0}}},S={inject:{$linkHookClick:{from:d,default:null}}}},33528:(t,e,n)=>{"use strict";n.d(e,{TI:()=>a,eS:()=>o,gn:()=>i,kZ:()=>s,qj:()=>c,uT:()=>r});const r=Symbol("state:uploading-state"),i=Symbol("editor:action:attachment-prompt"),o=Symbol("editor:action:upload-attachment"),s={inject:{$uploadingState:{from:r,default:{isUploadingAttachments:!1}}}},a={inject:{$callAttachmentPrompt:{from:i,default:()=>{}}}},c={inject:{$callChooseLocalAttachment:{from:o,default:()=>{}}}}},52029:(t,e,n)=>{"use strict";n.d(e,{k:()=>r});const r=(0,n(17499).IY)().setApp("text").detectUser().build()},25030:(t,e,n)=>{"use strict";n.d(e,{Z:()=>y,D:()=>m});var r=n(20144),i=n(20629),o=n(62556),s=n(79753),a=n(47845);const c="SET_VIEW_WIDTH",u="SET_SHOW_AUTHOR_ANNOTATIONS",f="SET_CURRENT_SESSION",l="SET_HEADINGS",h="SET_ATTACHMENT_LIST";var d=n(20296),p=n.n(d);const g=()=>document.documentElement.clientWidth,v=t=>{let{commit:e}=t;const n=p()((()=>{e("text/".concat(c),g())}),100);window.addEventListener("resize",n)},b=(0,o.getBuilder)("text").persist().build();r.default.use(i.ZP);const m={state:{showAuthorAnnotations:"true"===b.getItem("showAuthorAnnotations"),currentSession:b.getItem("currentSession"),viewWidth:g(),headings:Object.freeze([]),attachmentList:[]},getters:{imageAttachments:t=>t.attachmentList.filter((t=>t.isImage)),findAttachment:t=>e=>t.attachmentList.find((t=>t.name===e))},mutations:{[c](t,e){t.viewWidth=e},[u](t,e){t.showAuthorAnnotations=e,b.setItem("showAuthorAnnotations",""+e)},[f](t,e){t.currentSession=e,b.setItem("currentSession",e)},[l](t,e){if(t.headings.length!==e.length)return void(t.headings=Object.freeze(e));const n=t.headings,r=e.map(((t,e)=>{const r=n[e].level;return Object.freeze({...t,previous:r})}));t.headings=Object.freeze(r)},[h](t,e){t.attachmentList=e}},actions:{setShowAuthorAnnotations(t,e){let{commit:n}=t;n(u,e)},setCurrentSession(t,e){let{commit:n}=t;n(f,e)},setHeadings(t,e){let{commit:n}=t;n(l,e)},async setAttachmentList(t,e){var n,r,i,o;let{commit:c,state:u}=t,{documentId:f,shareToken:l}=e;const d=await a.Z.post((0,s.generateUrl)("/apps/text/attachments"),{documentId:null!==(n=null===(r=u.currentSession)||void 0===r?void 0:r.documentId)&&void 0!==n?n:f,sessionId:null===(i=u.currentSession)||void 0===i?void 0:i.id,sessionToken:null===(o=u.currentSession)||void 0===o?void 0:o.token,shareToken:l});c(h,d.data)}}},y=new i.yh({plugins:[v],modules:{text:{namespaced:!0,...m}}})},79742:(t,e)=>{"use strict";e.byteLength=function(t){var e=a(t),n=e[0],r=e[1];return 3*(n+r)/4-r},e.toByteArray=function(t){var e,n,o=a(t),s=o[0],c=o[1],u=new i(function(t,e,n){return 3*(e+n)/4-n}(0,s,c)),f=0,l=c>0?s-4:s;for(n=0;n<l;n+=4)e=r[t.charCodeAt(n)]<<18|r[t.charCodeAt(n+1)]<<12|r[t.charCodeAt(n+2)]<<6|r[t.charCodeAt(n+3)],u[f++]=e>>16&255,u[f++]=e>>8&255,u[f++]=255&e;2===c&&(e=r[t.charCodeAt(n)]<<2|r[t.charCodeAt(n+1)]>>4,u[f++]=255&e);1===c&&(e=r[t.charCodeAt(n)]<<10|r[t.charCodeAt(n+1)]<<4|r[t.charCodeAt(n+2)]>>2,u[f++]=e>>8&255,u[f++]=255&e);return u},e.fromByteArray=function(t){for(var e,r=t.length,i=r%3,o=[],s=16383,a=0,u=r-i;a<u;a+=s)o.push(c(t,a,a+s>u?u:a+s));1===i?(e=t[r-1],o.push(n[e>>2]+n[e<<4&63]+"==")):2===i&&(e=(t[r-2]<<8)+t[r-1],o.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return o.join("")};for(var n=[],r=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0;s<64;++s)n[s]=o[s],r[o.charCodeAt(s)]=s;function a(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");return-1===n&&(n=e),[n,n===e?0:4-n%4]}function c(t,e,r){for(var i,o,s=[],a=e;a<r;a+=3)i=(t[a]<<16&16711680)+(t[a+1]<<8&65280)+(255&t[a+2]),s.push(n[(o=i)>>18&63]+n[o>>12&63]+n[o>>6&63]+n[63&o]);return s.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},19662:(t,e,n)=>{"use strict";var r=n(60614),i=n(66330),o=TypeError;t.exports=function(t){if(r(t))return t;throw new o(i(t)+" is not a function")}},96077:(t,e,n)=>{"use strict";var r=n(60614),i=String,o=TypeError;t.exports=function(t){if("object"==typeof t||r(t))return t;throw new o("Can't set "+i(t)+" as a prototype")}},51223:(t,e,n)=>{"use strict";var r=n(5112),i=n(70030),o=n(3070).f,s=r("unscopables"),a=Array.prototype;void 0===a[s]&&o(a,s,{configurable:!0,value:i(null)}),t.exports=function(t){a[s][t]=!0}},19670:(t,e,n)=>{"use strict";var r=n(70111),i=String,o=TypeError;t.exports=function(t){if(r(t))return t;throw new o(i(t)+" is not an object")}},41318:(t,e,n)=>{"use strict";var r=n(45656),i=n(51400),o=n(26244),s=function(t){return function(e,n,s){var a,c=r(e),u=o(c),f=i(s,u);if(t&&n!=n){for(;u>f;)if((a=c[f++])!=a)return!0}else for(;u>f;f++)if((t||f in c)&&c[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:s(!0),indexOf:s(!1)}},42092:(t,e,n)=>{"use strict";var r=n(49974),i=n(1702),o=n(68361),s=n(47908),a=n(26244),c=n(65417),u=i([].push),f=function(t){var e=1===t,n=2===t,i=3===t,f=4===t,l=6===t,h=7===t,d=5===t||l;return function(p,g,v,b){for(var m,y,w=s(p),_=o(w),j=r(g,v),E=a(_),O=0,S=b||c,x=e?S(p,E):n||h?S(p,0):void 0;E>O;O++)if((d||O in _)&&(y=j(m=_[O],O,w),t))if(e)x[O]=y;else if(y)switch(t){case 3:return!0;case 5:return m;case 6:return O;case 2:u(x,m)}else switch(t){case 4:return!1;case 7:u(x,m)}return l?-1:i||f?f:x}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},41589:(t,e,n)=>{"use strict";var r=n(51400),i=n(26244),o=n(86135),s=Array,a=Math.max;t.exports=function(t,e,n){for(var c=i(t),u=r(e,c),f=r(void 0===n?c:n,c),l=s(a(f-u,0)),h=0;u<f;u++,h++)o(l,h,t[u]);return l.length=h,l}},50206:(t,e,n)=>{"use strict";var r=n(1702);t.exports=r([].slice)},77475:(t,e,n)=>{"use strict";var r=n(43157),i=n(4411),o=n(70111),s=n(5112)("species"),a=Array;t.exports=function(t){var e;return r(t)&&(e=t.constructor,(i(e)&&(e===a||r(e.prototype))||o(e)&&null===(e=e[s]))&&(e=void 0)),void 0===e?a:e}},65417:(t,e,n)=>{"use strict";var r=n(77475);t.exports=function(t,e){return new(r(t))(0===e?0:e)}},84326:(t,e,n)=>{"use strict";var r=n(1702),i=r({}.toString),o=r("".slice);t.exports=function(t){return o(i(t),8,-1)}},70648:(t,e,n)=>{"use strict";var r=n(51694),i=n(60614),o=n(84326),s=n(5112)("toStringTag"),a=Object,c="Arguments"===o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=a(t),s))?n:c?o(e):"Object"===(r=o(e))&&i(e.callee)?"Arguments":r}},99920:(t,e,n)=>{"use strict";var r=n(92597),i=n(53887),o=n(31236),s=n(3070);t.exports=function(t,e,n){for(var a=i(e),c=s.f,u=o.f,f=0;f<a.length;f++){var l=a[f];r(t,l)||n&&r(n,l)||c(t,l,u(e,l))}}},49920:(t,e,n)=>{"use strict";var r=n(47293);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},76178:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},68880:(t,e,n)=>{"use strict";var r=n(19781),i=n(3070),o=n(79114);t.exports=r?function(t,e,n){return i.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},79114:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},86135:(t,e,n)=>{"use strict";var r=n(34948),i=n(3070),o=n(79114);t.exports=function(t,e,n){var s=r(e);s in t?i.f(t,s,o(0,n)):t[s]=n}},38709:(t,e,n)=>{"use strict";var r=n(19670),i=n(92140),o=TypeError;t.exports=function(t){if(r(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new o("Incorrect hint");return i(this,t)}},47045:(t,e,n)=>{"use strict";var r=n(56339),i=n(3070);t.exports=function(t,e,n){return n.get&&r(n.get,e,{getter:!0}),n.set&&r(n.set,e,{setter:!0}),i.f(t,e,n)}},98052:(t,e,n)=>{"use strict";var r=n(60614),i=n(3070),o=n(56339),s=n(13072);t.exports=function(t,e,n,a){a||(a={});var c=a.enumerable,u=void 0!==a.name?a.name:e;if(r(n)&&o(n,u,a),a.global)c?t[e]=n:s(e,n);else{try{a.unsafe?t[e]&&(c=!0):delete t[e]}catch(t){}c?t[e]=n:i.f(t,e,{value:n,enumerable:!1,configurable:!a.nonConfigurable,writable:!a.nonWritable})}return t}},13072:(t,e,n)=>{"use strict";var r=n(17854),i=Object.defineProperty;t.exports=function(t,e){try{i(r,t,{value:e,configurable:!0,writable:!0})}catch(n){r[t]=e}return e}},19781:(t,e,n)=>{"use strict";var r=n(47293);t.exports=!r((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},4154:t=>{"use strict";var e="object"==typeof document&&document.all,n=void 0===e&&void 0!==e;t.exports={all:e,IS_HTMLDDA:n}},80317:(t,e,n)=>{"use strict";var r=n(17854),i=n(70111),o=r.document,s=i(o)&&i(o.createElement);t.exports=function(t){return s?o.createElement(t):{}}},48324:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},98509:(t,e,n)=>{"use strict";var r=n(80317)("span").classList,i=r&&r.constructor&&r.constructor.prototype;t.exports=i===Object.prototype?void 0:i},88113:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},7392:(t,e,n)=>{"use strict";var r,i,o=n(17854),s=n(88113),a=o.process,c=o.Deno,u=a&&a.versions||c&&c.version,f=u&&u.v8;f&&(i=(r=f.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!i&&s&&(!(r=s.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=s.match(/Chrome\/(\d+)/))&&(i=+r[1]),t.exports=i},80748:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},82109:(t,e,n)=>{"use strict";var r=n(17854),i=n(31236).f,o=n(68880),s=n(98052),a=n(13072),c=n(99920),u=n(54705);t.exports=function(t,e){var n,f,l,h,d,p=t.target,g=t.global,v=t.stat;if(n=g?r:v?r[p]||a(p,{}):(r[p]||{}).prototype)for(f in e){if(h=e[f],l=t.dontCallGetSet?(d=i(n,f))&&d.value:n[f],!u(g?f:p+(v?".":"#")+f,t.forced)&&void 0!==l){if(typeof h==typeof l)continue;c(h,l)}(t.sham||l&&l.sham)&&o(h,"sham",!0),s(n,f,h,t)}}},47293:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},22104:(t,e,n)=>{"use strict";var r=n(34374),i=Function.prototype,o=i.apply,s=i.call;t.exports="object"==typeof Reflect&&Reflect.apply||(r?s.bind(o):function(){return s.apply(o,arguments)})},49974:(t,e,n)=>{"use strict";var r=n(21470),i=n(19662),o=n(34374),s=r(r.bind);t.exports=function(t,e){return i(t),void 0===e?t:o?s(t,e):function(){return t.apply(e,arguments)}}},34374:(t,e,n)=>{"use strict";var r=n(47293);t.exports=!r((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},46916:(t,e,n)=>{"use strict";var r=n(34374),i=Function.prototype.call;t.exports=r?i.bind(i):function(){return i.apply(i,arguments)}},76530:(t,e,n)=>{"use strict";var r=n(19781),i=n(92597),o=Function.prototype,s=r&&Object.getOwnPropertyDescriptor,a=i(o,"name"),c=a&&"something"===function(){}.name,u=a&&(!r||r&&s(o,"name").configurable);t.exports={EXISTS:a,PROPER:c,CONFIGURABLE:u}},75668:(t,e,n)=>{"use strict";var r=n(1702),i=n(19662);t.exports=function(t,e,n){try{return r(i(Object.getOwnPropertyDescriptor(t,e)[n]))}catch(t){}}},21470:(t,e,n)=>{"use strict";var r=n(84326),i=n(1702);t.exports=function(t){if("Function"===r(t))return i(t)}},1702:(t,e,n)=>{"use strict";var r=n(34374),i=Function.prototype,o=i.call,s=r&&i.bind.bind(o,o);t.exports=r?s:function(t){return function(){return o.apply(t,arguments)}}},35005:(t,e,n)=>{"use strict";var r=n(17854),i=n(60614);t.exports=function(t,e){return arguments.length<2?(n=r[t],i(n)?n:void 0):r[t]&&r[t][e];var n}},88044:(t,e,n)=>{"use strict";var r=n(1702),i=n(43157),o=n(60614),s=n(84326),a=n(41340),c=r([].push);t.exports=function(t){if(o(t))return t;if(i(t)){for(var e=t.length,n=[],r=0;r<e;r++){var u=t[r];"string"==typeof u?c(n,u):"number"!=typeof u&&"Number"!==s(u)&&"String"!==s(u)||c(n,a(u))}var f=n.length,l=!0;return function(t,e){if(l)return l=!1,e;if(i(this))return e;for(var r=0;r<f;r++)if(n[r]===t)return e}}}},58173:(t,e,n)=>{"use strict";var r=n(19662),i=n(68554);t.exports=function(t,e){var n=t[e];return i(n)?void 0:r(n)}},17854:function(t,e,n){"use strict";var r=function(t){return t&&t.Math===Math&&t};t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||function(){return this}()||this||Function("return this")()},92597:(t,e,n)=>{"use strict";var r=n(1702),i=n(47908),o=r({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return o(i(t),e)}},3501:t=>{"use strict";t.exports={}},60490:(t,e,n)=>{"use strict";var r=n(35005);t.exports=r("document","documentElement")},64664:(t,e,n)=>{"use strict";var r=n(19781),i=n(47293),o=n(80317);t.exports=!r&&!i((function(){return 7!==Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},68361:(t,e,n)=>{"use strict";var r=n(1702),i=n(47293),o=n(84326),s=Object,a=r("".split);t.exports=i((function(){return!s("z").propertyIsEnumerable(0)}))?function(t){return"String"===o(t)?a(t,""):s(t)}:s},79587:(t,e,n)=>{"use strict";var r=n(60614),i=n(70111),o=n(27674);t.exports=function(t,e,n){var s,a;return o&&r(s=e.constructor)&&s!==n&&i(a=s.prototype)&&a!==n.prototype&&o(t,a),t}},42788:(t,e,n)=>{"use strict";var r=n(1702),i=n(60614),o=n(5465),s=r(Function.toString);i(o.inspectSource)||(o.inspectSource=function(t){return s(t)}),t.exports=o.inspectSource},29909:(t,e,n)=>{"use strict";var r,i,o,s=n(94811),a=n(17854),c=n(70111),u=n(68880),f=n(92597),l=n(5465),h=n(6200),d=n(3501),p="Object already initialized",g=a.TypeError,v=a.WeakMap;if(s||l.state){var b=l.state||(l.state=new v);b.get=b.get,b.has=b.has,b.set=b.set,r=function(t,e){if(b.has(t))throw new g(p);return e.facade=t,b.set(t,e),e},i=function(t){return b.get(t)||{}},o=function(t){return b.has(t)}}else{var m=h("state");d[m]=!0,r=function(t,e){if(f(t,m))throw new g(p);return e.facade=t,u(t,m,e),e},i=function(t){return f(t,m)?t[m]:{}},o=function(t){return f(t,m)}}t.exports={set:r,get:i,has:o,enforce:function(t){return o(t)?i(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!c(e)||(n=i(e)).type!==t)throw new g("Incompatible receiver, "+t+" required");return n}}}},43157:(t,e,n)=>{"use strict";var r=n(84326);t.exports=Array.isArray||function(t){return"Array"===r(t)}},60614:(t,e,n)=>{"use strict";var r=n(4154),i=r.all;t.exports=r.IS_HTMLDDA?function(t){return"function"==typeof t||t===i}:function(t){return"function"==typeof t}},4411:(t,e,n)=>{"use strict";var r=n(1702),i=n(47293),o=n(60614),s=n(70648),a=n(35005),c=n(42788),u=function(){},f=[],l=a("Reflect","construct"),h=/^\s*(?:class|function)\b/,d=r(h.exec),p=!h.test(u),g=function(t){if(!o(t))return!1;try{return l(u,f,t),!0}catch(t){return!1}},v=function(t){if(!o(t))return!1;switch(s(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return p||!!d(h,c(t))}catch(t){return!0}};v.sham=!0,t.exports=!l||i((function(){var t;return g(g.call)||!g(Object)||!g((function(){t=!0}))||t}))?v:g},54705:(t,e,n)=>{"use strict";var r=n(47293),i=n(60614),o=/#|\.prototype\./,s=function(t,e){var n=c[a(t)];return n===f||n!==u&&(i(e)?r(e):!!e)},a=s.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=s.data={},u=s.NATIVE="N",f=s.POLYFILL="P";t.exports=s},68554:t=>{"use strict";t.exports=function(t){return null==t}},70111:(t,e,n)=>{"use strict";var r=n(60614),i=n(4154),o=i.all;t.exports=i.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:r(t)||t===o}:function(t){return"object"==typeof t?null!==t:r(t)}},31913:t=>{"use strict";t.exports=!1},52190:(t,e,n)=>{"use strict";var r=n(35005),i=n(60614),o=n(47976),s=n(43307),a=Object;t.exports=s?function(t){return"symbol"==typeof t}:function(t){var e=r("Symbol");return i(e)&&o(e.prototype,a(t))}},63061:(t,e,n)=>{"use strict";var r=n(13383).IteratorPrototype,i=n(70030),o=n(79114),s=n(58003),a=n(97497),c=function(){return this};t.exports=function(t,e,n,u){var f=e+" Iterator";return t.prototype=i(r,{next:o(+!u,n)}),s(t,f,!1,!0),a[f]=c,t}},51656:(t,e,n)=>{"use strict";var r=n(82109),i=n(46916),o=n(31913),s=n(76530),a=n(60614),c=n(63061),u=n(79518),f=n(27674),l=n(58003),h=n(68880),d=n(98052),p=n(5112),g=n(97497),v=n(13383),b=s.PROPER,m=s.CONFIGURABLE,y=v.IteratorPrototype,w=v.BUGGY_SAFARI_ITERATORS,_=p("iterator"),j="keys",E="values",O="entries",S=function(){return this};t.exports=function(t,e,n,s,p,v,x){c(n,e,s);var A,T,C,I=function(t){if(t===p&&N)return N;if(!w&&t&&t in k)return k[t];switch(t){case j:case E:case O:return function(){return new n(this,t)}}return function(){return new n(this)}},R=e+" Iterator",L=!1,k=t.prototype,$=k[_]||k["@@iterator"]||p&&k[p],N=!w&&$||I(p),P="Array"===e&&k.entries||$;if(P&&(A=u(P.call(new t)))!==Object.prototype&&A.next&&(o||u(A)===y||(f?f(A,y):a(A[_])||d(A,_,S)),l(A,R,!0,!0),o&&(g[R]=S)),b&&p===E&&$&&$.name!==E&&(!o&&m?h(k,"name",E):(L=!0,N=function(){return i($,this)})),p)if(T={values:I(E),keys:v?N:I(j),entries:I(O)},x)for(C in T)(w||L||!(C in k))&&d(k,C,T[C]);else r({target:e,proto:!0,forced:w||L},T);return o&&!x||k[_]===N||d(k,_,N,{name:p}),g[e]=N,T}},13383:(t,e,n)=>{"use strict";var r,i,o,s=n(47293),a=n(60614),c=n(70111),u=n(70030),f=n(79518),l=n(98052),h=n(5112),d=n(31913),p=h("iterator"),g=!1;[].keys&&("next"in(o=[].keys())?(i=f(f(o)))!==Object.prototype&&(r=i):g=!0),!c(r)||s((function(){var t={};return r[p].call(t)!==t}))?r={}:d&&(r=u(r)),a(r[p])||l(r,p,(function(){return this})),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:g}},97497:t=>{"use strict";t.exports={}},26244:(t,e,n)=>{"use strict";var r=n(17466);t.exports=function(t){return r(t.length)}},56339:(t,e,n)=>{"use strict";var r=n(1702),i=n(47293),o=n(60614),s=n(92597),a=n(19781),c=n(76530).CONFIGURABLE,u=n(42788),f=n(29909),l=f.enforce,h=f.get,d=String,p=Object.defineProperty,g=r("".slice),v=r("".replace),b=r([].join),m=a&&!i((function(){return 8!==p((function(){}),"length",{value:8}).length})),y=String(String).split("String"),w=t.exports=function(t,e,n){"Symbol("===g(d(e),0,7)&&(e="["+v(d(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!s(t,"name")||c&&t.name!==e)&&(a?p(t,"name",{value:e,configurable:!0}):t.name=e),m&&n&&s(n,"arity")&&t.length!==n.arity&&p(t,"length",{value:n.arity});try{n&&s(n,"constructor")&&n.constructor?a&&p(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var r=l(t);return s(r,"source")||(r.source=b(y,"string"==typeof e?e:"")),t};Function.prototype.toString=w((function(){return o(this)&&h(this).source||u(this)}),"toString")},74758:t=>{"use strict";var e=Math.ceil,n=Math.floor;t.exports=Math.trunc||function(t){var r=+t;return(r>0?n:e)(r)}},21574:(t,e,n)=>{"use strict";var r=n(19781),i=n(1702),o=n(46916),s=n(47293),a=n(81956),c=n(25181),u=n(55296),f=n(47908),l=n(68361),h=Object.assign,d=Object.defineProperty,p=i([].concat);t.exports=!h||s((function(){if(r&&1!==h({b:1},h(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol("assign detection"),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach((function(t){e[t]=t})),7!==h({},t)[n]||a(h({},e)).join("")!==i}))?function(t,e){for(var n=f(t),i=arguments.length,s=1,h=c.f,d=u.f;i>s;)for(var g,v=l(arguments[s++]),b=h?p(a(v),h(v)):a(v),m=b.length,y=0;m>y;)g=b[y++],r&&!o(d,v,g)||(n[g]=v[g]);return n}:h},70030:(t,e,n)=>{"use strict";var r,i=n(19670),o=n(36048),s=n(80748),a=n(3501),c=n(60490),u=n(80317),f=n(6200),l="prototype",h="script",d=f("IE_PROTO"),p=function(){},g=function(t){return"<"+h+">"+t+"</"+h+">"},v=function(t){t.write(g("")),t.close();var e=t.parentWindow.Object;return t=null,e},b=function(){try{r=new ActiveXObject("htmlfile")}catch(t){}var t,e,n;b="undefined"!=typeof document?document.domain&&r?v(r):(e=u("iframe"),n="java"+h+":",e.style.display="none",c.appendChild(e),e.src=String(n),(t=e.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):v(r);for(var i=s.length;i--;)delete b[l][s[i]];return b()};a[d]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(p[l]=i(t),n=new p,p[l]=null,n[d]=t):n=b(),void 0===e?n:o.f(n,e)}},36048:(t,e,n)=>{"use strict";var r=n(19781),i=n(3353),o=n(3070),s=n(19670),a=n(45656),c=n(81956);e.f=r&&!i?Object.defineProperties:function(t,e){s(t);for(var n,r=a(e),i=c(e),u=i.length,f=0;u>f;)o.f(t,n=i[f++],r[n]);return t}},3070:(t,e,n)=>{"use strict";var r=n(19781),i=n(64664),o=n(3353),s=n(19670),a=n(34948),c=TypeError,u=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",h="configurable",d="writable";e.f=r?o?function(t,e,n){if(s(t),e=a(e),s(n),"function"==typeof t&&"prototype"===e&&"value"in n&&d in n&&!n[d]){var r=f(t,e);r&&r[d]&&(t[e]=n.value,n={configurable:h in n?n[h]:r[h],enumerable:l in n?n[l]:r[l],writable:!1})}return u(t,e,n)}:u:function(t,e,n){if(s(t),e=a(e),s(n),i)try{return u(t,e,n)}catch(t){}if("get"in n||"set"in n)throw new c("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},31236:(t,e,n)=>{"use strict";var r=n(19781),i=n(46916),o=n(55296),s=n(79114),a=n(45656),c=n(34948),u=n(92597),f=n(64664),l=Object.getOwnPropertyDescriptor;e.f=r?l:function(t,e){if(t=a(t),e=c(e),f)try{return l(t,e)}catch(t){}if(u(t,e))return s(!i(o.f,t,e),t[e])}},1156:(t,e,n)=>{"use strict";var r=n(84326),i=n(45656),o=n(8006).f,s=n(41589),a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return a&&"Window"===r(t)?function(t){try{return o(t)}catch(t){return s(a)}}(t):o(i(t))}},8006:(t,e,n)=>{"use strict";var r=n(16324),i=n(80748).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},25181:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},79518:(t,e,n)=>{"use strict";var r=n(92597),i=n(60614),o=n(47908),s=n(6200),a=n(49920),c=s("IE_PROTO"),u=Object,f=u.prototype;t.exports=a?u.getPrototypeOf:function(t){var e=o(t);if(r(e,c))return e[c];var n=e.constructor;return i(n)&&e instanceof n?n.prototype:e instanceof u?f:null}},47976:(t,e,n)=>{"use strict";var r=n(1702);t.exports=r({}.isPrototypeOf)},16324:(t,e,n)=>{"use strict";var r=n(1702),i=n(92597),o=n(45656),s=n(41318).indexOf,a=n(3501),c=r([].push);t.exports=function(t,e){var n,r=o(t),u=0,f=[];for(n in r)!i(a,n)&&i(r,n)&&c(f,n);for(;e.length>u;)i(r,n=e[u++])&&(~s(f,n)||c(f,n));return f}},81956:(t,e,n)=>{"use strict";var r=n(16324),i=n(80748);t.exports=Object.keys||function(t){return r(t,i)}},55296:(t,e)=>{"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,i=r&&!n.call({1:2},1);e.f=i?function(t){var e=r(this,t);return!!e&&e.enumerable}:n},27674:(t,e,n)=>{"use strict";var r=n(75668),i=n(19670),o=n(96077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=r(Object.prototype,"__proto__","set"))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return i(n),o(r),e?t(n,r):n.__proto__=r,n}}():void 0)},90288:(t,e,n)=>{"use strict";var r=n(51694),i=n(70648);t.exports=r?{}.toString:function(){return"[object "+i(this)+"]"}},92140:(t,e,n)=>{"use strict";var r=n(46916),i=n(60614),o=n(70111),s=TypeError;t.exports=function(t,e){var n,a;if("string"===e&&i(n=t.toString)&&!o(a=r(n,t)))return a;if(i(n=t.valueOf)&&!o(a=r(n,t)))return a;if("string"!==e&&i(n=t.toString)&&!o(a=r(n,t)))return a;throw new s("Can't convert object to primitive value")}},53887:(t,e,n)=>{"use strict";var r=n(35005),i=n(1702),o=n(8006),s=n(25181),a=n(19670),c=i([].concat);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=s.f;return n?c(e,n(t)):e}},40857:(t,e,n)=>{"use strict";var r=n(17854);t.exports=r},84488:(t,e,n)=>{"use strict";var r=n(68554),i=TypeError;t.exports=function(t){if(r(t))throw new i("Can't call method on "+t);return t}},58003:(t,e,n)=>{"use strict";var r=n(3070).f,i=n(92597),o=n(5112)("toStringTag");t.exports=function(t,e,n){t&&!n&&(t=t.prototype),t&&!i(t,o)&&r(t,o,{configurable:!0,value:e})}},6200:(t,e,n)=>{"use strict";var r=n(72309),i=n(69711),o=r("keys");t.exports=function(t){return o[t]||(o[t]=i(t))}},5465:(t,e,n)=>{"use strict";var r=n(17854),i=n(13072),o="__core-js_shared__",s=r[o]||i(o,{});t.exports=s},72309:(t,e,n)=>{"use strict";var r=n(31913),i=n(5465);(t.exports=function(t,e){return i[t]||(i[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.33.0",mode:r?"pure":"global",copyright:"Β© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE",source:"https://github.com/zloirock/core-js"})},28710:(t,e,n)=>{"use strict";var r=n(1702),i=n(19303),o=n(41340),s=n(84488),a=r("".charAt),c=r("".charCodeAt),u=r("".slice),f=function(t){return function(e,n){var r,f,l=o(s(e)),h=i(n),d=l.length;return h<0||h>=d?t?"":void 0:(r=c(l,h))<55296||r>56319||h+1===d||(f=c(l,h+1))<56320||f>57343?t?a(l,h):r:t?u(l,h,h+2):f-56320+(r-55296<<10)+65536}};t.exports={codeAt:f(!1),charAt:f(!0)}},53111:(t,e,n)=>{"use strict";var r=n(1702),i=n(84488),o=n(41340),s=n(81361),a=r("".replace),c=RegExp("^["+s+"]+"),u=RegExp("(^|[^"+s+"])["+s+"]+$"),f=function(t){return function(e){var n=o(i(e));return 1&t&&(n=a(n,c,"")),2&t&&(n=a(n,u,"$1")),n}};t.exports={start:f(1),end:f(2),trim:f(3)}},36293:(t,e,n)=>{"use strict";var r=n(7392),i=n(47293),o=n(17854).String;t.exports=!!Object.getOwnPropertySymbols&&!i((function(){var t=Symbol("symbol detection");return!o(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},56532:(t,e,n)=>{"use strict";var r=n(46916),i=n(35005),o=n(5112),s=n(98052);t.exports=function(){var t=i("Symbol"),e=t&&t.prototype,n=e&&e.valueOf,a=o("toPrimitive");e&&!e[a]&&s(e,a,(function(t){return r(n,this)}),{arity:1})}},2015:(t,e,n)=>{"use strict";var r=n(36293);t.exports=r&&!!Symbol.for&&!!Symbol.keyFor},50863:(t,e,n)=>{"use strict";var r=n(1702);t.exports=r(1..valueOf)},51400:(t,e,n)=>{"use strict";var r=n(19303),i=Math.max,o=Math.min;t.exports=function(t,e){var n=r(t);return n<0?i(n+e,0):o(n,e)}},45656:(t,e,n)=>{"use strict";var r=n(68361),i=n(84488);t.exports=function(t){return r(i(t))}},19303:(t,e,n)=>{"use strict";var r=n(74758);t.exports=function(t){var e=+t;return e!=e||0===e?0:r(e)}},17466:(t,e,n)=>{"use strict";var r=n(19303),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},47908:(t,e,n)=>{"use strict";var r=n(84488),i=Object;t.exports=function(t){return i(r(t))}},57593:(t,e,n)=>{"use strict";var r=n(46916),i=n(70111),o=n(52190),s=n(58173),a=n(92140),c=n(5112),u=TypeError,f=c("toPrimitive");t.exports=function(t,e){if(!i(t)||o(t))return t;var n,c=s(t,f);if(c){if(void 0===e&&(e="default"),n=r(c,t,e),!i(n)||o(n))return n;throw new u("Can't convert object to primitive value")}return void 0===e&&(e="number"),a(t,e)}},34948:(t,e,n)=>{"use strict";var r=n(57593),i=n(52190);t.exports=function(t){var e=r(t,"string");return i(e)?e:e+""}},51694:(t,e,n)=>{"use strict";var r={};r[n(5112)("toStringTag")]="z",t.exports="[object z]"===String(r)},41340:(t,e,n)=>{"use strict";var r=n(70648),i=String;t.exports=function(t){if("Symbol"===r(t))throw new TypeError("Cannot convert a Symbol value to a string");return i(t)}},66330:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},69711:(t,e,n)=>{"use strict";var r=n(1702),i=0,o=Math.random(),s=r(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+s(++i+o,36)}},43307:(t,e,n)=>{"use strict";var r=n(36293);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:(t,e,n)=>{"use strict";var r=n(19781),i=n(47293);t.exports=r&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},94811:(t,e,n)=>{"use strict";var r=n(17854),i=n(60614),o=r.WeakMap;t.exports=i(o)&&/native code/.test(String(o))},26800:(t,e,n)=>{"use strict";var r=n(40857),i=n(92597),o=n(6061),s=n(3070).f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});i(e,t)||s(e,t,{value:o.f(t)})}},6061:(t,e,n)=>{"use strict";var r=n(5112);e.f=r},5112:(t,e,n)=>{"use strict";var r=n(17854),i=n(72309),o=n(92597),s=n(69711),a=n(36293),c=n(43307),u=r.Symbol,f=i("wks"),l=c?u.for||u:u&&u.withoutSetter||s;t.exports=function(t){return o(f,t)||(f[t]=a&&o(u,t)?u[t]:l("Symbol."+t)),f[t]}},81361:t=>{"use strict";t.exports="\t\n\v\f\r Β αββββββ
ββββββ―βγ\u2028\u2029\ufeff"},66992:(t,e,n)=>{"use strict";var r=n(45656),i=n(51223),o=n(97497),s=n(29909),a=n(3070).f,c=n(51656),u=n(76178),f=n(31913),l=n(19781),h="Array Iterator",d=s.set,p=s.getterFor(h);t.exports=c(Array,"Array",(function(t,e){d(this,{type:h,target:r(t),index:0,kind:e})}),(function(){var t=p(this),e=t.target,n=t.kind,r=t.index++;if(!e||r>=e.length)return t.target=void 0,u(void 0,!0);switch(n){case"keys":return u(r,!1);case"values":return u(e[r],!1)}return u([r,e[r]],!1)}),"values");var g=o.Arguments=o.Array;if(i("keys"),i("values"),i("entries"),!f&&l&&"values"!==g.name)try{a(g,"name",{value:"values"})}catch(t){}},96078:(t,e,n)=>{"use strict";var r=n(92597),i=n(98052),o=n(38709),s=n(5112)("toPrimitive"),a=Date.prototype;r(a,s)||i(a,s,o)},38862:(t,e,n)=>{"use strict";var r=n(82109),i=n(35005),o=n(22104),s=n(46916),a=n(1702),c=n(47293),u=n(60614),f=n(52190),l=n(50206),h=n(88044),d=n(36293),p=String,g=i("JSON","stringify"),v=a(/./.exec),b=a("".charAt),m=a("".charCodeAt),y=a("".replace),w=a(1..toString),_=/[\uD800-\uDFFF]/g,j=/^[\uD800-\uDBFF]$/,E=/^[\uDC00-\uDFFF]$/,O=!d||c((function(){var t=i("Symbol")("stringify detection");return"[null]"!==g([t])||"{}"!==g({a:t})||"{}"!==g(Object(t))})),S=c((function(){return'"\\udf06\\ud834"'!==g("\udf06\ud834")||'"\\udead"'!==g("\udead")})),x=function(t,e){var n=l(arguments),r=h(e);if(u(r)||void 0!==t&&!f(t))return n[1]=function(t,e){if(u(r)&&(e=s(r,this,p(t),e)),!f(e))return e},o(g,null,n)},A=function(t,e,n){var r=b(n,e-1),i=b(n,e+1);return v(j,t)&&!v(E,i)||v(E,t)&&!v(j,r)?"\\u"+w(m(t,0),16):t};g&&r({target:"JSON",stat:!0,arity:3,forced:O||S},{stringify:function(t,e,n){var r=l(arguments),i=o(O?x:g,null,r);return S&&"string"==typeof i?y(i,_,A):i}})},9653:(t,e,n)=>{"use strict";var r=n(82109),i=n(31913),o=n(19781),s=n(17854),a=n(40857),c=n(1702),u=n(54705),f=n(92597),l=n(79587),h=n(47976),d=n(52190),p=n(57593),g=n(47293),v=n(8006).f,b=n(31236).f,m=n(3070).f,y=n(50863),w=n(53111).trim,_="Number",j=s[_],E=a[_],O=j.prototype,S=s.TypeError,x=c("".slice),A=c("".charCodeAt),T=function(t){var e,n,r,i,o,s,a,c,u=p(t,"number");if(d(u))throw new S("Cannot convert a Symbol value to a number");if("string"==typeof u&&u.length>2)if(u=w(u),43===(e=A(u,0))||45===e){if(88===(n=A(u,2))||120===n)return NaN}else if(48===e){switch(A(u,1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+u}for(s=(o=x(u,2)).length,a=0;a<s;a++)if((c=A(o,a))<48||c>i)return NaN;return parseInt(o,r)}return+u},C=u(_,!j(" 0o1")||!j("0b1")||j("+0x1")),I=function(t){var e,n=arguments.length<1?0:j(function(t){var e=p(t,"number");return"bigint"==typeof e?e:T(e)}(t));return h(O,e=this)&&g((function(){y(e)}))?l(Object(n),this,I):n};I.prototype=O,C&&!i&&(O.constructor=I),r({global:!0,constructor:!0,wrap:!0,forced:C},{Number:I});var R=function(t,e){for(var n,r=o?v(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),i=0;r.length>i;i++)f(e,n=r[i])&&!f(t,n)&&m(t,n,b(e,n))};i&&E&&R(a[_],E),(C||i)&&R(a[_],j)},19601:(t,e,n)=>{"use strict";var r=n(82109),i=n(21574);r({target:"Object",stat:!0,arity:2,forced:Object.assign!==i},{assign:i})},69070:(t,e,n)=>{"use strict";var r=n(82109),i=n(19781),o=n(3070).f;r({target:"Object",stat:!0,forced:Object.defineProperty!==o,sham:!i},{defineProperty:o})},29660:(t,e,n)=>{"use strict";var r=n(82109),i=n(36293),o=n(47293),s=n(25181),a=n(47908);r({target:"Object",stat:!0,forced:!i||o((function(){s.f(1)}))},{getOwnPropertySymbols:function(t){var e=s.f;return e?e(a(t)):[]}})},41539:(t,e,n)=>{"use strict";var r=n(51694),i=n(98052),o=n(90288);r||i(Object.prototype,"toString",o,{unsafe:!0})},78783:(t,e,n)=>{"use strict";var r=n(28710).charAt,i=n(41340),o=n(29909),s=n(51656),a=n(76178),c="String Iterator",u=o.set,f=o.getterFor(c);s(String,"String",(function(t){u(this,{type:c,string:i(t),index:0})}),(function(){var t,e=f(this),n=e.string,i=e.index;return i>=n.length?a(void 0,!0):(t=r(n,i),e.index+=t.length,a(t,!1))}))},4032:(t,e,n)=>{"use strict";var r=n(82109),i=n(17854),o=n(46916),s=n(1702),a=n(31913),c=n(19781),u=n(36293),f=n(47293),l=n(92597),h=n(47976),d=n(19670),p=n(45656),g=n(34948),v=n(41340),b=n(79114),m=n(70030),y=n(81956),w=n(8006),_=n(1156),j=n(25181),E=n(31236),O=n(3070),S=n(36048),x=n(55296),A=n(98052),T=n(47045),C=n(72309),I=n(6200),R=n(3501),L=n(69711),k=n(5112),$=n(6061),N=n(26800),P=n(56532),B=n(58003),U=n(29909),M=n(42092).forEach,D=I("hidden"),F="Symbol",G="prototype",V=U.set,q=U.getterFor(F),z=Object[G],H=i.Symbol,W=H&&H[G],X=i.RangeError,K=i.TypeError,J=i.QObject,Y=E.f,Z=O.f,Q=_.f,tt=x.f,et=s([].push),nt=C("symbols"),rt=C("op-symbols"),it=C("wks"),ot=!J||!J[G]||!J[G].findChild,st=function(t,e,n){var r=Y(z,e);r&&delete z[e],Z(t,e,n),r&&t!==z&&Z(z,e,r)},at=c&&f((function(){return 7!==m(Z({},"a",{get:function(){return Z(this,"a",{value:7}).a}})).a}))?st:Z,ct=function(t,e){var n=nt[t]=m(W);return V(n,{type:F,tag:t,description:e}),c||(n.description=e),n},ut=function(t,e,n){t===z&&ut(rt,e,n),d(t);var r=g(e);return d(n),l(nt,r)?(n.enumerable?(l(t,D)&&t[D][r]&&(t[D][r]=!1),n=m(n,{enumerable:b(0,!1)})):(l(t,D)||Z(t,D,b(1,{})),t[D][r]=!0),at(t,r,n)):Z(t,r,n)},ft=function(t,e){d(t);var n=p(e),r=y(n).concat(pt(n));return M(r,(function(e){c&&!o(lt,n,e)||ut(t,e,n[e])})),t},lt=function(t){var e=g(t),n=o(tt,this,e);return!(this===z&&l(nt,e)&&!l(rt,e))&&(!(n||!l(this,e)||!l(nt,e)||l(this,D)&&this[D][e])||n)},ht=function(t,e){var n=p(t),r=g(e);if(n!==z||!l(nt,r)||l(rt,r)){var i=Y(n,r);return!i||!l(nt,r)||l(n,D)&&n[D][r]||(i.enumerable=!0),i}},dt=function(t){var e=Q(p(t)),n=[];return M(e,(function(t){l(nt,t)||l(R,t)||et(n,t)})),n},pt=function(t){var e=t===z,n=Q(e?rt:p(t)),r=[];return M(n,(function(t){!l(nt,t)||e&&!l(z,t)||et(r,nt[t])})),r};u||(A(W=(H=function(){if(h(W,this))throw new K("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,e=L(t),n=function(t){this===z&&o(n,rt,t),l(this,D)&&l(this[D],e)&&(this[D][e]=!1);var r=b(1,t);try{at(this,e,r)}catch(t){if(!(t instanceof X))throw t;st(this,e,r)}};return c&&ot&&at(z,e,{configurable:!0,set:n}),ct(e,t)})[G],"toString",(function(){return q(this).tag})),A(H,"withoutSetter",(function(t){return ct(L(t),t)})),x.f=lt,O.f=ut,S.f=ft,E.f=ht,w.f=_.f=dt,j.f=pt,$.f=function(t){return ct(k(t),t)},c&&(T(W,"description",{configurable:!0,get:function(){return q(this).description}}),a||A(z,"propertyIsEnumerable",lt,{unsafe:!0}))),r({global:!0,constructor:!0,wrap:!0,forced:!u,sham:!u},{Symbol:H}),M(y(it),(function(t){N(t)})),r({target:F,stat:!0,forced:!u},{useSetter:function(){ot=!0},useSimple:function(){ot=!1}}),r({target:"Object",stat:!0,forced:!u,sham:!c},{create:function(t,e){return void 0===e?m(t):ft(m(t),e)},defineProperty:ut,defineProperties:ft,getOwnPropertyDescriptor:ht}),r({target:"Object",stat:!0,forced:!u},{getOwnPropertyNames:dt}),P(),B(H,F),R[D]=!0},41817:(t,e,n)=>{"use strict";var r=n(82109),i=n(19781),o=n(17854),s=n(1702),a=n(92597),c=n(60614),u=n(47976),f=n(41340),l=n(47045),h=n(99920),d=o.Symbol,p=d&&d.prototype;if(i&&c(d)&&(!("description"in p)||void 0!==d().description)){var g={},v=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:f(arguments[0]),e=u(p,this)?new d(t):void 0===t?d():d(t);return""===t&&(g[e]=!0),e};h(v,d),v.prototype=p,p.constructor=v;var b="Symbol(description detection)"===String(d("description detection")),m=s(p.valueOf),y=s(p.toString),w=/^Symbol\((.*)\)[^)]+$/,_=s("".replace),j=s("".slice);l(p,"description",{configurable:!0,get:function(){var t=m(this);if(a(g,t))return"";var e=y(t),n=b?j(e,7,-1):_(e,w,"$1");return""===n?void 0:n}}),r({global:!0,constructor:!0,forced:!0},{Symbol:v})}},40763:(t,e,n)=>{"use strict";var r=n(82109),i=n(35005),o=n(92597),s=n(41340),a=n(72309),c=n(2015),u=a("string-to-symbol-registry"),f=a("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!c},{for:function(t){var e=s(t);if(o(u,e))return u[e];var n=i("Symbol")(e);return u[e]=n,f[n]=e,n}})},32165:(t,e,n)=>{"use strict";n(26800)("iterator")},82526:(t,e,n)=>{"use strict";n(4032),n(40763),n(26620),n(38862),n(29660)},26620:(t,e,n)=>{"use strict";var r=n(82109),i=n(92597),o=n(52190),s=n(66330),a=n(72309),c=n(2015),u=a("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!c},{keyFor:function(t){if(!o(t))throw new TypeError(s(t)+" is not a symbol");if(i(u,t))return u[t]}})},96649:(t,e,n)=>{"use strict";var r=n(26800),i=n(56532);r("toPrimitive"),i()},33948:(t,e,n)=>{"use strict";var r=n(17854),i=n(48324),o=n(98509),s=n(66992),a=n(68880),c=n(5112),u=c("iterator"),f=c("toStringTag"),l=s.values,h=function(t,e){if(t){if(t[u]!==l)try{a(t,u,l)}catch(e){t[u]=l}if(t[f]||a(t,f,e),i[e])for(var n in s)if(t[n]!==s[n])try{a(t,n,s[n])}catch(e){t[n]=s[n]}}};for(var d in i)h(r[d]&&r[d].prototype,d);h(o,"DOMTokenList")},20296:t=>{function e(t,e,n){var r,i,o,s,a;function c(){var u=Date.now()-s;u<e&&u>=0?r=setTimeout(c,e-u):(r=null,n||(a=t.apply(o,i),o=i=null))}null==e&&(e=100);var u=function(){o=this,i=arguments,s=Date.now();var u=n&&!r;return r||(r=setTimeout(c,e)),u&&(a=t.apply(o,i),o=i=null),a};return u.clear=function(){r&&(clearTimeout(r),r=null)},u.flush=function(){r&&(a=t.apply(o,i),o=i=null,clearTimeout(r),r=null)},u}e.debounce=e,t.exports=e},80645:(t,e)=>{e.read=function(t,e,n,r,i){var o,s,a=8*i-r-1,c=(1<<a)-1,u=c>>1,f=-7,l=n?i-1:0,h=n?-1:1,d=t[e+l];for(l+=h,o=d&(1<<-f)-1,d>>=-f,f+=a;f>0;o=256*o+t[e+l],l+=h,f-=8);for(s=o&(1<<-f)-1,o>>=-f,f+=r;f>0;s=256*s+t[e+l],l+=h,f-=8);if(0===o)o=1-u;else{if(o===c)return s?NaN:1/0*(d?-1:1);s+=Math.pow(2,r),o-=u}return(d?-1:1)*s*Math.pow(2,o-r)},e.write=function(t,e,n,r,i,o){var s,a,c,u=8*o-i-1,f=(1<<u)-1,l=f>>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,d=r?0:o-1,p=r?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=f):(s=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-s))<1&&(s--,c*=2),(e+=s+l>=1?h/c:h*Math.pow(2,1-l))*c>=2&&(s++,c/=2),s+l>=f?(a=0,s=f):s+l>=1?(a=(e*c-1)*Math.pow(2,i),s+=l):(a=e*Math.pow(2,l-1)*Math.pow(2,i),s=0));i>=8;t[n+d]=255&a,d+=p,a/=256,i-=8);for(s=s<<i|a,u+=i;u>0;t[n+d]=255&s,d+=p,s/=256,u-=8);t[n+d-p]|=128*g}},23085:(t,e,n)=>{"use strict";const r=n(79742),i=n(80645),o="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;e.lW=c,e.h2=50;const s=2147483647;function a(t){if(t>s)throw new RangeError('The value "'+t+'" is invalid for option "size"');const e=new Uint8Array(t);return Object.setPrototypeOf(e,c.prototype),e}function c(t,e,n){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return l(t)}return u(t,e,n)}function u(t,e,n){if("string"==typeof t)return function(t,e){"string"==typeof e&&""!==e||(e="utf8");if(!c.isEncoding(e))throw new TypeError("Unknown encoding: "+e);const n=0|g(t,e);let r=a(n);const i=r.write(t,e);i!==n&&(r=r.slice(0,i));return r}(t,e);if(ArrayBuffer.isView(t))return function(t){if(K(t,Uint8Array)){const e=new Uint8Array(t);return d(e.buffer,e.byteOffset,e.byteLength)}return h(t)}(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(K(t,ArrayBuffer)||t&&K(t.buffer,ArrayBuffer))return d(t,e,n);if("undefined"!=typeof SharedArrayBuffer&&(K(t,SharedArrayBuffer)||t&&K(t.buffer,SharedArrayBuffer)))return d(t,e,n);if("number"==typeof t)throw new TypeError('The "value" argument must not be of type number. Received type number');const r=t.valueOf&&t.valueOf();if(null!=r&&r!==t)return c.from(r,e,n);const i=function(t){if(c.isBuffer(t)){const e=0|p(t.length),n=a(e);return 0===n.length||t.copy(n,0,0,e),n}if(void 0!==t.length)return"number"!=typeof t.length||J(t.length)?a(0):h(t);if("Buffer"===t.type&&Array.isArray(t.data))return h(t.data)}(t);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof t[Symbol.toPrimitive])return c.from(t[Symbol.toPrimitive]("string"),e,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}function f(t){if("number"!=typeof t)throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function l(t){return f(t),a(t<0?0:0|p(t))}function h(t){const e=t.length<0?0:0|p(t.length),n=a(e);for(let r=0;r<e;r+=1)n[r]=255&t[r];return n}function d(t,e,n){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(n||0))throw new RangeError('"length" is outside of buffer bounds');let r;return r=void 0===e&&void 0===n?new Uint8Array(t):void 0===n?new Uint8Array(t,e):new Uint8Array(t,e,n),Object.setPrototypeOf(r,c.prototype),r}function p(t){if(t>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|t}function g(t,e){if(c.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||K(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);const n=t.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;let i=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return H(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return W(t).length;default:if(i)return r?-1:H(t).length;e=(""+e).toLowerCase(),i=!0}}function v(t,e,n){let r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return I(this,e,n);case"utf8":case"utf-8":return x(this,e,n);case"ascii":return T(this,e,n);case"latin1":case"binary":return C(this,e,n);case"base64":return S(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return R(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}function b(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function m(t,e,n,r,i){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),J(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof e&&(e=c.from(e,r)),c.isBuffer(e))return 0===e.length?-1:y(t,e,n,r,i);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):y(t,[e],n,r,i);throw new TypeError("val must be string, number or Buffer")}function y(t,e,n,r,i){let o,s=1,a=t.length,c=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;s=2,a/=2,c/=2,n/=2}function u(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(i){let r=-1;for(o=n;o<a;o++)if(u(t,o)===u(e,-1===r?0:o-r)){if(-1===r&&(r=o),o-r+1===c)return r*s}else-1!==r&&(o-=o-r),r=-1}else for(n+c>a&&(n=a-c),o=n;o>=0;o--){let n=!0;for(let r=0;r<c;r++)if(u(t,o+r)!==u(e,r)){n=!1;break}if(n)return o}return-1}function w(t,e,n,r){n=Number(n)||0;const i=t.length-n;r?(r=Number(r))>i&&(r=i):r=i;const o=e.length;let s;for(r>o/2&&(r=o/2),s=0;s<r;++s){const r=parseInt(e.substr(2*s,2),16);if(J(r))return s;t[n+s]=r}return s}function _(t,e,n,r){return X(H(e,t.length-n),t,n,r)}function j(t,e,n,r){return X(function(t){const e=[];for(let n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}(e),t,n,r)}function E(t,e,n,r){return X(W(e),t,n,r)}function O(t,e,n,r){return X(function(t,e){let n,r,i;const o=[];for(let s=0;s<t.length&&!((e-=2)<0);++s)n=t.charCodeAt(s),r=n>>8,i=n%256,o.push(i),o.push(r);return o}(e,t.length-n),t,n,r)}function S(t,e,n){return 0===e&&n===t.length?r.fromByteArray(t):r.fromByteArray(t.slice(e,n))}function x(t,e,n){n=Math.min(t.length,n);const r=[];let i=e;for(;i<n;){const e=t[i];let o=null,s=e>239?4:e>223?3:e>191?2:1;if(i+s<=n){let n,r,a,c;switch(s){case 1:e<128&&(o=e);break;case 2:n=t[i+1],128==(192&n)&&(c=(31&e)<<6|63&n,c>127&&(o=c));break;case 3:n=t[i+1],r=t[i+2],128==(192&n)&&128==(192&r)&&(c=(15&e)<<12|(63&n)<<6|63&r,c>2047&&(c<55296||c>57343)&&(o=c));break;case 4:n=t[i+1],r=t[i+2],a=t[i+3],128==(192&n)&&128==(192&r)&&128==(192&a)&&(c=(15&e)<<18|(63&n)<<12|(63&r)<<6|63&a,c>65535&&c<1114112&&(o=c))}}null===o?(o=65533,s=1):o>65535&&(o-=65536,r.push(o>>>10&1023|55296),o=56320|1023&o),r.push(o),i+=s}return function(t){const e=t.length;if(e<=A)return String.fromCharCode.apply(String,t);let n="",r=0;for(;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=A));return n}(r)}c.TYPED_ARRAY_SUPPORT=function(){try{const t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),c.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(c.prototype,"parent",{enumerable:!0,get:function(){if(c.isBuffer(this))return this.buffer}}),Object.defineProperty(c.prototype,"offset",{enumerable:!0,get:function(){if(c.isBuffer(this))return this.byteOffset}}),c.poolSize=8192,c.from=function(t,e,n){return u(t,e,n)},Object.setPrototypeOf(c.prototype,Uint8Array.prototype),Object.setPrototypeOf(c,Uint8Array),c.alloc=function(t,e,n){return function(t,e,n){return f(t),t<=0?a(t):void 0!==e?"string"==typeof n?a(t).fill(e,n):a(t).fill(e):a(t)}(t,e,n)},c.allocUnsafe=function(t){return l(t)},c.allocUnsafeSlow=function(t){return l(t)},c.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==c.prototype},c.compare=function(t,e){if(K(t,Uint8Array)&&(t=c.from(t,t.offset,t.byteLength)),K(e,Uint8Array)&&(e=c.from(e,e.offset,e.byteLength)),!c.isBuffer(t)||!c.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;let n=t.length,r=e.length;for(let i=0,o=Math.min(n,r);i<o;++i)if(t[i]!==e[i]){n=t[i],r=e[i];break}return n<r?-1:r<n?1:0},c.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},c.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return c.alloc(0);let n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;const r=c.allocUnsafe(e);let i=0;for(n=0;n<t.length;++n){let e=t[n];if(K(e,Uint8Array))i+e.length>r.length?(c.isBuffer(e)||(e=c.from(e)),e.copy(r,i)):Uint8Array.prototype.set.call(r,e,i);else{if(!c.isBuffer(e))throw new TypeError('"list" argument must be an Array of Buffers');e.copy(r,i)}i+=e.length}return r},c.byteLength=g,c.prototype._isBuffer=!0,c.prototype.swap16=function(){const t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;e<t;e+=2)b(this,e,e+1);return this},c.prototype.swap32=function(){const t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let e=0;e<t;e+=4)b(this,e,e+3),b(this,e+1,e+2);return this},c.prototype.swap64=function(){const t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let e=0;e<t;e+=8)b(this,e,e+7),b(this,e+1,e+6),b(this,e+2,e+5),b(this,e+3,e+4);return this},c.prototype.toString=function(){const t=this.length;return 0===t?"":0===arguments.length?x(this,0,t):v.apply(this,arguments)},c.prototype.toLocaleString=c.prototype.toString,c.prototype.equals=function(t){if(!c.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===c.compare(this,t)},c.prototype.inspect=function(){let t="";const n=e.h2;return t=this.toString("hex",0,n).replace(/(.{2})/g,"$1 ").trim(),this.length>n&&(t+=" ... "),"<Buffer "+t+">"},o&&(c.prototype[o]=c.prototype.inspect),c.prototype.compare=function(t,e,n,r,i){if(K(t,Uint8Array)&&(t=c.from(t,t.offset,t.byteLength)),!c.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),e<0||n>t.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&e>=n)return 0;if(r>=i)return-1;if(e>=n)return 1;if(this===t)return 0;let o=(i>>>=0)-(r>>>=0),s=(n>>>=0)-(e>>>=0);const a=Math.min(o,s),u=this.slice(r,i),f=t.slice(e,n);for(let t=0;t<a;++t)if(u[t]!==f[t]){o=u[t],s=f[t];break}return o<s?-1:s<o?1:0},c.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},c.prototype.indexOf=function(t,e,n){return m(this,t,e,n,!0)},c.prototype.lastIndexOf=function(t,e,n){return m(this,t,e,n,!1)},c.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e>>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}const i=this.length-e;if((void 0===n||n>i)&&(n=i),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");let o=!1;for(;;)switch(r){case"hex":return w(this,t,e,n);case"utf8":case"utf-8":return _(this,t,e,n);case"ascii":case"latin1":case"binary":return j(this,t,e,n);case"base64":return E(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const A=4096;function T(t,e,n){let r="";n=Math.min(t.length,n);for(let i=e;i<n;++i)r+=String.fromCharCode(127&t[i]);return r}function C(t,e,n){let r="";n=Math.min(t.length,n);for(let i=e;i<n;++i)r+=String.fromCharCode(t[i]);return r}function I(t,e,n){const r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);let i="";for(let r=e;r<n;++r)i+=Y[t[r]];return i}function R(t,e,n){const r=t.slice(e,n);let i="";for(let t=0;t<r.length-1;t+=2)i+=String.fromCharCode(r[t]+256*r[t+1]);return i}function L(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function k(t,e,n,r,i,o){if(!c.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function $(t,e,n,r,i){G(e,r,i,t,n,7);let o=Number(e&BigInt(4294967295));t[n++]=o,o>>=8,t[n++]=o,o>>=8,t[n++]=o,o>>=8,t[n++]=o;let s=Number(e>>BigInt(32)&BigInt(4294967295));return t[n++]=s,s>>=8,t[n++]=s,s>>=8,t[n++]=s,s>>=8,t[n++]=s,n}function N(t,e,n,r,i){G(e,r,i,t,n,7);let o=Number(e&BigInt(4294967295));t[n+7]=o,o>>=8,t[n+6]=o,o>>=8,t[n+5]=o,o>>=8,t[n+4]=o;let s=Number(e>>BigInt(32)&BigInt(4294967295));return t[n+3]=s,s>>=8,t[n+2]=s,s>>=8,t[n+1]=s,s>>=8,t[n]=s,n+8}function P(t,e,n,r,i,o){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function B(t,e,n,r,o){return e=+e,n>>>=0,o||P(t,0,n,4),i.write(t,e,n,r,23,4),n+4}function U(t,e,n,r,o){return e=+e,n>>>=0,o||P(t,0,n,8),i.write(t,e,n,r,52,8),n+8}c.prototype.slice=function(t,e){const n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);const r=this.subarray(t,e);return Object.setPrototypeOf(r,c.prototype),r},c.prototype.readUintLE=c.prototype.readUIntLE=function(t,e,n){t>>>=0,e>>>=0,n||L(t,e,this.length);let r=this[t],i=1,o=0;for(;++o<e&&(i*=256);)r+=this[t+o]*i;return r},c.prototype.readUintBE=c.prototype.readUIntBE=function(t,e,n){t>>>=0,e>>>=0,n||L(t,e,this.length);let r=this[t+--e],i=1;for(;e>0&&(i*=256);)r+=this[t+--e]*i;return r},c.prototype.readUint8=c.prototype.readUInt8=function(t,e){return t>>>=0,e||L(t,1,this.length),this[t]},c.prototype.readUint16LE=c.prototype.readUInt16LE=function(t,e){return t>>>=0,e||L(t,2,this.length),this[t]|this[t+1]<<8},c.prototype.readUint16BE=c.prototype.readUInt16BE=function(t,e){return t>>>=0,e||L(t,2,this.length),this[t]<<8|this[t+1]},c.prototype.readUint32LE=c.prototype.readUInt32LE=function(t,e){return t>>>=0,e||L(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},c.prototype.readUint32BE=c.prototype.readUInt32BE=function(t,e){return t>>>=0,e||L(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},c.prototype.readBigUInt64LE=Z((function(t){V(t>>>=0,"offset");const e=this[t],n=this[t+7];void 0!==e&&void 0!==n||q(t,this.length-8);const r=e+256*this[++t]+65536*this[++t]+this[++t]*2**24,i=this[++t]+256*this[++t]+65536*this[++t]+n*2**24;return BigInt(r)+(BigInt(i)<<BigInt(32))})),c.prototype.readBigUInt64BE=Z((function(t){V(t>>>=0,"offset");const e=this[t],n=this[t+7];void 0!==e&&void 0!==n||q(t,this.length-8);const r=e*2**24+65536*this[++t]+256*this[++t]+this[++t],i=this[++t]*2**24+65536*this[++t]+256*this[++t]+n;return(BigInt(r)<<BigInt(32))+BigInt(i)})),c.prototype.readIntLE=function(t,e,n){t>>>=0,e>>>=0,n||L(t,e,this.length);let r=this[t],i=1,o=0;for(;++o<e&&(i*=256);)r+=this[t+o]*i;return i*=128,r>=i&&(r-=Math.pow(2,8*e)),r},c.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||L(t,e,this.length);let r=e,i=1,o=this[t+--r];for(;r>0&&(i*=256);)o+=this[t+--r]*i;return i*=128,o>=i&&(o-=Math.pow(2,8*e)),o},c.prototype.readInt8=function(t,e){return t>>>=0,e||L(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},c.prototype.readInt16LE=function(t,e){t>>>=0,e||L(t,2,this.length);const n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt16BE=function(t,e){t>>>=0,e||L(t,2,this.length);const n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt32LE=function(t,e){return t>>>=0,e||L(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},c.prototype.readInt32BE=function(t,e){return t>>>=0,e||L(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},c.prototype.readBigInt64LE=Z((function(t){V(t>>>=0,"offset");const e=this[t],n=this[t+7];void 0!==e&&void 0!==n||q(t,this.length-8);const r=this[t+4]+256*this[t+5]+65536*this[t+6]+(n<<24);return(BigInt(r)<<BigInt(32))+BigInt(e+256*this[++t]+65536*this[++t]+this[++t]*2**24)})),c.prototype.readBigInt64BE=Z((function(t){V(t>>>=0,"offset");const e=this[t],n=this[t+7];void 0!==e&&void 0!==n||q(t,this.length-8);const r=(e<<24)+65536*this[++t]+256*this[++t]+this[++t];return(BigInt(r)<<BigInt(32))+BigInt(this[++t]*2**24+65536*this[++t]+256*this[++t]+n)})),c.prototype.readFloatLE=function(t,e){return t>>>=0,e||L(t,4,this.length),i.read(this,t,!0,23,4)},c.prototype.readFloatBE=function(t,e){return t>>>=0,e||L(t,4,this.length),i.read(this,t,!1,23,4)},c.prototype.readDoubleLE=function(t,e){return t>>>=0,e||L(t,8,this.length),i.read(this,t,!0,52,8)},c.prototype.readDoubleBE=function(t,e){return t>>>=0,e||L(t,8,this.length),i.read(this,t,!1,52,8)},c.prototype.writeUintLE=c.prototype.writeUIntLE=function(t,e,n,r){if(t=+t,e>>>=0,n>>>=0,!r){k(this,t,e,n,Math.pow(2,8*n)-1,0)}let i=1,o=0;for(this[e]=255&t;++o<n&&(i*=256);)this[e+o]=t/i&255;return e+n},c.prototype.writeUintBE=c.prototype.writeUIntBE=function(t,e,n,r){if(t=+t,e>>>=0,n>>>=0,!r){k(this,t,e,n,Math.pow(2,8*n)-1,0)}let i=n-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+n},c.prototype.writeUint8=c.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,1,255,0),this[e]=255&t,e+1},c.prototype.writeUint16LE=c.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},c.prototype.writeUint16BE=c.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},c.prototype.writeUint32LE=c.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},c.prototype.writeUint32BE=c.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},c.prototype.writeBigUInt64LE=Z((function(t,e=0){return $(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))})),c.prototype.writeBigUInt64BE=Z((function(t,e=0){return N(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))})),c.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e>>>=0,!r){const r=Math.pow(2,8*n-1);k(this,t,e,n,r-1,-r)}let i=0,o=1,s=0;for(this[e]=255&t;++i<n&&(o*=256);)t<0&&0===s&&0!==this[e+i-1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+n},c.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e>>>=0,!r){const r=Math.pow(2,8*n-1);k(this,t,e,n,r-1,-r)}let i=n-1,o=1,s=0;for(this[e+i]=255&t;--i>=0&&(o*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/o>>0)-s&255;return e+n},c.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},c.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},c.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},c.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},c.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||k(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},c.prototype.writeBigInt64LE=Z((function(t,e=0){return $(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),c.prototype.writeBigInt64BE=Z((function(t,e=0){return N(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),c.prototype.writeFloatLE=function(t,e,n){return B(this,t,e,!0,n)},c.prototype.writeFloatBE=function(t,e,n){return B(this,t,e,!1,n)},c.prototype.writeDoubleLE=function(t,e,n){return U(this,t,e,!0,n)},c.prototype.writeDoubleBE=function(t,e,n){return U(this,t,e,!1,n)},c.prototype.copy=function(t,e,n,r){if(!c.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);const i=r-n;return this===t&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(e,n,r):Uint8Array.prototype.set.call(t,this.subarray(n,r),e),i},c.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!c.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===t.length){const e=t.charCodeAt(0);("utf8"===r&&e<128||"latin1"===r)&&(t=e)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;let i;if(e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(i=e;i<n;++i)this[i]=t;else{const o=c.isBuffer(t)?t:c.from(t,r),s=o.length;if(0===s)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(i=0;i<n-e;++i)this[i+e]=o[i%s]}return this};const M={};function D(t,e,n){M[t]=class extends n{constructor(){super(),Object.defineProperty(this,"message",{value:e.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${t}]`,this.stack,delete this.name}get code(){return t}set code(t){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:t,writable:!0})}toString(){return`${this.name} [${t}]: ${this.message}`}}}function F(t){let e="",n=t.length;const r="-"===t[0]?1:0;for(;n>=r+4;n-=3)e=`_${t.slice(n-3,n)}${e}`;return`${t.slice(0,n)}${e}`}function G(t,e,n,r,i,o){if(t>n||t<e){const r="bigint"==typeof e?"n":"";let i;throw i=o>3?0===e||e===BigInt(0)?`>= 0${r} and < 2${r} ** ${8*(o+1)}${r}`:`>= -(2${r} ** ${8*(o+1)-1}${r}) and < 2 ** ${8*(o+1)-1}${r}`:`>= ${e}${r} and <= ${n}${r}`,new M.ERR_OUT_OF_RANGE("value",i,t)}!function(t,e,n){V(e,"offset"),void 0!==t[e]&&void 0!==t[e+n]||q(e,t.length-(n+1))}(r,i,o)}function V(t,e){if("number"!=typeof t)throw new M.ERR_INVALID_ARG_TYPE(e,"number",t)}function q(t,e,n){if(Math.floor(t)!==t)throw V(t,n),new M.ERR_OUT_OF_RANGE(n||"offset","an integer",t);if(e<0)throw new M.ERR_BUFFER_OUT_OF_BOUNDS;throw new M.ERR_OUT_OF_RANGE(n||"offset",`>= ${n?1:0} and <= ${e}`,t)}D("ERR_BUFFER_OUT_OF_BOUNDS",(function(t){return t?`${t} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"}),RangeError),D("ERR_INVALID_ARG_TYPE",(function(t,e){return`The "${t}" argument must be of type number. Received type ${typeof e}`}),TypeError),D("ERR_OUT_OF_RANGE",(function(t,e,n){let r=`The value of "${t}" is out of range.`,i=n;return Number.isInteger(n)&&Math.abs(n)>2**32?i=F(String(n)):"bigint"==typeof n&&(i=String(n),(n>BigInt(2)**BigInt(32)||n<-(BigInt(2)**BigInt(32)))&&(i=F(i)),i+="n"),r+=` It must be ${e}. Received ${i}`,r}),RangeError);const z=/[^+/0-9A-Za-z-_]/g;function H(t,e){let n;e=e||1/0;const r=t.length;let i=null;const o=[];for(let s=0;s<r;++s){if(n=t.charCodeAt(s),n>55295&&n<57344){if(!i){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===r){(e-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function W(t){return r.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(z,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function X(t,e,n,r){let i;for(i=0;i<r&&!(i+n>=e.length||i>=t.length);++i)e[i+n]=t[i];return i}function K(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function J(t){return t!=t}const Y=function(){const t="0123456789abcdef",e=new Array(256);for(let n=0;n<16;++n){const r=16*n;for(let i=0;i<16;++i)e[r+i]=t[n]+t[i]}return e}();function Z(t){return"undefined"==typeof BigInt?Q:t}function Q(){throw new Error("BigInt not supported")}},34155:t=>{var e,n,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(t){if(e===setTimeout)return setTimeout(t,0);if((e===i||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(n){try{return e.call(null,t,0)}catch(n){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:i}catch(t){e=i}try{n="function"==typeof clearTimeout?clearTimeout:o}catch(t){n=o}}();var a,c=[],u=!1,f=-1;function l(){u&&a&&(u=!1,a.length?c=a.concat(c):f=-1,c.length&&h())}function h(){if(!u){var t=s(l);u=!0;for(var e=c.length;e;){for(a=c,c=[];++f<e;)a&&a[f].run();f=-1,e=c.length}a=null,u=!1,function(t){if(n===clearTimeout)return clearTimeout(t);if((n===o||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(t);try{return n(t)}catch(e){try{return n.call(null,t)}catch(e){return n.call(this,t)}}}(t)}}function d(t,e){this.fun=t,this.array=e}function p(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];c.push(new d(t,e)),1!==c.length||u||s(h)},d.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=p,r.addListener=p,r.once=p,r.off=p,r.removeListener=p,r.removeAllListeners=p,r.emit=p,r.prependListener=p,r.prependOnceListener=p,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},20144:(t,e,n)=>{"use strict";n.r(e),n.d(e,{EffectScope:()=>Oe,computed:()=>he,customRef:()=>re,default:()=>fi,defineAsyncComponent:()=>Dn,defineComponent:()=>nr,del:()=>Bt,effectScope:()=>Se,getCurrentInstance:()=>dt,getCurrentScope:()=>xe,h:()=>En,inject:()=>Ie,isProxy:()=>zt,isReactive:()=>Gt,isReadonly:()=>qt,isRef:()=>Kt,isShallow:()=>Vt,markRaw:()=>Wt,mergeDefaults:()=>gn,nextTick:()=>Bn,onActivated:()=>Xn,onBeforeMount:()=>Gn,onBeforeUnmount:()=>Hn,onBeforeUpdate:()=>qn,onDeactivated:()=>Kn,onErrorCaptured:()=>tr,onMounted:()=>Vn,onRenderTracked:()=>Yn,onRenderTriggered:()=>Zn,onScopeDispose:()=>Ae,onServerPrefetch:()=>Jn,onUnmounted:()=>Wn,onUpdated:()=>zn,provide:()=>Te,proxyRefs:()=>ee,reactive:()=>Mt,readonly:()=>ce,ref:()=>Jt,set:()=>Pt,shallowReactive:()=>Dt,shallowReadonly:()=>le,shallowRef:()=>Yt,toRaw:()=>Ht,toRef:()=>oe,toRefs:()=>ie,triggerRef:()=>Qt,unref:()=>te,useAttrs:()=>hn,useCssModule:()=>Un,useCssVars:()=>Mn,useListeners:()=>dn,useSlots:()=>ln,version:()=>er,watch:()=>je,watchEffect:()=>be,watchPostEffect:()=>me,watchSyncEffect:()=>ye});var r=Object.freeze({}),i=Array.isArray;function o(t){return null==t}function s(t){return null!=t}function a(t){return!0===t}function c(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function u(t){return"function"==typeof t}function f(t){return null!==t&&"object"==typeof t}var l=Object.prototype.toString;function h(t){return"[object Object]"===l.call(t)}function d(t){return"[object RegExp]"===l.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function g(t){return s(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||h(t)&&t.toString===l?JSON.stringify(t,b,2):String(t)}function b(t,e){return e&&e.__v_isRef?e.value:e}function m(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i<r.length;i++)n[r[i]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}y("slot,component",!0);var w=y("key,ref,slot,slot-scope,is");function _(t,e){var n=t.length;if(n){if(e===t[n-1])return void(t.length=n-1);var r=t.indexOf(e);if(r>-1)return t.splice(r,1)}}var j=Object.prototype.hasOwnProperty;function E(t,e){return j.call(t,e)}function O(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var S=/-(\w)/g,x=O((function(t){return t.replace(S,(function(t,e){return e?e.toUpperCase():""}))})),A=O((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),T=/\B([A-Z])/g,C=O((function(t){return t.replace(T,"-$1").toLowerCase()}));var I=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function R(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function L(t,e){for(var n in e)t[n]=e[n];return t}function k(t){for(var e={},n=0;n<t.length;n++)t[n]&&L(e,t[n]);return e}function $(t,e,n){}var N=function(t,e,n){return!1},P=function(t){return t};function B(t,e){if(t===e)return!0;var n=f(t),r=f(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var i=Array.isArray(t),o=Array.isArray(e);if(i&&o)return t.length===e.length&&t.every((function(t,n){return B(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(i||o)return!1;var s=Object.keys(t),a=Object.keys(e);return s.length===a.length&&s.every((function(n){return B(t[n],e[n])}))}catch(t){return!1}}function U(t,e){for(var n=0;n<t.length;n++)if(B(t[n],e))return n;return-1}function M(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}function D(t,e){return t===e?0===t&&1/t!=1/e:t==t||e==e}var F="data-server-rendered",G=["component","directive","filter"],V=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],q={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:N,isReservedAttr:N,isUnknownElement:N,getTagNamespace:$,parsePlatformTagName:P,mustUseProp:N,async:!0,_lifecycleHooks:V},z=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function H(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function W(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var X=new RegExp("[^".concat(z.source,".$_\\d]"));var K="__proto__"in{},J="undefined"!=typeof window,Y=J&&window.navigator.userAgent.toLowerCase(),Z=Y&&/msie|trident/.test(Y),Q=Y&&Y.indexOf("msie 9.0")>0,tt=Y&&Y.indexOf("edge/")>0;Y&&Y.indexOf("android");var et=Y&&/iphone|ipad|ipod|ios/.test(Y);Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y);var nt,rt=Y&&Y.match(/firefox\/(\d+)/),it={}.watch,ot=!1;if(J)try{var st={};Object.defineProperty(st,"passive",{get:function(){ot=!0}}),window.addEventListener("test-passive",null,st)}catch(t){}var at=function(){return void 0===nt&&(nt=!J&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),nt},ct=J&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ut(t){return"function"==typeof t&&/native code/.test(t.toString())}var ft,lt="undefined"!=typeof Symbol&&ut(Symbol)&&"undefined"!=typeof Reflect&&ut(Reflect.ownKeys);ft="undefined"!=typeof Set&&ut(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ht=null;function dt(){return ht&&{proxy:ht}}function pt(t){void 0===t&&(t=null),t||ht&&ht._scope.off(),ht=t,t&&t._scope.on()}var gt=function(){function t(t,e,n,r,i,o,s,a){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=i,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=s,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=a,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),vt=function(t){void 0===t&&(t="");var e=new gt;return e.text=t,e.isComment=!0,e};function bt(t){return new gt(void 0,void 0,void 0,String(t))}function mt(t){var e=new gt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}"function"==typeof SuppressedError&&SuppressedError;var yt=0,wt=[],_t=function(){for(var t=0;t<wt.length;t++){var e=wt[t];e.subs=e.subs.filter((function(t){return t})),e._pending=!1}wt.length=0},jt=function(){function t(){this._pending=!1,this.id=yt++,this.subs=[]}return t.prototype.addSub=function(t){this.subs.push(t)},t.prototype.removeSub=function(t){this.subs[this.subs.indexOf(t)]=null,this._pending||(this._pending=!0,wt.push(this))},t.prototype.depend=function(e){t.target&&t.target.addDep(this)},t.prototype.notify=function(t){var e=this.subs.filter((function(t){return t}));for(var n=0,r=e.length;n<r;n++){0,e[n].update()}},t}();jt.target=null;var Et=[];function Ot(t){Et.push(t),jt.target=t}function St(){Et.pop(),jt.target=Et[Et.length-1]}var xt=Array.prototype,At=Object.create(xt);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=xt[t];W(At,t,(function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i,o=e.apply(this,n),s=this.__ob__;switch(t){case"push":case"unshift":i=n;break;case"splice":i=n.slice(2)}return i&&s.observeArray(i),s.dep.notify(),o}))}));var Tt=Object.getOwnPropertyNames(At),Ct={},It=!0;function Rt(t){It=t}var Lt={notify:$,depend:$,addSub:$,removeSub:$},kt=function(){function t(t,e,n){if(void 0===e&&(e=!1),void 0===n&&(n=!1),this.value=t,this.shallow=e,this.mock=n,this.dep=n?Lt:new jt,this.vmCount=0,W(t,"__ob__",this),i(t)){if(!n)if(K)t.__proto__=At;else for(var r=0,o=Tt.length;r<o;r++){W(t,a=Tt[r],At[a])}e||this.observeArray(t)}else{var s=Object.keys(t);for(r=0;r<s.length;r++){var a;Nt(t,a=s[r],Ct,void 0,e,n)}}}return t.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)$t(t[e],!1,this.mock)},t}();function $t(t,e,n){return t&&E(t,"__ob__")&&t.__ob__ instanceof kt?t.__ob__:!It||!n&&at()||!i(t)&&!h(t)||!Object.isExtensible(t)||t.__v_skip||Kt(t)||t instanceof gt?void 0:new kt(t,e,n)}function Nt(t,e,n,r,o,s,a){void 0===a&&(a=!1);var c=new jt,u=Object.getOwnPropertyDescriptor(t,e);if(!u||!1!==u.configurable){var f=u&&u.get,l=u&&u.set;f&&!l||n!==Ct&&2!==arguments.length||(n=t[e]);var h=o?n&&n.__ob__:$t(n,!1,s);return Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=f?f.call(t):n;return jt.target&&(c.depend(),h&&(h.dep.depend(),i(e)&&Ut(e))),Kt(e)&&!o?e.value:e},set:function(e){var r=f?f.call(t):n;if(D(r,e)){if(l)l.call(t,e);else{if(f)return;if(!o&&Kt(r)&&!Kt(e))return void(r.value=e);n=e}h=o?e&&e.__ob__:$t(e,!1,s),c.notify()}}}),c}}function Pt(t,e,n){if(!qt(t)){var r=t.__ob__;return i(t)&&p(e)?(t.length=Math.max(t.length,e),t.splice(e,1,n),r&&!r.shallow&&r.mock&&$t(n,!1,!0),n):e in t&&!(e in Object.prototype)?(t[e]=n,n):t._isVue||r&&r.vmCount?n:r?(Nt(r.value,e,n,void 0,r.shallow,r.mock),r.dep.notify(),n):(t[e]=n,n)}}function Bt(t,e){if(i(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||qt(t)||E(t,e)&&(delete t[e],n&&n.dep.notify())}}function Ut(t){for(var e=void 0,n=0,r=t.length;n<r;n++)(e=t[n])&&e.__ob__&&e.__ob__.dep.depend(),i(e)&&Ut(e)}function Mt(t){return Ft(t,!1),t}function Dt(t){return Ft(t,!0),W(t,"__v_isShallow",!0),t}function Ft(t,e){if(!qt(t)){$t(t,e,at());0}}function Gt(t){return qt(t)?Gt(t.__v_raw):!(!t||!t.__ob__)}function Vt(t){return!(!t||!t.__v_isShallow)}function qt(t){return!(!t||!t.__v_isReadonly)}function zt(t){return Gt(t)||qt(t)}function Ht(t){var e=t&&t.__v_raw;return e?Ht(e):t}function Wt(t){return Object.isExtensible(t)&&W(t,"__v_skip",!0),t}var Xt="__v_isRef";function Kt(t){return!(!t||!0!==t.__v_isRef)}function Jt(t){return Zt(t,!1)}function Yt(t){return Zt(t,!0)}function Zt(t,e){if(Kt(t))return t;var n={};return W(n,Xt,!0),W(n,"__v_isShallow",e),W(n,"dep",Nt(n,"value",t,null,e,at())),n}function Qt(t){t.dep&&t.dep.notify()}function te(t){return Kt(t)?t.value:t}function ee(t){if(Gt(t))return t;for(var e={},n=Object.keys(t),r=0;r<n.length;r++)ne(e,t,n[r]);return e}function ne(t,e,n){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:function(){var t=e[n];if(Kt(t))return t.value;var r=t&&t.__ob__;return r&&r.dep.depend(),t},set:function(t){var r=e[n];Kt(r)&&!Kt(t)?r.value=t:e[n]=t}})}function re(t){var e=new jt,n=t((function(){e.depend()}),(function(){e.notify()})),r=n.get,i=n.set,o={get value(){return r()},set value(t){i(t)}};return W(o,Xt,!0),o}function ie(t){var e=i(t)?new Array(t.length):{};for(var n in t)e[n]=oe(t,n);return e}function oe(t,e,n){var r=t[e];if(Kt(r))return r;var i={get value(){var r=t[e];return void 0===r?n:r},set value(n){t[e]=n}};return W(i,Xt,!0),i}var se="__v_rawToReadonly",ae="__v_rawToShallowReadonly";function ce(t){return ue(t,!1)}function ue(t,e){if(!h(t))return t;if(qt(t))return t;var n=e?ae:se,r=t[n];if(r)return r;var i=Object.create(Object.getPrototypeOf(t));W(t,n,i),W(i,"__v_isReadonly",!0),W(i,"__v_raw",t),Kt(t)&&W(i,Xt,!0),(e||Vt(t))&&W(i,"__v_isShallow",!0);for(var o=Object.keys(t),s=0;s<o.length;s++)fe(i,t,o[s],e);return i}function fe(t,e,n,r){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:function(){var t=e[n];return r||!h(t)?t:ce(t)},set:function(){}})}function le(t){return ue(t,!0)}function he(t,e){var n,r,i=u(t);i?(n=t,r=$):(n=t.get,r=t.set);var o=at()?null:new cr(ht,n,$,{lazy:!0});var s={effect:o,get value(){return o?(o.dirty&&o.evaluate(),jt.target&&o.depend(),o.value):n()},set value(t){r(t)}};return W(s,Xt,!0),W(s,"__v_isReadonly",i),s}var de="watcher",pe="".concat(de," callback"),ge="".concat(de," getter"),ve="".concat(de," cleanup");function be(t,e){return Ee(t,null,e)}function me(t,e){return Ee(t,null,{flush:"post"})}function ye(t,e){return Ee(t,null,{flush:"sync"})}var we,_e={};function je(t,e,n){return Ee(t,e,n)}function Ee(t,e,n){var o=void 0===n?r:n,s=o.immediate,a=o.deep,c=o.flush,f=void 0===c?"pre":c;o.onTrack,o.onTrigger;var l,h,d=ht,p=function(t,e,n){void 0===n&&(n=null);var r=Sn(t,null,n,d,e);return a&&r&&r.__ob__&&r.__ob__.dep.depend(),r},g=!1,v=!1;if(Kt(t)?(l=function(){return t.value},g=Vt(t)):Gt(t)?(l=function(){return t.__ob__.dep.depend(),t},a=!0):i(t)?(v=!0,g=t.some((function(t){return Gt(t)||Vt(t)})),l=function(){return t.map((function(t){return Kt(t)?t.value:Gt(t)?(t.__ob__.dep.depend(),ir(t)):u(t)?p(t,ge):void 0}))}):l=u(t)?e?function(){return p(t,ge)}:function(){if(!d||!d._isDestroyed)return h&&h(),p(t,de,[m])}:$,e&&a){var b=l;l=function(){return ir(b())}}var m=function(t){h=y.onStop=function(){p(t,ve)}};if(at())return m=$,e?s&&p(e,pe,[l(),v?[]:void 0,m]):l(),$;var y=new cr(ht,l,$,{lazy:!0});y.noRecurse=!e;var w=v?[]:_e;return y.run=function(){if(y.active)if(e){var t=y.get();(a||g||(v?t.some((function(t,e){return D(t,w[e])})):D(t,w)))&&(h&&h(),p(e,pe,[t,w===_e?void 0:w,m]),w=t)}else y.get()},"sync"===f?y.update=y.run:"post"===f?(y.post=!0,y.update=function(){return Ir(y)}):y.update=function(){if(d&&d===ht&&!d._isMounted){var t=d._preWatchers||(d._preWatchers=[]);t.indexOf(y)<0&&t.push(y)}else Ir(y)},e?s?y.run():w=y.get():"post"===f&&d?d.$once("hook:mounted",(function(){return y.get()})):y.get(),function(){y.teardown()}}var Oe=function(){function t(t){void 0===t&&(t=!1),this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=we,!t&&we&&(this.index=(we.scopes||(we.scopes=[])).push(this)-1)}return t.prototype.run=function(t){if(this.active){var e=we;try{return we=this,t()}finally{we=e}}else 0},t.prototype.on=function(){we=this},t.prototype.off=function(){we=this.parent},t.prototype.stop=function(t){if(this.active){var e=void 0,n=void 0;for(e=0,n=this.effects.length;e<n;e++)this.effects[e].teardown();for(e=0,n=this.cleanups.length;e<n;e++)this.cleanups[e]();if(this.scopes)for(e=0,n=this.scopes.length;e<n;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){var r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this.active=!1}},t}();function Se(t){return new Oe(t)}function xe(){return we}function Ae(t){we&&we.cleanups.push(t)}function Te(t,e){ht&&(Ce(ht)[t]=e)}function Ce(t){var e=t._provided,n=t.$parent&&t.$parent._provided;return n===e?t._provided=Object.create(n):e}function Ie(t,e,n){void 0===n&&(n=!1);var r=ht;if(r){var i=r.$parent&&r.$parent._provided;if(i&&t in i)return i[t];if(arguments.length>1)return n&&u(e)?e.call(r):e}else 0}var Re=O((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function Le(t,e){function n(){var t=n.fns;if(!i(t))return Sn(t,null,arguments,e,"v-on handler");for(var r=t.slice(),o=0;o<r.length;o++)Sn(r[o],null,arguments,e,"v-on handler")}return n.fns=t,n}function ke(t,e,n,r,i,s){var c,u,f,l;for(c in t)u=t[c],f=e[c],l=Re(c),o(u)||(o(f)?(o(u.fns)&&(u=t[c]=Le(u,s)),a(l.once)&&(u=t[c]=i(l.name,u,l.capture)),n(l.name,u,l.capture,l.passive,l.params)):u!==f&&(f.fns=u,t[c]=f));for(c in e)o(t[c])&&r((l=Re(c)).name,e[c],l.capture)}function $e(t,e,n){var r;t instanceof gt&&(t=t.data.hook||(t.data.hook={}));var i=t[e];function c(){n.apply(this,arguments),_(r.fns,c)}o(i)?r=Le([c]):s(i.fns)&&a(i.merged)?(r=i).fns.push(c):r=Le([i,c]),r.merged=!0,t[e]=r}function Ne(t,e,n,r,i){if(s(e)){if(E(e,n))return t[n]=e[n],i||delete e[n],!0;if(E(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function Pe(t){return c(t)?[bt(t)]:i(t)?Ue(t):void 0}function Be(t){return s(t)&&s(t.text)&&!1===t.isComment}function Ue(t,e){var n,r,u,f,l=[];for(n=0;n<t.length;n++)o(r=t[n])||"boolean"==typeof r||(f=l[u=l.length-1],i(r)?r.length>0&&(Be((r=Ue(r,"".concat(e||"","_").concat(n)))[0])&&Be(f)&&(l[u]=bt(f.text+r[0].text),r.shift()),l.push.apply(l,r)):c(r)?Be(f)?l[u]=bt(f.text+r):""!==r&&l.push(bt(r)):Be(r)&&Be(f)?l[u]=bt(f.text+r.text):(a(t._isVList)&&s(r.tag)&&o(r.key)&&s(e)&&(r.key="__vlist".concat(e,"_").concat(n,"__")),l.push(r)));return l}function Me(t,e){var n,r,o,a,c=null;if(i(t)||"string"==typeof t)for(c=new Array(t.length),n=0,r=t.length;n<r;n++)c[n]=e(t[n],n);else if("number"==typeof t)for(c=new Array(t),n=0;n<t;n++)c[n]=e(n+1,n);else if(f(t))if(lt&&t[Symbol.iterator]){c=[];for(var u=t[Symbol.iterator](),l=u.next();!l.done;)c.push(e(l.value,c.length)),l=u.next()}else for(o=Object.keys(t),c=new Array(o.length),n=0,r=o.length;n<r;n++)a=o[n],c[n]=e(t[a],a,n);return s(c)||(c=[]),c._isVList=!0,c}function De(t,e,n,r){var i,o=this.$scopedSlots[t];o?(n=n||{},r&&(n=L(L({},r),n)),i=o(n)||(u(e)?e():e)):i=this.$slots[t]||(u(e)?e():e);var s=n&&n.slot;return s?this.$createElement("template",{slot:s},i):i}function Fe(t){return Xr(this.$options,"filters",t,!0)||P}function Ge(t,e){return i(t)?-1===t.indexOf(e):t!==e}function Ve(t,e,n,r,i){var o=q.keyCodes[e]||n;return i&&r&&!q.keyCodes[e]?Ge(i,r):o?Ge(o,t):r?C(r)!==e:void 0===t}function qe(t,e,n,r,o){if(n)if(f(n)){i(n)&&(n=k(n));var s=void 0,a=function(i){if("class"===i||"style"===i||w(i))s=t;else{var a=t.attrs&&t.attrs.type;s=r||q.mustUseProp(e,a,i)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var c=x(i),u=C(i);c in s||u in s||(s[i]=n[i],o&&((t.on||(t.on={}))["update:".concat(i)]=function(t){n[i]=t}))};for(var c in n)a(c)}else;return t}function ze(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e||We(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,this._c,this),"__static__".concat(t),!1),r}function He(t,e,n){return We(t,"__once__".concat(e).concat(n?"_".concat(n):""),!0),t}function We(t,e,n){if(i(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&Xe(t[r],"".concat(e,"_").concat(r),n);else Xe(t,e,n)}function Xe(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Ke(t,e){if(e)if(h(e)){var n=t.on=t.on?L({},t.on):{};for(var r in e){var i=n[r],o=e[r];n[r]=i?[].concat(i,o):o}}else;return t}function Je(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var s=t[o];i(s)?Je(s,e,n):s&&(s.proxy&&(s.fn.proxy=!0),e[s.key]=s.fn)}return r&&(e.$key=r),e}function Ye(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Ze(t,e){return"string"==typeof t?e+t:t}function Qe(t){t._o=He,t._n=m,t._s=v,t._l=Me,t._t=De,t._q=B,t._i=U,t._m=ze,t._f=Fe,t._k=Ve,t._b=qe,t._v=bt,t._e=vt,t._u=Je,t._g=Ke,t._d=Ye,t._p=Ze}function tn(t,e){if(!t||!t.length)return{};for(var n={},r=0,i=t.length;r<i;r++){var o=t[r],s=o.data;if(s&&s.attrs&&s.attrs.slot&&delete s.attrs.slot,o.context!==e&&o.fnContext!==e||!s||null==s.slot)(n.default||(n.default=[])).push(o);else{var a=s.slot,c=n[a]||(n[a]=[]);"template"===o.tag?c.push.apply(c,o.children||[]):c.push(o)}}for(var u in n)n[u].every(en)&&delete n[u];return n}function en(t){return t.isComment&&!t.asyncFactory||" "===t.text}function nn(t){return t.isComment&&t.asyncFactory}function rn(t,e,n,i){var o,s=Object.keys(n).length>0,a=e?!!e.$stable:!s,c=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(a&&i&&i!==r&&c===i.$key&&!s&&!i.$hasNormal)return i;for(var u in o={},e)e[u]&&"$"!==u[0]&&(o[u]=on(t,n,u,e[u]))}else o={};for(var f in n)f in o||(o[f]=sn(n,f));return e&&Object.isExtensible(e)&&(e._normalized=o),W(o,"$stable",a),W(o,"$key",c),W(o,"$hasNormal",s),o}function on(t,e,n,r){var o=function(){var e=ht;pt(t);var n=arguments.length?r.apply(null,arguments):r({}),o=(n=n&&"object"==typeof n&&!i(n)?[n]:Pe(n))&&n[0];return pt(e),n&&(!o||1===n.length&&o.isComment&&!nn(o))?void 0:n};return r.proxy&&Object.defineProperty(e,n,{get:o,enumerable:!0,configurable:!0}),o}function sn(t,e){return function(){return t[e]}}function an(t){return{get attrs(){if(!t._attrsProxy){var e=t._attrsProxy={};W(e,"_v_attr_proxy",!0),cn(e,t.$attrs,r,t,"$attrs")}return t._attrsProxy},get listeners(){t._listenersProxy||cn(t._listenersProxy={},t.$listeners,r,t,"$listeners");return t._listenersProxy},get slots(){return function(t){t._slotsProxy||fn(t._slotsProxy={},t.$scopedSlots);return t._slotsProxy}(t)},emit:I(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach((function(n){return ne(t,e,n)}))}}}function cn(t,e,n,r,i){var o=!1;for(var s in e)s in t?e[s]!==n[s]&&(o=!0):(o=!0,un(t,s,r,i));for(var s in t)s in e||(o=!0,delete t[s]);return o}function un(t,e,n,r){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return n[r][e]}})}function fn(t,e){for(var n in e)t[n]=e[n];for(var n in t)n in e||delete t[n]}function ln(){return pn().slots}function hn(){return pn().attrs}function dn(){return pn().listeners}function pn(){var t=ht;return t._setupContext||(t._setupContext=an(t))}function gn(t,e){var n=i(t)?t.reduce((function(t,e){return t[e]={},t}),{}):t;for(var r in e){var o=n[r];o?i(o)||u(o)?n[r]={type:o,default:e[r]}:o.default=e[r]:null===o&&(n[r]={default:e[r]})}return n}var vn=null;function bn(t,e){return(t.__esModule||lt&&"Module"===t[Symbol.toStringTag])&&(t=t.default),f(t)?e.extend(t):t}function mn(t){if(i(t))for(var e=0;e<t.length;e++){var n=t[e];if(s(n)&&(s(n.componentOptions)||nn(n)))return n}}var yn=1,wn=2;function _n(t,e,n,r,o,l){return(i(n)||c(n))&&(o=r,r=n,n=void 0),a(l)&&(o=wn),function(t,e,n,r,o){if(s(n)&&s(n.__ob__))return vt();s(n)&&s(n.is)&&(e=n.is);if(!e)return vt();0;i(r)&&u(r[0])&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);o===wn?r=Pe(r):o===yn&&(r=function(t){for(var e=0;e<t.length;e++)if(i(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var a,c;if("string"==typeof e){var l=void 0;c=t.$vnode&&t.$vnode.ns||q.getTagNamespace(e),a=q.isReservedTag(e)?new gt(q.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!s(l=Xr(t.$options,"components",e))?new gt(e,n,r,void 0,void 0,t):Ur(l,n,t,r,e)}else a=Ur(e,n,t,r);return i(a)?a:s(a)?(s(c)&&jn(a,c),s(n)&&function(t){f(t.style)&&ir(t.style);f(t.class)&&ir(t.class)}(n),a):vt()}(t,e,n,r,o)}function jn(t,e,n){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,n=!0),s(t.children))for(var r=0,i=t.children.length;r<i;r++){var c=t.children[r];s(c.tag)&&(o(c.ns)||a(n)&&"svg"!==c.tag)&&jn(c,e,n)}}function En(t,e,n){return _n(ht,t,e,n,2,!0)}function On(t,e,n){Ot();try{if(e)for(var r=e;r=r.$parent;){var i=r.$options.errorCaptured;if(i)for(var o=0;o<i.length;o++)try{if(!1===i[o].call(r,t,e,n))return}catch(t){xn(t,r,"errorCaptured hook")}}xn(t,e,n)}finally{St()}}function Sn(t,e,n,r,i){var o;try{(o=n?t.apply(e,n):t.call(e))&&!o._isVue&&g(o)&&!o._handled&&(o.catch((function(t){return On(t,r,i+" (Promise/async)")})),o._handled=!0)}catch(t){On(t,r,i)}return o}function xn(t,e,n){if(q.errorHandler)try{return q.errorHandler.call(null,t,e,n)}catch(e){e!==t&&An(e,null,"config.errorHandler")}An(t,e,n)}function An(t,e,n){if(!J||"undefined"==typeof console)throw t;console.error(t)}var Tn,Cn=!1,In=[],Rn=!1;function Ln(){Rn=!1;var t=In.slice(0);In.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&ut(Promise)){var kn=Promise.resolve();Tn=function(){kn.then(Ln),et&&setTimeout($)},Cn=!0}else if(Z||"undefined"==typeof MutationObserver||!ut(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Tn="undefined"!=typeof setImmediate&&ut(setImmediate)?function(){setImmediate(Ln)}:function(){setTimeout(Ln,0)};else{var $n=1,Nn=new MutationObserver(Ln),Pn=document.createTextNode(String($n));Nn.observe(Pn,{characterData:!0}),Tn=function(){$n=($n+1)%2,Pn.data=String($n)},Cn=!0}function Bn(t,e){var n;if(In.push((function(){if(t)try{t.call(e)}catch(t){On(t,e,"nextTick")}else n&&n(e)})),Rn||(Rn=!0,Tn()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}function Un(t){if(void 0===t&&(t="$style"),!ht)return r;var e=ht[t];return e||r}function Mn(t){if(J){var e=ht;e&&me((function(){var n=e.$el,r=t(e,e._setupProxy);if(n&&1===n.nodeType){var i=n.style;for(var o in r)i.setProperty("--".concat(o),r[o])}}))}}function Dn(t){u(t)&&(t={loader:t});var e=t.loader,n=t.loadingComponent,r=t.errorComponent,i=t.delay,o=void 0===i?200:i,s=t.timeout,a=(t.suspensible,t.onError);var c=null,f=0,l=function(){var t;return c||(t=c=e().catch((function(t){if(t=t instanceof Error?t:new Error(String(t)),a)return new Promise((function(e,n){a(t,(function(){return e((f++,c=null,l()))}),(function(){return n(t)}),f+1)}));throw t})).then((function(e){return t!==c&&c?c:(e&&(e.__esModule||"Module"===e[Symbol.toStringTag])&&(e=e.default),e)})))};return function(){return{component:l(),delay:o,timeout:s,error:r,loading:n}}}function Fn(t){return function(e,n){if(void 0===n&&(n=ht),n)return function(t,e,n){var r=t.$options;r[e]=qr(r[e],n)}(n,t,e)}}var Gn=Fn("beforeMount"),Vn=Fn("mounted"),qn=Fn("beforeUpdate"),zn=Fn("updated"),Hn=Fn("beforeDestroy"),Wn=Fn("destroyed"),Xn=Fn("activated"),Kn=Fn("deactivated"),Jn=Fn("serverPrefetch"),Yn=Fn("renderTracked"),Zn=Fn("renderTriggered"),Qn=Fn("errorCaptured");function tr(t,e){void 0===e&&(e=ht),Qn(t,e)}var er="2.7.16";function nr(t){return t}var rr=new ft;function ir(t){return or(t,rr),rr.clear(),t}function or(t,e){var n,r,o=i(t);if(!(!o&&!f(t)||t.__v_skip||Object.isFrozen(t)||t instanceof gt)){if(t.__ob__){var s=t.__ob__.dep.id;if(e.has(s))return;e.add(s)}if(o)for(n=t.length;n--;)or(t[n],e);else if(Kt(t))or(t.value,e);else for(n=(r=Object.keys(t)).length;n--;)or(t[r[n]],e)}}var sr,ar=0,cr=function(){function t(t,e,n,r,i){var o,s;o=this,void 0===(s=we&&!we._vm?we:t?t._scope:void 0)&&(s=we),s&&s.active&&s.effects.push(o),(this.vm=t)&&i&&(t._watcher=this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ar,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ft,this.newDepIds=new ft,this.expression="",u(e)?this.getter=e:(this.getter=function(t){if(!X.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=$)),this.value=this.lazy?void 0:this.get()}return t.prototype.get=function(){var t;Ot(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;On(t,e,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&ir(t),St(),this.cleanupDeps()}return t},t.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},t.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},t.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():Ir(this)},t.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||f(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'.concat(this.expression,'"');Sn(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},t.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},t.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},t.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&_(this.vm._scope.effects,this),this.active){for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},t}();function ur(t,e){sr.$on(t,e)}function fr(t,e){sr.$off(t,e)}function lr(t,e){var n=sr;return function r(){null!==e.apply(null,arguments)&&n.$off(t,r)}}function hr(t,e,n){sr=t,ke(e,n||{},ur,fr,lr,t),sr=void 0}var dr=null;function pr(t){var e=dr;return dr=t,function(){dr=e}}function gr(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function vr(t,e){if(e){if(t._directInactive=!1,gr(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)vr(t.$children[n]);mr(t,"activated")}}function br(t,e){if(!(e&&(t._directInactive=!0,gr(t))||t._inactive)){t._inactive=!0;for(var n=0;n<t.$children.length;n++)br(t.$children[n]);mr(t,"deactivated")}}function mr(t,e,n,r){void 0===r&&(r=!0),Ot();var i=ht,o=xe();r&&pt(t);var s=t.$options[e],a="".concat(e," hook");if(s)for(var c=0,u=s.length;c<u;c++)Sn(s[c],t,n||null,t,a);t._hasHookEvent&&t.$emit("hook:"+e),r&&(pt(i),o&&o.on()),St()}var yr=[],wr=[],_r={},jr=!1,Er=!1,Or=0;var Sr=0,xr=Date.now;if(J&&!Z){var Ar=window.performance;Ar&&"function"==typeof Ar.now&&xr()>document.createEvent("Event").timeStamp&&(xr=function(){return Ar.now()})}var Tr=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function Cr(){var t,e;for(Sr=xr(),Er=!0,yr.sort(Tr),Or=0;Or<yr.length;Or++)(t=yr[Or]).before&&t.before(),e=t.id,_r[e]=null,t.run();var n=wr.slice(),r=yr.slice();Or=yr.length=wr.length=0,_r={},jr=Er=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,vr(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r&&r._watcher===n&&r._isMounted&&!r._isDestroyed&&mr(r,"updated")}}(r),_t(),ct&&q.devtools&&ct.emit("flush")}function Ir(t){var e=t.id;if(null==_r[e]&&(t!==jt.target||!t.noRecurse)){if(_r[e]=!0,Er){for(var n=yr.length-1;n>Or&&yr[n].id>t.id;)n--;yr.splice(n+1,0,t)}else yr.push(t);jr||(jr=!0,Bn(Cr))}}function Rr(t,e){if(t){for(var n=Object.create(null),r=lt?Reflect.ownKeys(t):Object.keys(t),i=0;i<r.length;i++){var o=r[i];if("__ob__"!==o){var s=t[o].from;if(s in e._provided)n[o]=e._provided[s];else if("default"in t[o]){var a=t[o].default;n[o]=u(a)?a.call(e):a}else 0}}return n}}function Lr(t,e,n,o,s){var c,u=this,f=s.options;E(o,"_uid")?(c=Object.create(o))._original=o:(c=o,o=o._original);var l=a(f._compiled),h=!l;this.data=t,this.props=e,this.children=n,this.parent=o,this.listeners=t.on||r,this.injections=Rr(f.inject,o),this.slots=function(){return u.$slots||rn(o,t.scopedSlots,u.$slots=tn(n,o)),u.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return rn(o,t.scopedSlots,this.slots())}}),l&&(this.$options=f,this.$slots=this.slots(),this.$scopedSlots=rn(o,t.scopedSlots,this.$slots)),f._scopeId?this._c=function(t,e,n,r){var s=_n(c,t,e,n,r,h);return s&&!i(s)&&(s.fnScopeId=f._scopeId,s.fnContext=o),s}:this._c=function(t,e,n,r){return _n(c,t,e,n,r,h)}}function kr(t,e,n,r,i){var o=mt(t);return o.fnContext=n,o.fnOptions=r,e.slot&&((o.data||(o.data={})).slot=e.slot),o}function $r(t,e){for(var n in e)t[x(n)]=e[n]}function Nr(t){return t.name||t.__name||t._componentTag}Qe(Lr.prototype);var Pr={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;Pr.prepatch(n,n)}else{(t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;s(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,dr)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,i,o){var s=i.data.scopedSlots,a=t.$scopedSlots,c=!!(s&&!s.$stable||a!==r&&!a.$stable||s&&t.$scopedSlots.$key!==s.$key||!s&&t.$scopedSlots.$key),u=!!(o||t.$options._renderChildren||c),f=t.$vnode;t.$options._parentVnode=i,t.$vnode=i,t._vnode&&(t._vnode.parent=i),t.$options._renderChildren=o;var l=i.data.attrs||r;t._attrsProxy&&cn(t._attrsProxy,l,f.data&&f.data.attrs||r,t,"$attrs")&&(u=!0),t.$attrs=l,n=n||r;var h=t.$options._parentListeners;if(t._listenersProxy&&cn(t._listenersProxy,n,h||r,t,"$listeners"),t.$listeners=t.$options._parentListeners=n,hr(t,n,h),e&&t.$options.props){Rt(!1);for(var d=t._props,p=t.$options._propKeys||[],g=0;g<p.length;g++){var v=p[g],b=t.$options.props;d[v]=Kr(v,b,e,t)}Rt(!0),t.$options.propsData=e}u&&(t.$slots=tn(o,i.context),t.$forceUpdate())}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,mr(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,wr.push(e)):vr(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?br(e,!0):e.$destroy())}},Br=Object.keys(Pr);function Ur(t,e,n,c,u){if(!o(t)){var l=n.$options._base;if(f(t)&&(t=l.extend(t)),"function"==typeof t){var h;if(o(t.cid)&&(t=function(t,e){if(a(t.error)&&s(t.errorComp))return t.errorComp;if(s(t.resolved))return t.resolved;var n=vn;if(n&&s(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),a(t.loading)&&s(t.loadingComp))return t.loadingComp;if(n&&!s(t.owners)){var r=t.owners=[n],i=!0,c=null,u=null;n.$on("hook:destroyed",(function(){return _(r,n)}));var l=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==c&&(clearTimeout(c),c=null),null!==u&&(clearTimeout(u),u=null))},h=M((function(n){t.resolved=bn(n,e),i?r.length=0:l(!0)})),d=M((function(e){s(t.errorComp)&&(t.error=!0,l(!0))})),p=t(h,d);return f(p)&&(g(p)?o(t.resolved)&&p.then(h,d):g(p.component)&&(p.component.then(h,d),s(p.error)&&(t.errorComp=bn(p.error,e)),s(p.loading)&&(t.loadingComp=bn(p.loading,e),0===p.delay?t.loading=!0:c=setTimeout((function(){c=null,o(t.resolved)&&o(t.error)&&(t.loading=!0,l(!1))}),p.delay||200)),s(p.timeout)&&(u=setTimeout((function(){u=null,o(t.resolved)&&d(null)}),p.timeout)))),i=!1,t.loading?t.loadingComp:t.resolved}}(h=t,l),void 0===t))return function(t,e,n,r,i){var o=vt();return o.asyncFactory=t,o.asyncMeta={data:e,context:n,children:r,tag:i},o}(h,e,n,c,u);e=e||{},ui(t),s(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var o=e.on||(e.on={}),a=o[r],c=e.model.callback;s(a)?(i(a)?-1===a.indexOf(c):a!==c)&&(o[r]=[c].concat(a)):o[r]=c}(t.options,e);var d=function(t,e,n){var r=e.options.props;if(!o(r)){var i={},a=t.attrs,c=t.props;if(s(a)||s(c))for(var u in r){var f=C(u);Ne(i,c,u,f,!0)||Ne(i,a,u,f,!1)}return i}}(e,t);if(a(t.options.functional))return function(t,e,n,o,a){var c=t.options,u={},f=c.props;if(s(f))for(var l in f)u[l]=Kr(l,f,e||r);else s(n.attrs)&&$r(u,n.attrs),s(n.props)&&$r(u,n.props);var h=new Lr(n,u,a,o,t),d=c.render.call(null,h._c,h);if(d instanceof gt)return kr(d,n,h.parent,c);if(i(d)){for(var p=Pe(d)||[],g=new Array(p.length),v=0;v<p.length;v++)g[v]=kr(p[v],n,h.parent,c);return g}}(t,d,e,n,c);var p=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var v=e.slot;e={},v&&(e.slot=v)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Br.length;n++){var r=Br[n],i=e[r],o=Pr[r];i===o||i&&i._merged||(e[r]=i?Mr(o,i):o)}}(e);var b=Nr(t.options)||u;return new gt("vue-component-".concat(t.cid).concat(b?"-".concat(b):""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:d,listeners:p,tag:u,children:c},h)}}}function Mr(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}var Dr=$,Fr=q.optionMergeStrategies;function Gr(t,e,n){if(void 0===n&&(n=!0),!e)return t;for(var r,i,o,s=lt?Reflect.ownKeys(e):Object.keys(e),a=0;a<s.length;a++)"__ob__"!==(r=s[a])&&(i=t[r],o=e[r],n&&E(t,r)?i!==o&&h(i)&&h(o)&&Gr(i,o):Pt(t,r,o));return t}function Vr(t,e,n){return n?function(){var r=u(e)?e.call(n,n):e,i=u(t)?t.call(n,n):t;return r?Gr(r,i):i}:e?t?function(){return Gr(u(e)?e.call(this,this):e,u(t)?t.call(this,this):t)}:e:t}function qr(t,e){var n=e?t?t.concat(e):i(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function zr(t,e,n,r){var i=Object.create(t||null);return e?L(i,e):i}Fr.data=function(t,e,n){return n?Vr(t,e,n):e&&"function"!=typeof e?t:Vr(t,e)},V.forEach((function(t){Fr[t]=qr})),G.forEach((function(t){Fr[t+"s"]=zr})),Fr.watch=function(t,e,n,r){if(t===it&&(t=void 0),e===it&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var s in L(o,t),e){var a=o[s],c=e[s];a&&!i(a)&&(a=[a]),o[s]=a?a.concat(c):i(c)?c:[c]}return o},Fr.props=Fr.methods=Fr.inject=Fr.computed=function(t,e,n,r){if(!t)return e;var i=Object.create(null);return L(i,t),e&&L(i,e),i},Fr.provide=function(t,e){return t?function(){var n=Object.create(null);return Gr(n,u(t)?t.call(this):t),e&&Gr(n,u(e)?e.call(this):e,!1),n}:e};var Hr=function(t,e){return void 0===e?t:e};function Wr(t,e,n){if(u(e)&&(e=e.options),function(t,e){var n=t.props;if(n){var r,o,s={};if(i(n))for(r=n.length;r--;)"string"==typeof(o=n[r])&&(s[x(o)]={type:null});else if(h(n))for(var a in n)o=n[a],s[x(a)]=h(o)?o:{type:o};t.props=s}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(i(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(h(n))for(var s in n){var a=n[s];r[s]=h(a)?L({from:s},a):{from:a}}}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];u(r)&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Wr(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Wr(t,e.mixins[r],n);var s,a={};for(s in t)c(s);for(s in e)E(t,s)||c(s);function c(r){var i=Fr[r]||Hr;a[r]=i(t[r],e[r],n,r)}return a}function Xr(t,e,n,r){if("string"==typeof n){var i=t[e];if(E(i,n))return i[n];var o=x(n);if(E(i,o))return i[o];var s=A(o);return E(i,s)?i[s]:i[n]||i[o]||i[s]}}function Kr(t,e,n,r){var i=e[t],o=!E(n,t),s=n[t],a=Qr(Boolean,i.type);if(a>-1)if(o&&!E(i,"default"))s=!1;else if(""===s||s===C(t)){var c=Qr(String,i.type);(c<0||a<c)&&(s=!0)}if(void 0===s){s=function(t,e,n){if(!E(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return u(r)&&"Function"!==Yr(e.type)?r.call(t):r}(r,i,t);var f=It;Rt(!0),$t(s),Rt(f)}return s}var Jr=/^\s*function (\w+)/;function Yr(t){var e=t&&t.toString().match(Jr);return e?e[1]:""}function Zr(t,e){return Yr(t)===Yr(e)}function Qr(t,e){if(!i(e))return Zr(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Zr(e[n],t))return n;return-1}var ti={enumerable:!0,configurable:!0,get:$,set:$};function ei(t,e,n){ti.get=function(){return this[e][n]},ti.set=function(t){this[e][n]=t},Object.defineProperty(t,n,ti)}function ni(t){var e=t.$options;if(e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props=Dt({}),i=t.$options._propKeys=[],o=!t.$parent;o||Rt(!1);var s=function(o){i.push(o);var s=Kr(o,e,n,t);Nt(r,o,s,void 0,!0),o in t||ei(t,"_props",o)};for(var a in e)s(a);Rt(!0)}(t,e.props),function(t){var e=t.$options,n=e.setup;if(n){var r=t._setupContext=an(t);pt(t),Ot();var i=Sn(n,null,[t._props||Dt({}),r],t,"setup");if(St(),pt(),u(i))e.render=i;else if(f(i))if(t._setupState=i,i.__sfc){var o=t._setupProxy={};for(var s in i)"__sfc"!==s&&ne(o,i,s)}else for(var s in i)H(s)||ne(t,i,s)}}(t),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?$:I(e[n],t)}(t,e.methods),e.data)!function(t){var e=t.$options.data;e=t._data=u(e)?function(t,e){Ot();try{return t.call(e,e)}catch(t){return On(t,e,"data()"),{}}finally{St()}}(e,t):e||{},h(e)||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&E(r,o)||H(o)||ei(t,"_data",o)}var s=$t(e);s&&s.vmCount++}(t);else{var n=$t(t._data={});n&&n.vmCount++}e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=at();for(var i in e){var o=e[i],s=u(o)?o:o.get;0,r||(n[i]=new cr(t,s||$,$,ri)),i in t||ii(t,i,o)}}(t,e.computed),e.watch&&e.watch!==it&&function(t,e){for(var n in e){var r=e[n];if(i(r))for(var o=0;o<r.length;o++)ai(t,n,r[o]);else ai(t,n,r)}}(t,e.watch)}var ri={lazy:!0};function ii(t,e,n){var r=!at();u(n)?(ti.get=r?oi(e):si(n),ti.set=$):(ti.get=n.get?r&&!1!==n.cache?oi(e):si(n.get):$,ti.set=n.set||$),Object.defineProperty(t,e,ti)}function oi(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),jt.target&&e.depend(),e.value}}function si(t){return function(){return t.call(this,this)}}function ai(t,e,n,r){return h(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}var ci=0;function ui(t){var e=t.options;if(t.super){var n=ui(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var i in n)n[i]!==r[i]&&(e||(e={}),e[i]=n[i]);return e}(t);r&&L(t.extendOptions,r),(e=t.options=Wr(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function fi(t){this._init(t)}function li(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=Nr(t)||Nr(n.options);var s=function(t){this._init(t)};return(s.prototype=Object.create(n.prototype)).constructor=s,s.cid=e++,s.options=Wr(n.options,t),s.super=n,s.options.props&&function(t){var e=t.options.props;for(var n in e)ei(t.prototype,"_props",n)}(s),s.options.computed&&function(t){var e=t.options.computed;for(var n in e)ii(t.prototype,n,e[n])}(s),s.extend=n.extend,s.mixin=n.mixin,s.use=n.use,G.forEach((function(t){s[t]=n[t]})),o&&(s.options.components[o]=s),s.superOptions=n.options,s.extendOptions=t,s.sealedOptions=L({},s.options),i[r]=s,s}}function hi(t){return t&&(Nr(t.Ctor.options)||t.tag)}function di(t,e){return i(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!d(t)&&t.test(e)}function pi(t,e){var n=t.cache,r=t.keys,i=t._vnode,o=t.$vnode;for(var s in n){var a=n[s];if(a){var c=a.name;c&&!e(c)&&gi(n,s,r,i)}}o.componentOptions.children=void 0}function gi(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,_(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=ci++,e._isVue=!0,e.__v_skip=!0,e._scope=new Oe(!0),e._scope.parent=void 0,e._scope._vm=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Wr(ui(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._provided=n?n._provided:Object.create(null),t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&hr(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,i=n&&n.context;t.$slots=tn(e._renderChildren,i),t.$scopedSlots=n?rn(t.$parent,n.data.scopedSlots,t.$slots):r,t._c=function(e,n,r,i){return _n(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return _n(t,e,n,r,i,!0)};var o=n&&n.data;Nt(t,"$attrs",o&&o.attrs||r,null,!0),Nt(t,"$listeners",e._parentListeners||r,null,!0)}(e),mr(e,"beforeCreate",void 0,!1),function(t){var e=Rr(t.$options.inject,t);e&&(Rt(!1),Object.keys(e).forEach((function(n){Nt(t,n,e[n])})),Rt(!0))}(e),ni(e),function(t){var e=t.$options.provide;if(e){var n=u(e)?e.call(t):e;if(!f(n))return;for(var r=Ce(t),i=lt?Reflect.ownKeys(n):Object.keys(n),o=0;o<i.length;o++){var s=i[o];Object.defineProperty(r,s,Object.getOwnPropertyDescriptor(n,s))}}}(e),mr(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(fi),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Pt,t.prototype.$delete=Bt,t.prototype.$watch=function(t,e,n){var r=this;if(h(e))return ai(r,t,e,n);(n=n||{}).user=!0;var i=new cr(r,t,e,n);if(n.immediate){var o='callback for immediate watcher "'.concat(i.expression,'"');Ot(),Sn(e,r,[i.value],r,o),St()}return function(){i.teardown()}}}(fi),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(i(t))for(var o=0,s=t.length;o<s;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(i(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var s,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var c=a.length;c--;)if((s=a[c])===e||s.fn===e){a.splice(c,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?R(n):n;for(var r=R(arguments,1),i='event handler for "'.concat(t,'"'),o=0,s=n.length;o<s;o++)Sn(n[o],e,r,e,i)}return e}}(fi),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,i=n._vnode,o=pr(n);n._vnode=t,n.$el=i?n.__patch__(i,t):n.__patch__(n.$el,t,e,!1),o(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n);for(var s=n;s&&s.$vnode&&s.$parent&&s.$vnode===s.$parent._vnode;)s.$parent.$el=s.$el,s=s.$parent},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){mr(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||_(e.$children,t),t._scope.stop(),t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),mr(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(fi),function(t){Qe(t.prototype),t.prototype.$nextTick=function(t){return Bn(t,this)},t.prototype._render=function(){var t=this,e=t.$options,n=e.render,r=e._parentVnode;r&&t._isMounted&&(t.$scopedSlots=rn(t.$parent,r.data.scopedSlots,t.$slots,t.$scopedSlots),t._slotsProxy&&fn(t._slotsProxy,t.$scopedSlots)),t.$vnode=r;var o,s=ht,a=vn;try{pt(t),vn=t,o=n.call(t._renderProxy,t.$createElement)}catch(e){On(e,t,"render"),o=t._vnode}finally{vn=a,pt(s)}return i(o)&&1===o.length&&(o=o[0]),o instanceof gt||(o=vt()),o.parent=r,o}}(fi);var vi=[String,RegExp,Array],bi={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:vi,exclude:vi,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,i=t.keyToCache;if(r){var o=r.tag,s=r.componentInstance,a=r.componentOptions;e[i]={name:hi(a),tag:o,componentInstance:s},n.push(i),this.max&&n.length>parseInt(this.max)&&gi(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)gi(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){pi(t,(function(t){return di(e,t)}))})),this.$watch("exclude",(function(e){pi(t,(function(t){return!di(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=mn(t),n=e&&e.componentOptions;if(n){var r=hi(n),i=this.include,o=this.exclude;if(i&&(!r||!di(i,r))||o&&r&&di(o,r))return e;var s=this.cache,a=this.keys,c=null==e.key?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):e.key;s[c]?(e.componentInstance=s[c].componentInstance,_(a,c),a.push(c)):(this.vnodeToCache=e,this.keyToCache=c),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return q}};Object.defineProperty(t,"config",e),t.util={warn:Dr,extend:L,mergeOptions:Wr,defineReactive:Nt},t.set=Pt,t.delete=Bt,t.nextTick=Bn,t.observable=function(t){return $t(t),t},t.options=Object.create(null),G.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,L(t.options.components,bi),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=R(arguments,1);return n.unshift(this),u(t.install)?t.install.apply(t,n):u(t)&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Wr(this.options,t),this}}(t),li(t),function(t){G.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&h(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&u(n)&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(fi),Object.defineProperty(fi.prototype,"$isServer",{get:at}),Object.defineProperty(fi.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(fi,"FunctionalRenderContext",{value:Lr}),fi.version=er;var mi=y("style,class"),yi=y("input,textarea,option,select,progress"),wi=y("contenteditable,draggable,spellcheck"),_i=y("events,caret,typing,plaintext-only"),ji=function(t,e){return Ai(e)||"false"===e?"false":"contenteditable"===t&&_i(e)?e:"true"},Ei=y("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Oi="http://www.w3.org/1999/xlink",Si=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},xi=function(t){return Si(t)?t.slice(6,t.length):""},Ai=function(t){return null==t||!1===t};function Ti(t){for(var e=t.data,n=t,r=t;s(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Ci(r.data,e));for(;s(n=n.parent);)n&&n.data&&(e=Ci(e,n.data));return function(t,e){if(s(t)||s(e))return Ii(t,Ri(e));return""}(e.staticClass,e.class)}function Ci(t,e){return{staticClass:Ii(t.staticClass,e.staticClass),class:s(t.class)?[t.class,e.class]:e.class}}function Ii(t,e){return t?e?t+" "+e:t:e||""}function Ri(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,i=t.length;r<i;r++)s(e=Ri(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):f(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Li={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ki=y("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),$i=y("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ni=function(t){return ki(t)||$i(t)};var Pi=Object.create(null);var Bi=y("text,number,password,search,email,tel,url");var Ui=Object.freeze({__proto__:null,createElement:function(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(t,e){return document.createElementNS(Li[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Mi={create:function(t,e){Di(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Di(t,!0),Di(e))},destroy:function(t){Di(t,!0)}};function Di(t,e){var n=t.data.ref;if(s(n)){var r=t.context,o=t.componentInstance||t.elm,a=e?null:o,c=e?void 0:o;if(u(n))Sn(n,r,[a],r,"template ref function");else{var f=t.data.refInFor,l="string"==typeof n||"number"==typeof n,h=Kt(n),d=r.$refs;if(l||h)if(f){var p=l?d[n]:n.value;e?i(p)&&_(p,o):i(p)?p.includes(o)||p.push(o):l?(d[n]=[o],Fi(r,n,d[n])):n.value=[o]}else if(l){if(e&&d[n]!==o)return;d[n]=c,Fi(r,n,a)}else if(h){if(e&&n.value!==o)return;n.value=a}else 0}}}function Fi(t,e,n){var r=t._setupState;r&&E(r,e)&&(Kt(r[e])?r[e].value=n:r[e]=n)}var Gi=new gt("",{},[]),Vi=["create","activate","update","remove","destroy"];function qi(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&s(t.data)===s(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=s(n=t.data)&&s(n=n.attrs)&&n.type,i=s(n=e.data)&&s(n=n.attrs)&&n.type;return r===i||Bi(r)&&Bi(i)}(t,e)||a(t.isAsyncPlaceholder)&&o(e.asyncFactory.error))}function zi(t,e,n){var r,i,o={};for(r=e;r<=n;++r)s(i=t[r].key)&&(o[i]=r);return o}var Hi={create:Wi,update:Wi,destroy:function(t){Wi(t,Gi)}};function Wi(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,i,o=t===Gi,s=e===Gi,a=Ki(t.data.directives,t.context),c=Ki(e.data.directives,e.context),u=[],f=[];for(n in c)r=a[n],i=c[n],r?(i.oldValue=r.value,i.oldArg=r.arg,Yi(i,"update",e,t),i.def&&i.def.componentUpdated&&f.push(i)):(Yi(i,"bind",e,t),i.def&&i.def.inserted&&u.push(i));if(u.length){var l=function(){for(var n=0;n<u.length;n++)Yi(u[n],"inserted",e,t)};o?$e(e,"insert",l):l()}f.length&&$e(e,"postpatch",(function(){for(var n=0;n<f.length;n++)Yi(f[n],"componentUpdated",e,t)}));if(!o)for(n in a)c[n]||Yi(a[n],"unbind",t,t,s)}(t,e)}var Xi=Object.create(null);function Ki(t,e){var n,r,i=Object.create(null);if(!t)return i;for(n=0;n<t.length;n++){if((r=t[n]).modifiers||(r.modifiers=Xi),i[Ji(r)]=r,e._setupState&&e._setupState.__sfc){var o=r.def||Xr(e,"_setupState","v-"+r.name);r.def="function"==typeof o?{bind:o,update:o}:o}r.def=r.def||Xr(e.$options,"directives",r.name)}return i}function Ji(t){return t.rawName||"".concat(t.name,".").concat(Object.keys(t.modifiers||{}).join("."))}function Yi(t,e,n,r,i){var o=t.def&&t.def[e];if(o)try{o(n.elm,t,n,r,i)}catch(r){On(r,n.context,"directive ".concat(t.name," ").concat(e," hook"))}}var Zi=[Mi,Hi];function Qi(t,e){var n=e.componentOptions;if(!(s(n)&&!1===n.Ctor.options.inheritAttrs||o(t.data.attrs)&&o(e.data.attrs))){var r,i,c=e.elm,u=t.data.attrs||{},f=e.data.attrs||{};for(r in(s(f.__ob__)||a(f._v_attr_proxy))&&(f=e.data.attrs=L({},f)),f)i=f[r],u[r]!==i&&to(c,r,i,e.data.pre);for(r in(Z||tt)&&f.value!==u.value&&to(c,"value",f.value),u)o(f[r])&&(Si(r)?c.removeAttributeNS(Oi,xi(r)):wi(r)||c.removeAttribute(r))}}function to(t,e,n,r){r||t.tagName.indexOf("-")>-1?eo(t,e,n):Ei(e)?Ai(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):wi(e)?t.setAttribute(e,ji(e,n)):Si(e)?Ai(n)?t.removeAttributeNS(Oi,xi(e)):t.setAttributeNS(Oi,e,n):eo(t,e,n)}function eo(t,e,n){if(Ai(n))t.removeAttribute(e);else{if(Z&&!Q&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var no={create:Qi,update:Qi};function ro(t,e){var n=e.elm,r=e.data,i=t.data;if(!(o(r.staticClass)&&o(r.class)&&(o(i)||o(i.staticClass)&&o(i.class)))){var a=Ti(e),c=n._transitionClasses;s(c)&&(a=Ii(a,Ri(c))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var io,oo={create:ro,update:ro},so="__r",ao="__c";function co(t,e,n){var r=io;return function i(){null!==e.apply(null,arguments)&&lo(t,i,n,r)}}var uo=Cn&&!(rt&&Number(rt[1])<=53);function fo(t,e,n,r){if(uo){var i=Sr,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}io.addEventListener(t,e,ot?{capture:n,passive:r}:n)}function lo(t,e,n,r){(r||io).removeEventListener(t,e._wrapper||e,n)}function ho(t,e){if(!o(t.data.on)||!o(e.data.on)){var n=e.data.on||{},r=t.data.on||{};io=e.elm||t.elm,function(t){if(s(t[so])){var e=Z?"change":"input";t[e]=[].concat(t[so],t[e]||[]),delete t[so]}s(t[ao])&&(t.change=[].concat(t[ao],t.change||[]),delete t[ao])}(n),ke(n,r,fo,lo,co,e.context),io=void 0}}var po,go={create:ho,update:ho,destroy:function(t){return ho(t,Gi)}};function vo(t,e){if(!o(t.data.domProps)||!o(e.data.domProps)){var n,r,i=e.elm,c=t.data.domProps||{},u=e.data.domProps||{};for(n in(s(u.__ob__)||a(u._v_attr_proxy))&&(u=e.data.domProps=L({},u)),c)n in u||(i[n]="");for(n in u){if(r=u[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===c[n])continue;1===i.childNodes.length&&i.removeChild(i.childNodes[0])}if("value"===n&&"PROGRESS"!==i.tagName){i._value=r;var f=o(r)?"":String(r);bo(i,f)&&(i.value=f)}else if("innerHTML"===n&&$i(i.tagName)&&o(i.innerHTML)){(po=po||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var l=po.firstChild;i.firstChild;)i.removeChild(i.firstChild);for(;l.firstChild;)i.appendChild(l.firstChild)}else if(r!==c[n])try{i[n]=r}catch(t){}}}}function bo(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(s(r)){if(r.number)return m(n)!==m(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var mo={create:vo,update:vo},yo=O((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function wo(t){var e=_o(t.style);return t.staticStyle?L(t.staticStyle,e):e}function _o(t){return Array.isArray(t)?k(t):"string"==typeof t?yo(t):t}var jo,Eo=/^--/,Oo=/\s*!important$/,So=function(t,e,n){if(Eo.test(e))t.style.setProperty(e,n);else if(Oo.test(n))t.style.setProperty(C(e),n.replace(Oo,""),"important");else{var r=Ao(e);if(Array.isArray(n))for(var i=0,o=n.length;i<o;i++)t.style[r]=n[i];else t.style[r]=n}},xo=["Webkit","Moz","ms"],Ao=O((function(t){if(jo=jo||document.createElement("div").style,"filter"!==(t=x(t))&&t in jo)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<xo.length;n++){var r=xo[n]+e;if(r in jo)return r}}));function To(t,e){var n=e.data,r=t.data;if(!(o(n.staticStyle)&&o(n.style)&&o(r.staticStyle)&&o(r.style))){var i,a,c=e.elm,u=r.staticStyle,f=r.normalizedStyle||r.style||{},l=u||f,h=_o(e.data.style)||{};e.data.normalizedStyle=s(h.__ob__)?L({},h):h;var d=function(t,e){var n,r={};if(e)for(var i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=wo(i.data))&&L(r,n);(n=wo(t.data))&&L(r,n);for(var o=t;o=o.parent;)o.data&&(n=wo(o.data))&&L(r,n);return r}(e,!0);for(a in l)o(d[a])&&So(c,a,"");for(a in d)i=d[a],So(c,a,null==i?"":i)}}var Co={create:To,update:To},Io=/\s+/;function Ro(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Io).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" ".concat(t.getAttribute("class")||""," ");n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Lo(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Io).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" ".concat(t.getAttribute("class")||""," "),r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function ko(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&L(e,$o(t.name||"v")),L(e,t),e}return"string"==typeof t?$o(t):void 0}}var $o=O((function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}})),No=J&&!Q,Po="transition",Bo="animation",Uo="transition",Mo="transitionend",Do="animation",Fo="animationend";No&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Uo="WebkitTransition",Mo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Do="WebkitAnimation",Fo="webkitAnimationEnd"));var Go=J?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Vo(t){Go((function(){Go(t)}))}function qo(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Ro(t,e))}function zo(t,e){t._transitionClasses&&_(t._transitionClasses,e),Lo(t,e)}function Ho(t,e,n){var r=Xo(t,e),i=r.type,o=r.timeout,s=r.propCount;if(!i)return n();var a=i===Po?Mo:Fo,c=0,u=function(){t.removeEventListener(a,f),n()},f=function(e){e.target===t&&++c>=s&&u()};setTimeout((function(){c<s&&u()}),o+1),t.addEventListener(a,f)}var Wo=/\b(transform|all)(,|$)/;function Xo(t,e){var n,r=window.getComputedStyle(t),i=(r[Uo+"Delay"]||"").split(", "),o=(r[Uo+"Duration"]||"").split(", "),s=Ko(i,o),a=(r[Do+"Delay"]||"").split(", "),c=(r[Do+"Duration"]||"").split(", "),u=Ko(a,c),f=0,l=0;return e===Po?s>0&&(n=Po,f=s,l=o.length):e===Bo?u>0&&(n=Bo,f=u,l=c.length):l=(n=(f=Math.max(s,u))>0?s>u?Po:Bo:null)?n===Po?o.length:c.length:0,{type:n,timeout:f,propCount:l,hasTransform:n===Po&&Wo.test(r[Uo+"Property"])}}function Ko(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return Jo(e)+Jo(t[n])})))}function Jo(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function Yo(t,e){var n=t.elm;s(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=ko(t.data.transition);if(!o(r)&&!s(n._enterCb)&&1===n.nodeType){for(var i=r.css,a=r.type,c=r.enterClass,l=r.enterToClass,h=r.enterActiveClass,d=r.appearClass,p=r.appearToClass,g=r.appearActiveClass,v=r.beforeEnter,b=r.enter,y=r.afterEnter,w=r.enterCancelled,_=r.beforeAppear,j=r.appear,E=r.afterAppear,O=r.appearCancelled,S=r.duration,x=dr,A=dr.$vnode;A&&A.parent;)x=A.context,A=A.parent;var T=!x._isMounted||!t.isRootInsert;if(!T||j||""===j){var C=T&&d?d:c,I=T&&g?g:h,R=T&&p?p:l,L=T&&_||v,k=T&&u(j)?j:b,$=T&&E||y,N=T&&O||w,P=m(f(S)?S.enter:S);0;var B=!1!==i&&!Q,U=ts(k),D=n._enterCb=M((function(){B&&(zo(n,R),zo(n,I)),D.cancelled?(B&&zo(n,C),N&&N(n)):$&&$(n),n._enterCb=null}));t.data.show||$e(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),k&&k(n,D)})),L&&L(n),B&&(qo(n,C),qo(n,I),Vo((function(){zo(n,C),D.cancelled||(qo(n,R),U||(Qo(P)?setTimeout(D,P):Ho(n,a,D)))}))),t.data.show&&(e&&e(),k&&k(n,D)),B||U||D()}}}function Zo(t,e){var n=t.elm;s(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=ko(t.data.transition);if(o(r)||1!==n.nodeType)return e();if(!s(n._leaveCb)){var i=r.css,a=r.type,c=r.leaveClass,u=r.leaveToClass,l=r.leaveActiveClass,h=r.beforeLeave,d=r.leave,p=r.afterLeave,g=r.leaveCancelled,v=r.delayLeave,b=r.duration,y=!1!==i&&!Q,w=ts(d),_=m(f(b)?b.leave:b);0;var j=n._leaveCb=M((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),y&&(zo(n,u),zo(n,l)),j.cancelled?(y&&zo(n,c),g&&g(n)):(e(),p&&p(n)),n._leaveCb=null}));v?v(E):E()}function E(){j.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),h&&h(n),y&&(qo(n,c),qo(n,l),Vo((function(){zo(n,c),j.cancelled||(qo(n,u),w||(Qo(_)?setTimeout(j,_):Ho(n,a,j)))}))),d&&d(n,j),y||w||j())}}function Qo(t){return"number"==typeof t&&!isNaN(t)}function ts(t){if(o(t))return!1;var e=t.fns;return s(e)?ts(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function es(t,e){!0!==e.data.show&&Yo(e)}var ns=function(t){var e,n,r={},u=t.modules,f=t.nodeOps;for(e=0;e<Vi.length;++e)for(r[Vi[e]]=[],n=0;n<u.length;++n)s(u[n][Vi[e]])&&r[Vi[e]].push(u[n][Vi[e]]);function l(t){var e=f.parentNode(t);s(e)&&f.removeChild(e,t)}function h(t,e,n,i,o,c,u){if(s(t.elm)&&s(c)&&(t=c[u]=mt(t)),t.isRootInsert=!o,!function(t,e,n,i){var o=t.data;if(s(o)){var c=s(t.componentInstance)&&o.keepAlive;if(s(o=o.hook)&&s(o=o.init)&&o(t,!1),s(t.componentInstance))return d(t,e),p(n,t.elm,i),a(c)&&function(t,e,n,i){var o,a=t;for(;a.componentInstance;)if(s(o=(a=a.componentInstance._vnode).data)&&s(o=o.transition)){for(o=0;o<r.activate.length;++o)r.activate[o](Gi,a);e.push(a);break}p(n,t.elm,i)}(t,e,n,i),!0}}(t,e,n,i)){var l=t.data,h=t.children,v=t.tag;s(v)?(t.elm=t.ns?f.createElementNS(t.ns,v):f.createElement(v,t),m(t),g(t,h,e),s(l)&&b(t,e),p(n,t.elm,i)):a(t.isComment)?(t.elm=f.createComment(t.text),p(n,t.elm,i)):(t.elm=f.createTextNode(t.text),p(n,t.elm,i))}}function d(t,e){s(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,v(t)?(b(t,e),m(t)):(Di(t),e.push(t))}function p(t,e,n){s(t)&&(s(n)?f.parentNode(n)===t&&f.insertBefore(t,e,n):f.appendChild(t,e))}function g(t,e,n){if(i(e)){0;for(var r=0;r<e.length;++r)h(e[r],n,t.elm,null,!0,e,r)}else c(t.text)&&f.appendChild(t.elm,f.createTextNode(String(t.text)))}function v(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return s(t.tag)}function b(t,n){for(var i=0;i<r.create.length;++i)r.create[i](Gi,t);s(e=t.data.hook)&&(s(e.create)&&e.create(Gi,t),s(e.insert)&&n.push(t))}function m(t){var e;if(s(e=t.fnScopeId))f.setStyleScope(t.elm,e);else for(var n=t;n;)s(e=n.context)&&s(e=e.$options._scopeId)&&f.setStyleScope(t.elm,e),n=n.parent;s(e=dr)&&e!==t.context&&e!==t.fnContext&&s(e=e.$options._scopeId)&&f.setStyleScope(t.elm,e)}function w(t,e,n,r,i,o){for(;r<=i;++r)h(n[r],o,t,e,!1,n,r)}function _(t){var e,n,i=t.data;if(s(i))for(s(e=i.hook)&&s(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(s(e=t.children))for(n=0;n<t.children.length;++n)_(t.children[n])}function j(t,e,n){for(;e<=n;++e){var r=t[e];s(r)&&(s(r.tag)?(E(r),_(r)):l(r.elm))}}function E(t,e){if(s(e)||s(t.data)){var n,i=r.remove.length+1;for(s(e)?e.listeners+=i:e=function(t,e){function n(){0==--n.listeners&&l(t)}return n.listeners=e,n}(t.elm,i),s(n=t.componentInstance)&&s(n=n._vnode)&&s(n.data)&&E(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);s(n=t.data.hook)&&s(n=n.remove)?n(t,e):e()}else l(t.elm)}function O(t,e,n,r){for(var i=n;i<r;i++){var o=e[i];if(s(o)&&qi(t,o))return i}}function S(t,e,n,i,c,u){if(t!==e){s(e.elm)&&s(i)&&(e=i[c]=mt(e));var l=e.elm=t.elm;if(a(t.isAsyncPlaceholder))s(e.asyncFactory.resolved)?T(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var d,p=e.data;s(p)&&s(d=p.hook)&&s(d=d.prepatch)&&d(t,e);var g=t.children,b=e.children;if(s(p)&&v(e)){for(d=0;d<r.update.length;++d)r.update[d](t,e);s(d=p.hook)&&s(d=d.update)&&d(t,e)}o(e.text)?s(g)&&s(b)?g!==b&&function(t,e,n,r,i){var a,c,u,l=0,d=0,p=e.length-1,g=e[0],v=e[p],b=n.length-1,m=n[0],y=n[b],_=!i;for(;l<=p&&d<=b;)o(g)?g=e[++l]:o(v)?v=e[--p]:qi(g,m)?(S(g,m,r,n,d),g=e[++l],m=n[++d]):qi(v,y)?(S(v,y,r,n,b),v=e[--p],y=n[--b]):qi(g,y)?(S(g,y,r,n,b),_&&f.insertBefore(t,g.elm,f.nextSibling(v.elm)),g=e[++l],y=n[--b]):qi(v,m)?(S(v,m,r,n,d),_&&f.insertBefore(t,v.elm,g.elm),v=e[--p],m=n[++d]):(o(a)&&(a=zi(e,l,p)),o(c=s(m.key)?a[m.key]:O(m,e,l,p))?h(m,r,t,g.elm,!1,n,d):qi(u=e[c],m)?(S(u,m,r,n,d),e[c]=void 0,_&&f.insertBefore(t,u.elm,g.elm)):h(m,r,t,g.elm,!1,n,d),m=n[++d]);l>p?w(t,o(n[b+1])?null:n[b+1].elm,n,d,b,r):d>b&&j(e,l,p)}(l,g,b,n,u):s(b)?(s(t.text)&&f.setTextContent(l,""),w(l,null,b,0,b.length-1,n)):s(g)?j(g,0,g.length-1):s(t.text)&&f.setTextContent(l,""):t.text!==e.text&&f.setTextContent(l,e.text),s(p)&&s(d=p.hook)&&s(d=d.postpatch)&&d(t,e)}}}function x(t,e,n){if(a(n)&&s(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var A=y("attrs,class,staticClass,staticStyle,key");function T(t,e,n,r){var i,o=e.tag,c=e.data,u=e.children;if(r=r||c&&c.pre,e.elm=t,a(e.isComment)&&s(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(s(c)&&(s(i=c.hook)&&s(i=i.init)&&i(e,!0),s(i=e.componentInstance)))return d(e,n),!0;if(s(o)){if(s(u))if(t.hasChildNodes())if(s(i=c)&&s(i=i.domProps)&&s(i=i.innerHTML)){if(i!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,h=0;h<u.length;h++){if(!l||!T(l,u[h],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else g(e,u,n);if(s(c)){var p=!1;for(var v in c)if(!A(v)){p=!0,b(e,n);break}!p&&c.class&&ir(c.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,i){if(!o(e)){var c,u=!1,l=[];if(o(t))u=!0,h(e,l);else{var d=s(t.nodeType);if(!d&&qi(t,e))S(t,e,l,null,null,i);else{if(d){if(1===t.nodeType&&t.hasAttribute(F)&&(t.removeAttribute(F),n=!0),a(n)&&T(t,e,l))return x(e,l,!0),t;c=t,t=new gt(f.tagName(c).toLowerCase(),{},[],void 0,c)}var p=t.elm,g=f.parentNode(p);if(h(e,l,p._leaveCb?null:g,f.nextSibling(p)),s(e.parent))for(var b=e.parent,m=v(e);b;){for(var y=0;y<r.destroy.length;++y)r.destroy[y](b);if(b.elm=e.elm,m){for(var w=0;w<r.create.length;++w)r.create[w](Gi,b);var E=b.data.hook.insert;if(E.merged)for(var O=E.fns.slice(1),A=0;A<O.length;A++)O[A]()}else Di(b);b=b.parent}s(g)?j([t],0,0):s(t.tag)&&_(t)}}return x(e,l,u),e.elm}s(t)&&_(t)}}({nodeOps:Ui,modules:[no,oo,go,mo,Co,J?{create:es,activate:es,remove:function(t,e){!0!==t.data.show?Zo(t,e):e()}}:{}].concat(Zi)});Q&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&fs(t,"input")}));var rs={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?$e(n,"postpatch",(function(){rs.componentUpdated(t,e,n)})):is(t,e,n.context),t._vOptions=[].map.call(t.options,as)):("textarea"===n.tag||Bi(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",cs),t.addEventListener("compositionend",us),t.addEventListener("change",us),Q&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){is(t,e,n.context);var r=t._vOptions,i=t._vOptions=[].map.call(t.options,as);if(i.some((function(t,e){return!B(t,r[e])})))(t.multiple?e.value.some((function(t){return ss(t,i)})):e.value!==e.oldValue&&ss(e.value,i))&&fs(t,"change")}}};function is(t,e,n){os(t,e,n),(Z||tt)&&setTimeout((function(){os(t,e,n)}),0)}function os(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,s,a=0,c=t.options.length;a<c;a++)if(s=t.options[a],i)o=U(r,as(s))>-1,s.selected!==o&&(s.selected=o);else if(B(as(s),r))return void(t.selectedIndex!==a&&(t.selectedIndex=a));i||(t.selectedIndex=-1)}}function ss(t,e){return e.every((function(e){return!B(e,t)}))}function as(t){return"_value"in t?t._value:t.value}function cs(t){t.target.composing=!0}function us(t){t.target.composing&&(t.target.composing=!1,fs(t.target,"input"))}function fs(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ls(t){return!t.componentInstance||t.data&&t.data.transition?t:ls(t.componentInstance._vnode)}var hs={bind:function(t,e,n){var r=e.value,i=(n=ls(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,Yo(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=ls(n)).data&&n.data.transition?(n.data.show=!0,r?Yo(n,(function(){t.style.display=t.__vOriginalDisplay})):Zo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},ds={model:rs,show:hs},ps={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function gs(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?gs(mn(e.children)):t}function vs(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var r in i)e[x(r)]=i[r];return e}function bs(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var ms=function(t){return t.tag||nn(t)},ys=function(t){return"show"===t.name},ws={name:"transition",props:ps,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(ms)).length){0;var r=this.mode;0;var i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var o=gs(i);if(!o)return i;if(this._leaving)return bs(t,i);var s="__transition-".concat(this._uid,"-");o.key=null==o.key?o.isComment?s+"comment":s+o.tag:c(o.key)?0===String(o.key).indexOf(s)?o.key:s+o.key:o.key;var a=(o.data||(o.data={})).transition=vs(this),u=this._vnode,f=gs(u);if(o.data.directives&&o.data.directives.some(ys)&&(o.data.show=!0),f&&f.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,f)&&!nn(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=L({},a);if("out-in"===r)return this._leaving=!0,$e(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),bs(t,i);if("in-out"===r){if(nn(o))return u;var h,d=function(){h()};$e(a,"afterEnter",d),$e(a,"enterCancelled",d),$e(l,"delayLeave",(function(t){h=t}))}}return i}}},_s=L({tag:String,moveClass:String},ps);delete _s.mode;var js={props:_s,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=pr(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],s=vs(this),a=0;a<i.length;a++){if((f=i[a]).tag)if(null!=f.key&&0!==String(f.key).indexOf("__vlist"))o.push(f),n[f.key]=f,(f.data||(f.data={})).transition=s;else;}if(r){var c=[],u=[];for(a=0;a<r.length;a++){var f;(f=r[a]).data.transition=s,f.data.pos=f.elm.getBoundingClientRect(),n[f.key]?c.push(f):u.push(f)}this.kept=t(e,null,c),this.removed=u}return t(e,null,o)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Es),t.forEach(Os),t.forEach(Ss),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;qo(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Mo,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Mo,t),n._moveCb=null,zo(n,e))})}})))},methods:{hasMove:function(t,e){if(!No)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Lo(n,t)})),Ro(n,e),n.style.display="none",this.$el.appendChild(n);var r=Xo(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function Es(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Os(t){t.data.newPos=t.elm.getBoundingClientRect()}function Ss(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate(".concat(r,"px,").concat(i,"px)"),o.transitionDuration="0s"}}var xs={Transition:ws,TransitionGroup:js};fi.config.mustUseProp=function(t,e,n){return"value"===n&&yi(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},fi.config.isReservedTag=Ni,fi.config.isReservedAttr=mi,fi.config.getTagNamespace=function(t){return $i(t)?"svg":"math"===t?"math":void 0},fi.config.isUnknownElement=function(t){if(!J)return!0;if(Ni(t))return!1;if(t=t.toLowerCase(),null!=Pi[t])return Pi[t];var e=document.createElement(t);return t.indexOf("-")>-1?Pi[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Pi[t]=/HTMLUnknownElement/.test(e.toString())},L(fi.options.directives,ds),L(fi.options.components,xs),fi.prototype.__patch__=J?ns:$,fi.prototype.$mount=function(t,e){return function(t,e,n){var r;t.$el=e,t.$options.render||(t.$options.render=vt),mr(t,"beforeMount"),r=function(){t._update(t._render(),n)},new cr(t,r,$,{before:function(){t._isMounted&&!t._isDestroyed&&mr(t,"beforeUpdate")}},!0),n=!1;var i=t._preWatchers;if(i)for(var o=0;o<i.length;o++)i[o].run();return null==t.$vnode&&(t._isMounted=!0,mr(t,"mounted")),t}(this,t=t&&J?function(t){if("string"==typeof t){return document.querySelector(t)||document.createElement("div")}return t}(t):void 0,e)},J&&setTimeout((function(){q.devtools&&ct&&ct.emit("init",fi)}),0)},20629:(t,e,n)=>{"use strict";n.d(e,{Se:()=>E,ZP:()=>L,nv:()=>O,rn:()=>_,yh:()=>h});var r=("undefined"!=typeof window?window:void 0!==n.g?n.g:{}).__VUE_DEVTOOLS_GLOBAL_HOOK__;function i(t,e){if(void 0===e&&(e=[]),null===t||"object"!=typeof t)return t;var n,r=(n=function(e){return e.original===t},e.filter(n)[0]);if(r)return r.copy;var o=Array.isArray(t)?[]:{};return e.push({original:t,copy:o}),Object.keys(t).forEach((function(n){o[n]=i(t[n],e)})),o}function o(t,e){Object.keys(t).forEach((function(n){return e(t[n],n)}))}function s(t){return null!==t&&"object"==typeof t}var a=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"==typeof n?n():n)||{}},c={namespaced:{configurable:!0}};c.namespaced.get=function(){return!!this._rawModule.namespaced},a.prototype.addChild=function(t,e){this._children[t]=e},a.prototype.removeChild=function(t){delete this._children[t]},a.prototype.getChild=function(t){return this._children[t]},a.prototype.hasChild=function(t){return t in this._children},a.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},a.prototype.forEachChild=function(t){o(this._children,t)},a.prototype.forEachGetter=function(t){this._rawModule.getters&&o(this._rawModule.getters,t)},a.prototype.forEachAction=function(t){this._rawModule.actions&&o(this._rawModule.actions,t)},a.prototype.forEachMutation=function(t){this._rawModule.mutations&&o(this._rawModule.mutations,t)},Object.defineProperties(a.prototype,c);var u=function(t){this.register([],t,!1)};function f(t,e,n){if(e.update(n),n.modules)for(var r in n.modules){if(!e.getChild(r))return void 0;f(t.concat(r),e.getChild(r),n.modules[r])}}u.prototype.get=function(t){return t.reduce((function(t,e){return t.getChild(e)}),this.root)},u.prototype.getNamespace=function(t){var e=this.root;return t.reduce((function(t,n){return t+((e=e.getChild(n)).namespaced?n+"/":"")}),"")},u.prototype.update=function(t){f([],this.root,t)},u.prototype.register=function(t,e,n){var r=this;void 0===n&&(n=!0);var i=new a(e,n);0===t.length?this.root=i:this.get(t.slice(0,-1)).addChild(t[t.length-1],i);e.modules&&o(e.modules,(function(e,i){r.register(t.concat(i),e,n)}))},u.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1],r=e.getChild(n);r&&r.runtime&&e.removeChild(n)},u.prototype.isRegistered=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];return!!e&&e.hasChild(n)};var l;var h=function(t){var e=this;void 0===t&&(t={}),!l&&"undefined"!=typeof window&&window.Vue&&w(window.Vue);var n=t.plugins;void 0===n&&(n=[]);var i=t.strict;void 0===i&&(i=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new u(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new l,this._makeLocalGettersCache=Object.create(null);var o=this,s=this.dispatch,a=this.commit;this.dispatch=function(t,e){return s.call(o,t,e)},this.commit=function(t,e,n){return a.call(o,t,e,n)},this.strict=i;var c=this._modules.root.state;b(this,c,[],this._modules.root),v(this,c),n.forEach((function(t){return t(e)})),(void 0!==t.devtools?t.devtools:l.config.devtools)&&function(t){r&&(t._devtoolHook=r,r.emit("vuex:init",t),r.on("vuex:travel-to-state",(function(e){t.replaceState(e)})),t.subscribe((function(t,e){r.emit("vuex:mutation",t,e)}),{prepend:!0}),t.subscribeAction((function(t,e){r.emit("vuex:action",t,e)}),{prepend:!0}))}(this)},d={state:{configurable:!0}};function p(t,e,n){return e.indexOf(t)<0&&(n&&n.prepend?e.unshift(t):e.push(t)),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function g(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;b(t,n,[],t._modules.root,!0),v(t,n,e)}function v(t,e,n){var r=t._vm;t.getters={},t._makeLocalGettersCache=Object.create(null);var i=t._wrappedGetters,s={};o(i,(function(e,n){s[n]=function(t,e){return function(){return t(e)}}(e,t),Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})}));var a=l.config.silent;l.config.silent=!0,t._vm=new l({data:{$$state:e},computed:s}),l.config.silent=a,t.strict&&function(t){t._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(t),r&&(n&&t._withCommit((function(){r._data.$$state=null})),l.nextTick((function(){return r.$destroy()})))}function b(t,e,n,r,i){var o=!n.length,s=t._modules.getNamespace(n);if(r.namespaced&&(t._modulesNamespaceMap[s],t._modulesNamespaceMap[s]=r),!o&&!i){var a=m(e,n.slice(0,-1)),c=n[n.length-1];t._withCommit((function(){l.set(a,c,r.state)}))}var u=r.context=function(t,e,n){var r=""===e,i={dispatch:r?t.dispatch:function(n,r,i){var o=y(n,r,i),s=o.payload,a=o.options,c=o.type;return a&&a.root||(c=e+c),t.dispatch(c,s)},commit:r?t.commit:function(n,r,i){var o=y(n,r,i),s=o.payload,a=o.options,c=o.type;a&&a.root||(c=e+c),t.commit(c,s,a)}};return Object.defineProperties(i,{getters:{get:r?function(){return t.getters}:function(){return function(t,e){if(!t._makeLocalGettersCache[e]){var n={},r=e.length;Object.keys(t.getters).forEach((function(i){if(i.slice(0,r)===e){var o=i.slice(r);Object.defineProperty(n,o,{get:function(){return t.getters[i]},enumerable:!0})}})),t._makeLocalGettersCache[e]=n}return t._makeLocalGettersCache[e]}(t,e)}},state:{get:function(){return m(t.state,n)}}}),i}(t,s,n);r.forEachMutation((function(e,n){!function(t,e,n,r){var i=t._mutations[e]||(t._mutations[e]=[]);i.push((function(e){n.call(t,r.state,e)}))}(t,s+n,e,u)})),r.forEachAction((function(e,n){var r=e.root?n:s+n,i=e.handler||e;!function(t,e,n,r){var i=t._actions[e]||(t._actions[e]=[]);i.push((function(e){var i,o=n.call(t,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:t.getters,rootState:t.state},e);return(i=o)&&"function"==typeof i.then||(o=Promise.resolve(o)),t._devtoolHook?o.catch((function(e){throw t._devtoolHook.emit("vuex:error",e),e})):o}))}(t,r,i,u)})),r.forEachGetter((function(e,n){!function(t,e,n,r){if(t._wrappedGetters[e])return void 0;t._wrappedGetters[e]=function(t){return n(r.state,r.getters,t.state,t.getters)}}(t,s+n,e,u)})),r.forEachChild((function(r,o){b(t,e,n.concat(o),r,i)}))}function m(t,e){return e.reduce((function(t,e){return t[e]}),t)}function y(t,e,n){return s(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function w(t){l&&t===l||function(t){if(Number(t.version.split(".")[0])>=2)t.mixin({beforeCreate:n});else{var e=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[n].concat(t.init):n,e.call(this,t)}}function n(){var t=this.$options;t.store?this.$store="function"==typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}(l=t)}d.state.get=function(){return this._vm._data.$$state},d.state.set=function(t){0},h.prototype.commit=function(t,e,n){var r=this,i=y(t,e,n),o=i.type,s=i.payload,a=(i.options,{type:o,payload:s}),c=this._mutations[o];c&&(this._withCommit((function(){c.forEach((function(t){t(s)}))})),this._subscribers.slice().forEach((function(t){return t(a,r.state)})))},h.prototype.dispatch=function(t,e){var n=this,r=y(t,e),i=r.type,o=r.payload,s={type:i,payload:o},a=this._actions[i];if(a){try{this._actionSubscribers.slice().filter((function(t){return t.before})).forEach((function(t){return t.before(s,n.state)}))}catch(t){0}var c=a.length>1?Promise.all(a.map((function(t){return t(o)}))):a[0](o);return new Promise((function(t,e){c.then((function(e){try{n._actionSubscribers.filter((function(t){return t.after})).forEach((function(t){return t.after(s,n.state)}))}catch(t){0}t(e)}),(function(t){try{n._actionSubscribers.filter((function(t){return t.error})).forEach((function(e){return e.error(s,n.state,t)}))}catch(t){0}e(t)}))}))}},h.prototype.subscribe=function(t,e){return p(t,this._subscribers,e)},h.prototype.subscribeAction=function(t,e){return p("function"==typeof t?{before:t}:t,this._actionSubscribers,e)},h.prototype.watch=function(t,e,n){var r=this;return this._watcherVM.$watch((function(){return t(r.state,r.getters)}),e,n)},h.prototype.replaceState=function(t){var e=this;this._withCommit((function(){e._vm._data.$$state=t}))},h.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"==typeof t&&(t=[t]),this._modules.register(t,e),b(this,this.state,t,this._modules.get(t),n.preserveState),v(this,this.state)},h.prototype.unregisterModule=function(t){var e=this;"string"==typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit((function(){var n=m(e.state,t.slice(0,-1));l.delete(n,t[t.length-1])})),g(this)},h.prototype.hasModule=function(t){return"string"==typeof t&&(t=[t]),this._modules.isRegistered(t)},h.prototype.hotUpdate=function(t){this._modules.update(t),g(this,!0)},h.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(h.prototype,d);var _=x((function(t,e){var n={};return S(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var r=A(this.$store,"mapState",t);if(!r)return;e=r.context.state,n=r.context.getters}return"function"==typeof i?i.call(this,e,n):e[i]},n[r].vuex=!0})),n})),j=x((function(t,e){var n={};return S(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.commit;if(t){var o=A(this.$store,"mapMutations",t);if(!o)return;r=o.context.commit}return"function"==typeof i?i.apply(this,[r].concat(e)):r.apply(this.$store,[i].concat(e))}})),n})),E=x((function(t,e){var n={};return S(e).forEach((function(e){var r=e.key,i=e.val;i=t+i,n[r]=function(){if(!t||A(this.$store,"mapGetters",t))return this.$store.getters[i]},n[r].vuex=!0})),n})),O=x((function(t,e){var n={};return S(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.dispatch;if(t){var o=A(this.$store,"mapActions",t);if(!o)return;r=o.context.dispatch}return"function"==typeof i?i.apply(this,[r].concat(e)):r.apply(this.$store,[i].concat(e))}})),n}));function S(t){return function(t){return Array.isArray(t)||s(t)}(t)?Array.isArray(t)?t.map((function(t){return{key:t,val:t}})):Object.keys(t).map((function(e){return{key:e,val:t[e]}})):[]}function x(t){return function(e,n){return"string"!=typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function A(t,e,n){return t._modulesNamespaceMap[n]}function T(t,e,n){var r=n?t.groupCollapsed:t.group;try{r.call(t,e)}catch(n){t.log(e)}}function C(t){try{t.groupEnd()}catch(e){t.log("ββ log end ββ")}}function I(){var t=new Date;return" @ "+R(t.getHours(),2)+":"+R(t.getMinutes(),2)+":"+R(t.getSeconds(),2)+"."+R(t.getMilliseconds(),3)}function R(t,e){return n="0",r=e-t.toString().length,new Array(r+1).join(n)+t;var n,r}const L={Store:h,install:w,version:"3.6.2",mapState:_,mapMutations:j,mapGetters:E,mapActions:O,createNamespacedHelpers:function(t){return{mapState:_.bind(null,t),mapGetters:E.bind(null,t),mapMutations:j.bind(null,t),mapActions:O.bind(null,t)}},createLogger:function(t){void 0===t&&(t={});var e=t.collapsed;void 0===e&&(e=!0);var n=t.filter;void 0===n&&(n=function(t,e,n){return!0});var r=t.transformer;void 0===r&&(r=function(t){return t});var o=t.mutationTransformer;void 0===o&&(o=function(t){return t});var s=t.actionFilter;void 0===s&&(s=function(t,e){return!0});var a=t.actionTransformer;void 0===a&&(a=function(t){return t});var c=t.logMutations;void 0===c&&(c=!0);var u=t.logActions;void 0===u&&(u=!0);var f=t.logger;return void 0===f&&(f=console),function(t){var l=i(t.state);void 0!==f&&(c&&t.subscribe((function(t,s){var a=i(s);if(n(t,l,a)){var c=I(),u=o(t),h="mutation "+t.type+c;T(f,h,e),f.log("%c prev state","color: #9E9E9E; font-weight: bold",r(l)),f.log("%c mutation","color: #03A9F4; font-weight: bold",u),f.log("%c next state","color: #4CAF50; font-weight: bold",r(a)),C(f)}l=a})),u&&t.subscribeAction((function(t,n){if(s(t,n)){var r=I(),i=a(t),o="action "+t.type+r;T(f,o,e),f.log("%c action","color: #03A9F4; font-weight: bold",i),C(f)}})))}}}},57888:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(77907),i=n(92426);function o(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var s=o(r),a=o(i),c=function(){function t(t){"function"==typeof t.getVersion&&s.default(t.getVersion())?a.default(t.getVersion())!==a.default(this.getVersion())&&console.warn("Proxying an event bus of version "+t.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=t}return t.prototype.getVersion=function(){return"3.1.0"},t.prototype.subscribe=function(t,e){this.bus.subscribe(t,e)},t.prototype.unsubscribe=function(t,e){this.bus.unsubscribe(t,e)},t.prototype.emit=function(t,e){this.bus.emit(t,e)},t}(),u=function(){function t(){this.handlers=new Map}return t.prototype.getVersion=function(){return"3.1.0"},t.prototype.subscribe=function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).concat(e))},t.prototype.unsubscribe=function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).filter((function(t){return t!=e})))},t.prototype.emit=function(t,e){(this.handlers.get(t)||[]).forEach((function(t){try{t(e)}catch(t){console.error("could not invoke event listener",t)}}))},t}(),f=null;function l(){return null!==f?f:"undefined"==typeof window?new Proxy({},{get:function(){return function(){return console.error("Window not available, EventBus can not be established!")}}}):(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),f=void 0!==(null===window||void 0===window?void 0:window._nc_event_bus)?new c(window._nc_event_bus):window._nc_event_bus=new u)}e.ProxyBus=c,e.SimpleBus=u,e.emit=function(t,e){l().emit(t,e)},e.subscribe=function(t,e){l().subscribe(t,e)},e.unsubscribe=function(t,e){l().unsubscribe(t,e)}},77958:(t,e,n)=>{"use strict";n.d(e,{IH:()=>s,_S:()=>a,ts:()=>f});var r=n(69183);let i;const o=[];function s(){if(void 0===i){const t=document?.getElementsByTagName("head")[0];i=t?t.getAttribute("data-requesttoken"):null}return i}function a(t){o.push(t)}(0,r.Ld)("csrf-token-update",(t=>{i=t.token,o.forEach((e=>{try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}));const c=(t,e)=>t?t.getAttribute(e):null;let u;function f(){if(void 0!==u)return u;const t=document?.getElementsByTagName("head")[0];if(!t)return null;const e=c(t,"data-user");return null===e?(u=null,u):(u={uid:e,displayName:c(t,"data-user-displayname"),isAdmin:!!window._oc_isadmin},u)}},47845:(t,e,n)=>{"use strict";n.d(e,{Z:()=>ie});var r={};function i(t,e){return function(){return t.apply(e,arguments)}}n.r(r),n.d(r,{hasBrowserEnv:()=>it,hasStandardBrowserEnv:()=>ot,hasStandardBrowserWebWorkerEnv:()=>at});const{toString:o}=Object.prototype,{getPrototypeOf:s}=Object,a=(c=Object.create(null),t=>{const e=o.call(t);return c[e]||(c[e]=e.slice(8,-1).toLowerCase())});var c;const u=t=>(t=t.toLowerCase(),e=>a(e)===t),f=t=>e=>typeof e===t,{isArray:l}=Array,h=f("undefined");const d=u("ArrayBuffer");const p=f("string"),g=f("function"),v=f("number"),b=t=>null!==t&&"object"==typeof t,m=t=>{if("object"!==a(t))return!1;const e=s(t);return!(null!==e&&e!==Object.prototype&&null!==Object.getPrototypeOf(e)||Symbol.toStringTag in t||Symbol.iterator in t)},y=u("Date"),w=u("File"),_=u("Blob"),j=u("FileList"),E=u("URLSearchParams");function O(t,e,{allOwnKeys:n=!1}={}){if(null==t)return;let r,i;if("object"!=typeof t&&(t=[t]),l(t))for(r=0,i=t.length;r<i;r++)e.call(null,t[r],r,t);else{const i=n?Object.getOwnPropertyNames(t):Object.keys(t),o=i.length;let s;for(r=0;r<o;r++)s=i[r],e.call(null,t[s],s,t)}}function S(t,e){e=e.toLowerCase();const n=Object.keys(t);let r,i=n.length;for(;i-- >0;)if(r=n[i],e===r.toLowerCase())return r;return null}const x="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,A=t=>!h(t)&&t!==x;const T=(C="undefined"!=typeof Uint8Array&&s(Uint8Array),t=>C&&t instanceof C);var C;const I=u("HTMLFormElement"),R=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),L=u("RegExp"),k=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};O(n,((n,i)=>{let o;!1!==(o=e(n,i,t))&&(r[i]=o||n)})),Object.defineProperties(t,r)},$="abcdefghijklmnopqrstuvwxyz",N="0123456789",P={DIGIT:N,ALPHA:$,ALPHA_DIGIT:$+$.toUpperCase()+N};const B=u("AsyncFunction"),U={isArray:l,isArrayBuffer:d,isBuffer:function(t){return null!==t&&!h(t)&&null!==t.constructor&&!h(t.constructor)&&g(t.constructor.isBuffer)&&t.constructor.isBuffer(t)},isFormData:t=>{let e;return t&&("function"==typeof FormData&&t instanceof FormData||g(t.append)&&("formdata"===(e=a(t))||"object"===e&&g(t.toString)&&"[object FormData]"===t.toString()))},isArrayBufferView:function(t){let e;return e="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&d(t.buffer),e},isString:p,isNumber:v,isBoolean:t=>!0===t||!1===t,isObject:b,isPlainObject:m,isUndefined:h,isDate:y,isFile:w,isBlob:_,isRegExp:L,isFunction:g,isStream:t=>b(t)&&g(t.pipe),isURLSearchParams:E,isTypedArray:T,isFileList:j,forEach:O,merge:function t(){const{caseless:e}=A(this)&&this||{},n={},r=(r,i)=>{const o=e&&S(n,i)||i;m(n[o])&&m(r)?n[o]=t(n[o],r):m(r)?n[o]=t({},r):l(r)?n[o]=r.slice():n[o]=r};for(let t=0,e=arguments.length;t<e;t++)arguments[t]&&O(arguments[t],r);return n},extend:(t,e,n,{allOwnKeys:r}={})=>(O(e,((e,r)=>{n&&g(e)?t[r]=i(e,n):t[r]=e}),{allOwnKeys:r}),t),trim:t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:t=>(65279===t.charCodeAt(0)&&(t=t.slice(1)),t),inherits:(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},toFlatObject:(t,e,n,r)=>{let i,o,a;const c={};if(e=e||{},null==t)return e;do{for(i=Object.getOwnPropertyNames(t),o=i.length;o-- >0;)a=i[o],r&&!r(a,t,e)||c[a]||(e[a]=t[a],c[a]=!0);t=!1!==n&&s(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},kindOf:a,kindOfTest:u,endsWith:(t,e,n)=>{t=String(t),(void 0===n||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return-1!==r&&r===n},toArray:t=>{if(!t)return null;if(l(t))return t;let e=t.length;if(!v(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},forEachEntry:(t,e)=>{const n=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=n.next())&&!r.done;){const n=r.value;e.call(t,n[0],n[1])}},matchAll:(t,e)=>{let n;const r=[];for(;null!==(n=t.exec(e));)r.push(n);return r},isHTMLForm:I,hasOwnProperty:R,hasOwnProp:R,reduceDescriptors:k,freezeMethods:t=>{k(t,((e,n)=>{if(g(t)&&-1!==["arguments","caller","callee"].indexOf(n))return!1;const r=t[n];g(r)&&(e.enumerable=!1,"writable"in e?e.writable=!1:e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")}))}))},toObjectSet:(t,e)=>{const n={},r=t=>{t.forEach((t=>{n[t]=!0}))};return l(t)?r(t):r(String(t).split(e)),n},toCamelCase:t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(t,e,n){return e.toUpperCase()+n})),noop:()=>{},toFiniteNumber:(t,e)=>(t=+t,Number.isFinite(t)?t:e),findKey:S,global:x,isContextDefined:A,ALPHABET:P,generateString:(t=16,e=P.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n},isSpecCompliantForm:function(t){return!!(t&&g(t.append)&&"FormData"===t[Symbol.toStringTag]&&t[Symbol.iterator])},toJSONObject:t=>{const e=new Array(10),n=(t,r)=>{if(b(t)){if(e.indexOf(t)>=0)return;if(!("toJSON"in t)){e[r]=t;const i=l(t)?[]:{};return O(t,((t,e)=>{const o=n(t,r+1);!h(o)&&(i[e]=o)})),e[r]=void 0,i}}return t};return n(t,0)},isAsyncFn:B,isThenable:t=>t&&(b(t)||g(t))&&g(t.then)&&g(t.catch)};function M(t,e,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i)}U.inherits(M,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:U.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const D=M.prototype,F={};["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((t=>{F[t]={value:t}})),Object.defineProperties(M,F),Object.defineProperty(D,"isAxiosError",{value:!0}),M.from=(t,e,n,r,i,o)=>{const s=Object.create(D);return U.toFlatObject(t,s,(function(t){return t!==Error.prototype}),(t=>"isAxiosError"!==t)),M.call(s,t.message,e,n,r,i),s.cause=t,s.name=t.name,o&&Object.assign(s,o),s};const G=M;var V=n(23085).lW;function q(t){return U.isPlainObject(t)||U.isArray(t)}function z(t){return U.endsWith(t,"[]")?t.slice(0,-2):t}function H(t,e,n){return t?t.concat(e).map((function(t,e){return t=z(t),!n&&e?"["+t+"]":t})).join(n?".":""):e}const W=U.toFlatObject(U,{},null,(function(t){return/^is[A-Z]/.test(t)}));const X=function(t,e,n){if(!U.isObject(t))throw new TypeError("target must be an object");e=e||new FormData;const r=(n=U.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(t,e){return!U.isUndefined(e[t])}))).metaTokens,i=n.visitor||u,o=n.dots,s=n.indexes,a=(n.Blob||"undefined"!=typeof Blob&&Blob)&&U.isSpecCompliantForm(e);if(!U.isFunction(i))throw new TypeError("visitor must be a function");function c(t){if(null===t)return"";if(U.isDate(t))return t.toISOString();if(!a&&U.isBlob(t))throw new G("Blob is not supported. Use a Buffer instead.");return U.isArrayBuffer(t)||U.isTypedArray(t)?a&&"function"==typeof Blob?new Blob([t]):V.from(t):t}function u(t,n,i){let a=t;if(t&&!i&&"object"==typeof t)if(U.endsWith(n,"{}"))n=r?n:n.slice(0,-2),t=JSON.stringify(t);else if(U.isArray(t)&&function(t){return U.isArray(t)&&!t.some(q)}(t)||(U.isFileList(t)||U.endsWith(n,"[]"))&&(a=U.toArray(t)))return n=z(n),a.forEach((function(t,r){!U.isUndefined(t)&&null!==t&&e.append(!0===s?H([n],r,o):null===s?n:n+"[]",c(t))})),!1;return!!q(t)||(e.append(H(i,n,o),c(t)),!1)}const f=[],l=Object.assign(W,{defaultVisitor:u,convertValue:c,isVisitable:q});if(!U.isObject(t))throw new TypeError("data must be an object");return function t(n,r){if(!U.isUndefined(n)){if(-1!==f.indexOf(n))throw Error("Circular reference detected in "+r.join("."));f.push(n),U.forEach(n,(function(n,o){!0===(!(U.isUndefined(n)||null===n)&&i.call(e,n,U.isString(o)?o.trim():o,r,l))&&t(n,r?r.concat(o):[o])})),f.pop()}}(t),e};function K(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,(function(t){return e[t]}))}function J(t,e){this._pairs=[],t&&X(t,this,e)}const Y=J.prototype;Y.append=function(t,e){this._pairs.push([t,e])},Y.toString=function(t){const e=t?function(e){return t.call(this,e,K)}:K;return this._pairs.map((function(t){return e(t[0])+"="+e(t[1])}),"").join("&")};const Z=J;function Q(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function tt(t,e,n){if(!e)return t;const r=n&&n.encode||Q,i=n&&n.serialize;let o;if(o=i?i(e,n):U.isURLSearchParams(e)?e.toString():new Z(e,n).toString(r),o){const e=t.indexOf("#");-1!==e&&(t=t.slice(0,e)),t+=(-1===t.indexOf("?")?"?":"&")+o}return t}const et=class{constructor(){this.handlers=[]}use(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){U.forEach(this.handlers,(function(e){null!==e&&t(e)}))}},nt={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},rt={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:Z,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},it="undefined"!=typeof window&&"undefined"!=typeof document,ot=(st="undefined"!=typeof navigator&&navigator.product,it&&["ReactNative","NativeScript","NS"].indexOf(st)<0);var st;const at="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,ct={...r,...rt};const ut=function(t){function e(t,n,r,i){let o=t[i++];if("__proto__"===o)return!0;const s=Number.isFinite(+o),a=i>=t.length;if(o=!o&&U.isArray(r)?r.length:o,a)return U.hasOwnProp(r,o)?r[o]=[r[o],n]:r[o]=n,!s;r[o]&&U.isObject(r[o])||(r[o]=[]);return e(t,n,r[o],i)&&U.isArray(r[o])&&(r[o]=function(t){const e={},n=Object.keys(t);let r;const i=n.length;let o;for(r=0;r<i;r++)o=n[r],e[o]=t[o];return e}(r[o])),!s}if(U.isFormData(t)&&U.isFunction(t.entries)){const n={};return U.forEachEntry(t,((t,r)=>{e(function(t){return U.matchAll(/\w+|\[(\w*)]/g,t).map((t=>"[]"===t[0]?"":t[1]||t[0]))}(t),r,n,0)})),n}return null};const ft={transitional:nt,adapter:["xhr","http"],transformRequest:[function(t,e){const n=e.getContentType()||"",r=n.indexOf("application/json")>-1,i=U.isObject(t);i&&U.isHTMLForm(t)&&(t=new FormData(t));if(U.isFormData(t))return r&&r?JSON.stringify(ut(t)):t;if(U.isArrayBuffer(t)||U.isBuffer(t)||U.isStream(t)||U.isFile(t)||U.isBlob(t))return t;if(U.isArrayBufferView(t))return t.buffer;if(U.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let o;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(t,e){return X(t,new ct.classes.URLSearchParams,Object.assign({visitor:function(t,e,n,r){return ct.isNode&&U.isBuffer(t)?(this.append(e,t.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},e))}(t,this.formSerializer).toString();if((o=U.isFileList(t))||n.indexOf("multipart/form-data")>-1){const e=this.env&&this.env.FormData;return X(o?{"files[]":t}:t,e&&new e,this.formSerializer)}}return i||r?(e.setContentType("application/json",!1),function(t,e,n){if(U.isString(t))try{return(e||JSON.parse)(t),U.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){const e=this.transitional||ft.transitional,n=e&&e.forcedJSONParsing,r="json"===this.responseType;if(t&&U.isString(t)&&(n&&!this.responseType||r)){const n=!(e&&e.silentJSONParsing)&&r;try{return JSON.parse(t)}catch(t){if(n){if("SyntaxError"===t.name)throw G.from(t,G.ERR_BAD_RESPONSE,this,null,this.response);throw t}}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ct.classes.FormData,Blob:ct.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};U.forEach(["delete","get","head","post","put","patch"],(t=>{ft.headers[t]={}}));const lt=ft,ht=U.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"]),dt=Symbol("internals");function pt(t){return t&&String(t).trim().toLowerCase()}function gt(t){return!1===t||null==t?t:U.isArray(t)?t.map(gt):String(t)}function vt(t,e,n,r,i){return U.isFunction(r)?r.call(this,e,n):(i&&(e=n),U.isString(e)?U.isString(r)?-1!==e.indexOf(r):U.isRegExp(r)?r.test(e):void 0:void 0)}class bt{constructor(t){t&&this.set(t)}set(t,e,n){const r=this;function i(t,e,n){const i=pt(e);if(!i)throw new Error("header name must be a non-empty string");const o=U.findKey(r,i);(!o||void 0===r[o]||!0===n||void 0===n&&!1!==r[o])&&(r[o||e]=gt(t))}const o=(t,e)=>U.forEach(t,((t,n)=>i(t,n,e)));return U.isPlainObject(t)||t instanceof this.constructor?o(t,e):U.isString(t)&&(t=t.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim())?o((t=>{const e={};let n,r,i;return t&&t.split("\n").forEach((function(t){i=t.indexOf(":"),n=t.substring(0,i).trim().toLowerCase(),r=t.substring(i+1).trim(),!n||e[n]&&ht[n]||("set-cookie"===n?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)})),e})(t),e):null!=t&&i(e,t,n),this}get(t,e){if(t=pt(t)){const n=U.findKey(this,t);if(n){const t=this[n];if(!e)return t;if(!0===e)return function(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}(t);if(U.isFunction(e))return e.call(this,t,n);if(U.isRegExp(e))return e.exec(t);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,e){if(t=pt(t)){const n=U.findKey(this,t);return!(!n||void 0===this[n]||e&&!vt(0,this[n],n,e))}return!1}delete(t,e){const n=this;let r=!1;function i(t){if(t=pt(t)){const i=U.findKey(n,t);!i||e&&!vt(0,n[i],i,e)||(delete n[i],r=!0)}}return U.isArray(t)?t.forEach(i):i(t),r}clear(t){const e=Object.keys(this);let n=e.length,r=!1;for(;n--;){const i=e[n];t&&!vt(0,this[i],i,t,!0)||(delete this[i],r=!0)}return r}normalize(t){const e=this,n={};return U.forEach(this,((r,i)=>{const o=U.findKey(n,i);if(o)return e[o]=gt(r),void delete e[i];const s=t?function(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((t,e,n)=>e.toUpperCase()+n))}(i):String(i).trim();s!==i&&delete e[i],e[s]=gt(r),n[s]=!0})),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const e=Object.create(null);return U.forEach(this,((n,r)=>{null!=n&&!1!==n&&(e[r]=t&&U.isArray(n)?n.join(", "):n)})),e}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([t,e])=>t+": "+e)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...e){const n=new this(t);return e.forEach((t=>n.set(t))),n}static accessor(t){const e=(this[dt]=this[dt]={accessors:{}}).accessors,n=this.prototype;function r(t){const r=pt(t);e[r]||(!function(t,e){const n=U.toCamelCase(" "+e);["get","set","has"].forEach((r=>{Object.defineProperty(t,r+n,{value:function(t,n,i){return this[r].call(this,e,t,n,i)},configurable:!0})}))}(n,t),e[r]=!0)}return U.isArray(t)?t.forEach(r):r(t),this}}bt.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),U.reduceDescriptors(bt.prototype,(({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(t){this[n]=t}}})),U.freezeMethods(bt);const mt=bt;function yt(t,e){const n=this||lt,r=e||n,i=mt.from(r.headers);let o=r.data;return U.forEach(t,(function(t){o=t.call(n,o,i.normalize(),e?e.status:void 0)})),i.normalize(),o}function wt(t){return!(!t||!t.__CANCEL__)}function _t(t,e,n){G.call(this,null==t?"canceled":t,G.ERR_CANCELED,e,n),this.name="CanceledError"}U.inherits(_t,G,{__CANCEL__:!0});const jt=_t;const Et=ct.hasStandardBrowserEnv?{write(t,e,n,r,i,o){const s=[t+"="+encodeURIComponent(e)];U.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),U.isString(r)&&s.push("path="+r),U.isString(i)&&s.push("domain="+i),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read:()=>null,remove(){}};function Ot(t,e){return t&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)?function(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}(t,e):e}const St=ct.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let n;function r(n){let r=n;return t&&(e.setAttribute("href",r),r=e.href),e.setAttribute("href",r),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:"/"===e.pathname.charAt(0)?e.pathname:"/"+e.pathname}}return n=r(window.location.href),function(t){const e=U.isString(t)?r(t):t;return e.protocol===n.protocol&&e.host===n.host}}():function(){return!0};const xt=function(t,e){t=t||10;const n=new Array(t),r=new Array(t);let i,o=0,s=0;return e=void 0!==e?e:1e3,function(a){const c=Date.now(),u=r[s];i||(i=c),n[o]=a,r[o]=c;let f=s,l=0;for(;f!==o;)l+=n[f++],f%=t;if(o=(o+1)%t,o===s&&(s=(s+1)%t),c-i<e)return;const h=u&&c-u;return h?Math.round(1e3*l/h):void 0}};function At(t,e){let n=0;const r=xt(50,250);return i=>{const o=i.loaded,s=i.lengthComputable?i.total:void 0,a=o-n,c=r(a);n=o;const u={loaded:o,total:s,progress:s?o/s:void 0,bytes:a,rate:c||void 0,estimated:c&&s&&o<=s?(s-o)/c:void 0,event:i};u[e?"download":"upload"]=!0,t(u)}}const Tt={http:null,xhr:"undefined"!=typeof XMLHttpRequest&&function(t){return new Promise((function(e,n){let r=t.data;const i=mt.from(t.headers).normalize();let o,s,{responseType:a,withXSRFToken:c}=t;function u(){t.cancelToken&&t.cancelToken.unsubscribe(o),t.signal&&t.signal.removeEventListener("abort",o)}if(U.isFormData(r))if(ct.hasStandardBrowserEnv||ct.hasStandardBrowserWebWorkerEnv)i.setContentType(!1);else if(!1!==(s=i.getContentType())){const[t,...e]=s?s.split(";").map((t=>t.trim())).filter(Boolean):[];i.setContentType([t||"multipart/form-data",...e].join("; "))}let f=new XMLHttpRequest;if(t.auth){const e=t.auth.username||"",n=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(e+":"+n))}const l=Ot(t.baseURL,t.url);function h(){if(!f)return;const r=mt.from("getAllResponseHeaders"in f&&f.getAllResponseHeaders());!function(t,e,n){const r=n.config.validateStatus;n.status&&r&&!r(n.status)?e(new G("Request failed with status code "+n.status,[G.ERR_BAD_REQUEST,G.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):t(n)}((function(t){e(t),u()}),(function(t){n(t),u()}),{data:a&&"text"!==a&&"json"!==a?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:r,config:t,request:f}),f=null}if(f.open(t.method.toUpperCase(),tt(l,t.params,t.paramsSerializer),!0),f.timeout=t.timeout,"onloadend"in f?f.onloadend=h:f.onreadystatechange=function(){f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))&&setTimeout(h)},f.onabort=function(){f&&(n(new G("Request aborted",G.ECONNABORTED,t,f)),f=null)},f.onerror=function(){n(new G("Network Error",G.ERR_NETWORK,t,f)),f=null},f.ontimeout=function(){let e=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const r=t.transitional||nt;t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(new G(e,r.clarifyTimeoutError?G.ETIMEDOUT:G.ECONNABORTED,t,f)),f=null},ct.hasStandardBrowserEnv&&(c&&U.isFunction(c)&&(c=c(t)),c||!1!==c&&St(l))){const e=t.xsrfHeaderName&&t.xsrfCookieName&&Et.read(t.xsrfCookieName);e&&i.set(t.xsrfHeaderName,e)}void 0===r&&i.setContentType(null),"setRequestHeader"in f&&U.forEach(i.toJSON(),(function(t,e){f.setRequestHeader(e,t)})),U.isUndefined(t.withCredentials)||(f.withCredentials=!!t.withCredentials),a&&"json"!==a&&(f.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&f.addEventListener("progress",At(t.onDownloadProgress,!0)),"function"==typeof t.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",At(t.onUploadProgress)),(t.cancelToken||t.signal)&&(o=e=>{f&&(n(!e||e.type?new jt(null,t,f):e),f.abort(),f=null)},t.cancelToken&&t.cancelToken.subscribe(o),t.signal&&(t.signal.aborted?o():t.signal.addEventListener("abort",o)));const d=function(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}(l);d&&-1===ct.protocols.indexOf(d)?n(new G("Unsupported protocol "+d+":",G.ERR_BAD_REQUEST,t)):f.send(r||null)}))}};U.forEach(Tt,((t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch(t){}Object.defineProperty(t,"adapterName",{value:e})}}));const Ct=t=>`- ${t}`,It=t=>U.isFunction(t)||null===t||!1===t,Rt=t=>{t=U.isArray(t)?t:[t];const{length:e}=t;let n,r;const i={};for(let o=0;o<e;o++){let e;if(n=t[o],r=n,!It(n)&&(r=Tt[(e=String(n)).toLowerCase()],void 0===r))throw new G(`Unknown adapter '${e}'`);if(r)break;i[e||"#"+o]=r}if(!r){const t=Object.entries(i).map((([t,e])=>`adapter ${t} `+(!1===e?"is not supported by the environment":"is not available in the build")));let n=e?t.length>1?"since :\n"+t.map(Ct).join("\n"):" "+Ct(t[0]):"as no adapter specified";throw new G("There is no suitable adapter to dispatch the request "+n,"ERR_NOT_SUPPORT")}return r};function Lt(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new jt(null,t)}function kt(t){Lt(t),t.headers=mt.from(t.headers),t.data=yt.call(t,t.transformRequest),-1!==["post","put","patch"].indexOf(t.method)&&t.headers.setContentType("application/x-www-form-urlencoded",!1);return Rt(t.adapter||lt.adapter)(t).then((function(e){return Lt(t),e.data=yt.call(t,t.transformResponse,e),e.headers=mt.from(e.headers),e}),(function(e){return wt(e)||(Lt(t),e&&e.response&&(e.response.data=yt.call(t,t.transformResponse,e.response),e.response.headers=mt.from(e.response.headers))),Promise.reject(e)}))}const $t=t=>t instanceof mt?t.toJSON():t;function Nt(t,e){e=e||{};const n={};function r(t,e,n){return U.isPlainObject(t)&&U.isPlainObject(e)?U.merge.call({caseless:n},t,e):U.isPlainObject(e)?U.merge({},e):U.isArray(e)?e.slice():e}function i(t,e,n){return U.isUndefined(e)?U.isUndefined(t)?void 0:r(void 0,t,n):r(t,e,n)}function o(t,e){if(!U.isUndefined(e))return r(void 0,e)}function s(t,e){return U.isUndefined(e)?U.isUndefined(t)?void 0:r(void 0,t):r(void 0,e)}function a(n,i,o){return o in e?r(n,i):o in t?r(void 0,n):void 0}const c={url:o,method:o,data:o,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:a,headers:(t,e)=>i($t(t),$t(e),!0)};return U.forEach(Object.keys(Object.assign({},t,e)),(function(r){const o=c[r]||i,s=o(t[r],e[r],r);U.isUndefined(s)&&o!==a||(n[r]=s)})),n}const Pt="1.6.5",Bt={};["object","boolean","number","function","string","symbol"].forEach(((t,e)=>{Bt[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}}));const Ut={};Bt.transitional=function(t,e,n){function r(t,e){return"[Axios v1.6.5] Transitional option '"+t+"'"+e+(n?". "+n:"")}return(n,i,o)=>{if(!1===t)throw new G(r(i," has been removed"+(e?" in "+e:"")),G.ERR_DEPRECATED);return e&&!Ut[i]&&(Ut[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(n,i,o)}};const Mt={assertOptions:function(t,e,n){if("object"!=typeof t)throw new G("options must be an object",G.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let i=r.length;for(;i-- >0;){const o=r[i],s=e[o];if(s){const e=t[o],n=void 0===e||s(e,o,t);if(!0!==n)throw new G("option "+o+" must be "+n,G.ERR_BAD_OPTION_VALUE)}else if(!0!==n)throw new G("Unknown option "+o,G.ERR_BAD_OPTION)}},validators:Bt},Dt=Mt.validators;class Ft{constructor(t){this.defaults=t,this.interceptors={request:new et,response:new et}}request(t,e){"string"==typeof t?(e=e||{}).url=t:e=t||{},e=Nt(this.defaults,e);const{transitional:n,paramsSerializer:r,headers:i}=e;void 0!==n&&Mt.assertOptions(n,{silentJSONParsing:Dt.transitional(Dt.boolean),forcedJSONParsing:Dt.transitional(Dt.boolean),clarifyTimeoutError:Dt.transitional(Dt.boolean)},!1),null!=r&&(U.isFunction(r)?e.paramsSerializer={serialize:r}:Mt.assertOptions(r,{encode:Dt.function,serialize:Dt.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let o=i&&U.merge(i.common,i[e.method]);i&&U.forEach(["delete","get","head","post","put","patch","common"],(t=>{delete i[t]})),e.headers=mt.concat(o,i);const s=[];let a=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(a=a&&t.synchronous,s.unshift(t.fulfilled,t.rejected))}));const c=[];let u;this.interceptors.response.forEach((function(t){c.push(t.fulfilled,t.rejected)}));let f,l=0;if(!a){const t=[kt.bind(this),void 0];for(t.unshift.apply(t,s),t.push.apply(t,c),f=t.length,u=Promise.resolve(e);l<f;)u=u.then(t[l++],t[l++]);return u}f=s.length;let h=e;for(l=0;l<f;){const t=s[l++],e=s[l++];try{h=t(h)}catch(t){e.call(this,t);break}}try{u=kt.call(this,h)}catch(t){return Promise.reject(t)}for(l=0,f=c.length;l<f;)u=u.then(c[l++],c[l++]);return u}getUri(t){return tt(Ot((t=Nt(this.defaults,t)).baseURL,t.url),t.params,t.paramsSerializer)}}U.forEach(["delete","get","head","options"],(function(t){Ft.prototype[t]=function(e,n){return this.request(Nt(n||{},{method:t,url:e,data:(n||{}).data}))}})),U.forEach(["post","put","patch"],(function(t){function e(e){return function(n,r,i){return this.request(Nt(i||{},{method:t,headers:e?{"Content-Type":"multipart/form-data"}:{},url:n,data:r}))}}Ft.prototype[t]=e(),Ft.prototype[t+"Form"]=e(!0)}));const Gt=Ft;class Vt{constructor(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");let e;this.promise=new Promise((function(t){e=t}));const n=this;this.promise.then((t=>{if(!n._listeners)return;let e=n._listeners.length;for(;e-- >0;)n._listeners[e](t);n._listeners=null})),this.promise.then=t=>{let e;const r=new Promise((t=>{n.subscribe(t),e=t})).then(t);return r.cancel=function(){n.unsubscribe(e)},r},t((function(t,r,i){n.reason||(n.reason=new jt(t,r,i),e(n.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){this.reason?t(this.reason):this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const e=this._listeners.indexOf(t);-1!==e&&this._listeners.splice(e,1)}static source(){let t;return{token:new Vt((function(e){t=e})),cancel:t}}}const qt=Vt;const zt={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(zt).forEach((([t,e])=>{zt[e]=t}));const Ht=zt;const Wt=function t(e){const n=new Gt(e),r=i(Gt.prototype.request,n);return U.extend(r,Gt.prototype,n,{allOwnKeys:!0}),U.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return t(Nt(e,n))},r}(lt);Wt.Axios=Gt,Wt.CanceledError=jt,Wt.CancelToken=qt,Wt.isCancel=wt,Wt.VERSION=Pt,Wt.toFormData=X,Wt.AxiosError=G,Wt.Cancel=Wt.CanceledError,Wt.all=function(t){return Promise.all(t)},Wt.spread=function(t){return function(e){return t.apply(null,e)}},Wt.isAxiosError=function(t){return U.isObject(t)&&!0===t.isAxiosError},Wt.mergeConfig=Nt,Wt.AxiosHeaders=mt,Wt.formToJSON=t=>ut(U.isHTMLForm(t)?new FormData(t):t),Wt.getAdapter=Rt,Wt.HttpStatusCode=Ht,Wt.default=Wt;const Xt=Wt;var Kt=n(77958),Jt=n(79753),Yt=function(){return Yt=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},Yt.apply(this,arguments)};function Zt(t,e,n,r){return new(n||(n=Promise))((function(i,o){function s(t){try{c(r.next(t))}catch(t){o(t)}}function a(t){try{c(r.throw(t))}catch(t){o(t)}}function c(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(s,a)}c((r=r.apply(t,e||[])).next())}))}function Qt(t,e){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(a){return function(c){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(s=0)),s;)try{if(n=1,r&&(i=2&a[0]?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return s.label++,{value:a[1],done:!1};case 5:s.label++,r=a[1],a=[0];continue;case 7:a=s.ops.pop(),s.trys.pop();continue;default:if(!(i=s.trys,(i=i.length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){s=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){s.label=a[1];break}if(6===a[0]&&s.label<i[1]){s.label=i[1],i=a;break}if(i&&s.label<i[2]){s.label=i[2],s.ops.push(a);break}i[2]&&s.ops.pop(),s.trys.pop();continue}a=e.call(t,s)}catch(t){a=[6,t],r=0}finally{n=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}"function"==typeof SuppressedError&&SuppressedError;var te,ee=Symbol("csrf-retry"),ne=Symbol("retryDelay"),re=Xt.create({headers:{requesttoken:null!==(te=(0,Kt.IH)())&&void 0!==te?te:""}}),ie=Object.assign(re,{CancelToken:Xt.CancelToken,isCancel:Xt.isCancel});ie.interceptors.response.use((function(t){return t}),function(t){return function(e){return Zt(void 0,void 0,void 0,(function(){var n,r,i,o,s,a,c;return Qt(this,(function(u){switch(u.label){case 0:return n=e.config,r=e.response,i=e.request,o=null==i?void 0:i.responseURL,412!==(null==r?void 0:r.status)||"CSRF check failed"!==(null===(c=null==r?void 0:r.data)||void 0===c?void 0:c.message)||void 0!==n[ee]?[3,2]:(console.warn("Request to ".concat(o," failed because of a CSRF mismatch. Fetching a new token")),[4,t.get((0,Jt.generateUrl)("/csrftoken"))]);case 1:return s=u.sent().data.token,console.debug("New request token ".concat(s," fetched")),t.defaults.headers.requesttoken=s,[2,t(Yt(Yt({},n),(a={headers:Yt(Yt({},n.headers),{requesttoken:s})},a[ee]=!0,a)))];case 2:return[2,Promise.reject(e)]}}))}))}}(ie)),ie.interceptors.response.use((function(t){return t}),function(t){return function(e){return Zt(void 0,void 0,void 0,(function(){var n,r,i,o,s,a,c,u,f;return Qt(this,(function(l){switch(l.label){case 0:return n=e.config,r=e.response,i=e.request,o=null==i?void 0:i.responseURL,s=null==r?void 0:r.status,a=null==r?void 0:r.headers,503===s&&"1"===a["x-nextcloud-maintenance-mode"]&&n.retryIfMaintenanceMode&&(!n[ne]||n[ne]<=32)?(c=2*(null!==(f=n[ne])&&void 0!==f?f:1),console.warn("Request to ".concat(o," failed because of maintenance mode. Retrying in ").concat(c,"s")),[4,new Promise((function(t){setTimeout(t,1e3*c)}))]):[3,2];case 1:return l.sent(),[2,t(Yt(Yt({},n),(u={},u[ne]=c,u)))];case 2:return[2,Promise.reject(e)]}}))}))}}(ie)),ie.interceptors.response.use((function(t){return t}),(function(t){return Zt(void 0,void 0,void 0,(function(){var e,n,r,i,o;return Qt(this,(function(s){return e=t.config,n=t.response,r=t.request,i=null==r?void 0:r.responseURL,401===(null==n?void 0:n.status)&&"Current user is not logged in"===(null===(o=null==n?void 0:n.data)||void 0===o?void 0:o.message)&&e.reloadExpiredSession&&(null===window||void 0===window?void 0:window.location)&&(console.error("Request to ".concat(i," failed because the user session expired. Reloading the page β¦")),window.location.reload()),[2,Promise.reject(t)]}))}))})),(0,Kt._S)((function(t){re.defaults.headers.requesttoken=t}))},69183:(t,e,n)=>{"use strict";n.d(e,{Ld:()=>u,j8:()=>l,r1:()=>f});var r=n(77907),i=n(92426);class o{bus;constructor(t){"function"==typeof t.getVersion&&r(t.getVersion())?i(t.getVersion())!==i(this.getVersion())&&console.warn("Proxying an event bus of version "+t.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=t}getVersion(){return"3.1.0"}subscribe(t,e){this.bus.subscribe(t,e)}unsubscribe(t,e){this.bus.unsubscribe(t,e)}emit(t,e){this.bus.emit(t,e)}}class s{handlers=new Map;getVersion(){return"3.1.0"}subscribe(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).concat(e))}unsubscribe(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).filter((t=>t!=e)))}emit(t,e){(this.handlers.get(t)||[]).forEach((t=>{try{t(e)}catch(t){console.error("could not invoke event listener",t)}}))}}let a=null;function c(){return null!==a?a:"undefined"==typeof window?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),a=void 0!==window?._nc_event_bus?new o(window._nc_event_bus):window._nc_event_bus=new s,a)}function u(t,e){c().subscribe(t,e)}function f(t,e){c().unsubscribe(t,e)}function l(t,e){c().emit(t,e)}}},o={};function s(t){var e=o[t];if(void 0!==e)return e.exports;var n=o[t]={id:t,loaded:!1,exports:{}};return i[t].call(n.exports,n,n.exports,s),n.loaded=!0,n.exports}s.m=i,s.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return s.d(e,{a:e}),e},e=Object.getPrototypeOf?t=>Object.getPrototypeOf(t):t=>t.__proto__,s.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var i=Object.create(null);s.r(i);var o={};t=t||[null,e({}),e([]),e(e)];for(var a=2&r&&n;"object"==typeof a&&!~t.indexOf(a);a=e(a))Object.getOwnPropertyNames(a).forEach((t=>o[t]=()=>n[t]));return o.default=()=>n,s.d(i,o),i},s.d=(t,e)=>{for(var n in e)s.o(e,n)&&!s.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},s.f={},s.e=t=>Promise.all(Object.keys(s.f).reduce(((e,n)=>(s.f[n](t,e),e)),[])),s.u=t=>t+".js?v="+{vendors:"f69e8ea0b55e29246ed3",editor:"e2e106e2fa7aade34740","files-modal":"145eb4d606c67a1715bb","highlight/1c":"60571dd821090b74b49a","highlight/1c-js-js":"5ae0a128efc65ae2102d","highlight/abnf":"44cf17ebe24976f8f2ab","highlight/abnf-js-js":"0a560d0c3f6225367c4d","highlight/accesslog":"05db2409d6820132a5b1","highlight/accesslog-js-js":"88693c2e14bbbb21bfd9","highlight/actionscript":"afdd05f134db26336fc3","highlight/actionscript-js-js":"0660156cf517a9d29773","highlight/ada":"697757ceaf8f64eb69c2","highlight/ada-js-js":"c3ec68b231246b8667c0","highlight/angelscript":"7ff4f066064b9d2ce8a4","highlight/angelscript-js-js":"b09165ccb51638dc8f9c","highlight/apache":"d43f90aa96ace3cd1815","highlight/apache-js-js":"b17b629e9d1c904f3b78","highlight/applescript":"4991a2f667d50e1125bb","highlight/applescript-js-js":"1fdcb16efd151304f2e0","highlight/arcade":"1b70a83d56fd2dd93f6a","highlight/arcade-js-js":"8f337304df03e13c67fa","highlight/arduino":"35b8b786a278bac66ffd","highlight/arduino-js-js":"6faccd031f84a39d2f2d","highlight/armasm":"8f2076532df6bc1caf31","highlight/armasm-js-js":"a9d2a08c5a6f38d99763","highlight/asciidoc":"866bfbcf61e64001de70","highlight/asciidoc-js-js":"89faa1d03dfeea8ba2ba","highlight/aspectj":"2f3583863e11029fa645","highlight/aspectj-js-js":"0f1867b12a4f98bcb16e","highlight/autohotkey":"1fe97147aab3cbe9b85d","highlight/autohotkey-js-js":"32a4db01947d9fadf32c","highlight/autoit":"1375128c5f36bc4427f7","highlight/autoit-js-js":"ba4a51f3b9d14ac20a22","highlight/avrasm":"b5bf71c9023167381696","highlight/avrasm-js-js":"beec1745d307b0058020","highlight/awk":"e80fbced25d377e9cc7a","highlight/awk-js-js":"8dc8c015d8126605ede6","highlight/axapta":"f2d6b5d08178e6e2c8d2","highlight/axapta-js-js":"547ace127a92e6d17e60","highlight/bash":"bef1fea47a29b94e2d24","highlight/bash-js-js":"3896eb4375802768ad27","highlight/basic":"5543c98b4f3c195d870c","highlight/basic-js-js":"6d25168ad8e0a3ac22fd","highlight/bnf":"a019e5f6e6d8d06377f6","highlight/bnf-js-js":"6f3e71abdd1acc3d2567","highlight/brainfuck":"b8d18171fd45ebdf1af6","highlight/brainfuck-js-js":"fe6ed2589ba3f60c637d","highlight/c":"fd667cdba1ebc5761498","highlight/c-js-js":"22b97880c27b80df19eb","highlight/cal":"fe6f3589cca9b8768bd3","highlight/cal-js-js":"f4f730498fc71cee64c7","highlight/capnproto":"acfad201f522cefd478f","highlight/capnproto-js-js":"9d8acaf81f2fa1f7d31e","highlight/ceylon":"aeb093df62ce645df3a4","highlight/ceylon-js-js":"b40f8961becacc7bf657","highlight/clean":"c0a7e1e5a62cd7175777","highlight/clean-js-js":"f1d7adfb5357ca72edeb","highlight/clojure":"4e9fbb2f027d2c2c9a38","highlight/clojure-repl":"928da40b3b840e9b640d","highlight/clojure-repl-js-js":"2521e4c29d89218c6e25","highlight/clojure-js-js":"72c213aca7fd43963ef6","highlight/cmake":"96e774287755bcca7762","highlight/cmake-js-js":"89940b8b1b8ba51c43bb","highlight/coffeescript":"28d5106628a554d6496d","highlight/coffeescript-js-js":"04fa5e21804e127bb9f8","highlight/coq":"1faf7321fda64444fd08","highlight/coq-js-js":"6882923d56a685b37888","highlight/cos":"e94a52d19123673cc449","highlight/cos-js-js":"6a95e3a3190114f89b33","highlight/cpp":"93252fd671d36d541228","highlight/cpp-js-js":"435c32c7b8d362212b14","highlight/crmsh":"1009e65959edf6b73430","highlight/crmsh-js-js":"94ff862dd8fca34932f0","highlight/crystal":"18e717c6e4bb14a0227a","highlight/crystal-js-js":"55db6bafd376a542dfe2","highlight/csharp":"ec799b85c573e8dd5aa9","highlight/csharp-js-js":"1da70325a63d23f15e0c","highlight/csp":"281dd2b6a5110d98a859","highlight/csp-js-js":"892daf8fcab81f876937","highlight/css":"cac3dd353ca818fa96e4","highlight/css-js-js":"dbf9c35cd040ef95f3cd","highlight/d":"52e92ed2119a66e005e7","highlight/d-js-js":"ceb818479a15c84da64c","highlight/dart":"6d59be2a53a27d3b6e67","highlight/dart-js-js":"18fe9b5ac7fcd353a0b6","highlight/delphi":"2dab2450dd369edfa4a3","highlight/delphi-js-js":"8513578f3ddfa6983e16","highlight/diff":"daa313846a32c6d3dcca","highlight/diff-js-js":"a4c85a25b066419e3d24","highlight/django":"f2d0628b3370a2bd76ff","highlight/django-js-js":"103f3085acae2044c3bc","highlight/dns":"732cd30b72a6b4ef7924","highlight/dns-js-js":"25ca0948aa1cd7d2c503","highlight/dockerfile":"2a8b647c9f93f89c0f16","highlight/dockerfile-js-js":"44ef18a86f5aaccd55f2","highlight/dos":"a8fc4e96310323cddb22","highlight/dos-js-js":"4ba4e7d65950a7f4380d","highlight/dsconfig":"40528f2c63f840e1a420","highlight/dsconfig-js-js":"93f8d986a8226db00f10","highlight/dts":"af5659be6cc84be5b841","highlight/dts-js-js":"0ebd1a59981ef472a787","highlight/dust":"0f77d529de2ef5de2d23","highlight/dust-js-js":"3c3776f3e006858b5832","highlight/ebnf":"d482a6496114392057e7","highlight/ebnf-js-js":"2b07c2a1dd25486f451d","highlight/elixir":"0f6ae88808bd1a31c9d3","highlight/elixir-js-js":"5f98b89b9ebf18ca6975","highlight/elm":"23e1f5a07af37b446f19","highlight/elm-js-js":"7a2a377792b1b2433fc8","highlight/erb":"af2e8b5238ed5877dea0","highlight/erb-js-js":"7ea2032a522e2b7749ea","highlight/erlang":"fe356a9e5c2e9b39b4d6","highlight/erlang-repl":"7b1a66b631fc314a68bd","highlight/erlang-repl-js-js":"93beea8dabff11f5c433","highlight/erlang-js-js":"fc95b9a68f5ed812347f","highlight/excel":"20611bc5219d14a50b96","highlight/excel-js-js":"5281f8400781a077d679","highlight/fix":"9c1dfd8ae09bacaf8be7","highlight/fix-js-js":"9801459fab8660aac565","highlight/flix":"2c44ba03732f1a292b0e","highlight/flix-js-js":"80b671b5c164e3b81dd8","highlight/fortran":"9e8d1cec0e82ac2197c9","highlight/fortran-js-js":"19e857d4c1249d094fef","highlight/fsharp":"a36f5d902959c55dc4bc","highlight/fsharp-js-js":"dd9666106c251c834cf0","highlight/gams":"35c6585dadad2f9392fe","highlight/gams-js-js":"4397d79709a5af0d4284","highlight/gauss":"51aea2a8aa68416e1b0d","highlight/gauss-js-js":"1f427eb0ebbd39a0189c","highlight/gcode":"3c36a0d12d53df13ff15","highlight/gcode-js-js":"a9caf58b139e5799dcfc","highlight/gherkin":"86eefbfc3e3461d30b85","highlight/gherkin-js-js":"82eaff91c16df5c88577","highlight/glsl":"03c9c9e4b5d50c0ab49b","highlight/glsl-js-js":"a7661648b59704baeaa0","highlight/gml":"3f764eac3bb800e059e5","highlight/gml-js-js":"289c8b3063f8b9245e45","highlight/go":"fb1595b905683e2b19a1","highlight/go-js-js":"aa02802cc350f0153056","highlight/golo":"a221ff67c4fc5926b108","highlight/golo-js-js":"eb71bdef583e289a580e","highlight/gradle":"fe8a06a11ee412945f04","highlight/gradle-js-js":"7041fb7786ffcae3b234","highlight/graphql":"5ae245b71a423cc3241f","highlight/graphql-js-js":"0f0e98c4b7d7d36be688","highlight/groovy":"4e747e54608071de5a5e","highlight/groovy-js-js":"4dc3a184f5fecef89600","highlight/haml":"4914c9e47c186e2af33c","highlight/haml-js-js":"88f5a45299b44d9f7d00","highlight/handlebars":"6f91685f46331518d14e","highlight/handlebars-js-js":"0085aa34e1ea317a4948","highlight/haskell":"af9589f1a8263e86270d","highlight/haskell-js-js":"ebb8d92eb33cfeb47df0","highlight/haxe":"ff48fd202c4766f971ef","highlight/haxe-js-js":"e229b436cabd5eba7c38","highlight/hsp":"e2f56cfb5cea59bff4e3","highlight/hsp-js-js":"5b478084c6701dfab70b","highlight/http":"d0f6e0c64b99baba774d","highlight/http-js-js":"bde714de966410f48f57","highlight/hy":"4aa2e420aef64868991d","highlight/hy-js-js":"1322414b507747aaed44","highlight/inform7":"72abe11092f55c7a4fb0","highlight/inform7-js-js":"4e796776d182eaaad167","highlight/ini":"ceed225d7dfb4090ec3b","highlight/ini-js-js":"5334d58679eaeb2e3f9a","highlight/irpf90":"1b201d0aa0df390bc719","highlight/irpf90-js-js":"85d85e8beb44b067b961","highlight/isbl":"17bd0cb6d546f88872e1","highlight/isbl-js-js":"f9f95135165010cc1e7e","highlight/java":"4467ea7ba44234bb8f18","highlight/java-js-js":"4dd439877e4e03025ba7","highlight/javascript":"7f226331e004e0c8243d","highlight/javascript-js-js":"73924dc436bae51631f1","highlight/jboss-cli":"9a24f5d7fc1167b594b9","highlight/jboss-cli-js-js":"72f076f6fa95fc64b1fb","highlight/json":"c22594286a901c9359a6","highlight/json-js-js":"694d9d3df4cbb37a340e","highlight/julia":"61f1430ad08a4cfb13a9","highlight/julia-repl":"f5be4c2c71d99cf59924","highlight/julia-repl-js-js":"42d4e642dfedefe1847a","highlight/julia-js-js":"e318702e5b4064096a54","highlight/kotlin":"f55fef9c56d430faf593","highlight/kotlin-js-js":"4ec25479ca32a257c54e","highlight/lasso":"9a7025219ae37740e1ea","highlight/lasso-js-js":"0c6c709a339494dd244c","highlight/latex":"732f1c2c2453f95e563f","highlight/latex-js-js":"37bf2b4b2cb7dad8740d","highlight/ldif":"30b9e909df345090e89b","highlight/ldif-js-js":"774a2ecf547240f30ec5","highlight/leaf":"14475923520f17a3d110","highlight/leaf-js-js":"f3b8adb28806d9bdd3a9","highlight/less":"de94bd54588bf0cbd87f","highlight/less-js-js":"15fe11866136360710b2","highlight/lisp":"1b19597997064517e49c","highlight/lisp-js-js":"99e985ada9fd5fe3fd02","highlight/livecodeserver":"20fc6459bbedc1d8436c","highlight/livecodeserver-js-js":"720b026ad544f5eaa63a","highlight/livescript":"86d8bd82be66c07ab3ba","highlight/livescript-js-js":"f5ecfff83c5121ba10af","highlight/llvm":"74bf320ee0fbdf890f13","highlight/llvm-js-js":"313d0319af75644f98d7","highlight/lsl":"2af2c1df03392f4a33e9","highlight/lsl-js-js":"3dad2ea0ee897050b163","highlight/lua":"11a6800942fc0f5431a1","highlight/lua-js-js":"348a4977542cda0c5093","highlight/makefile":"3d1bcc5c4fabf65aa4b0","highlight/makefile-js-js":"f5a6e4189fc1505aa812","highlight/markdown":"745257a411111bf58283","highlight/markdown-js-js":"3d82f9ad347531708707","highlight/mathematica":"a89434791e07e8ee0038","highlight/mathematica-js-js":"1525019847ed970b92f5","highlight/matlab":"14293ec301a9a583cb48","highlight/matlab-js-js":"8a451a372fab581db523","highlight/maxima":"0a7f00ac948da692653d","highlight/maxima-js-js":"0f3d3dd9fb77bd53e823","highlight/mel":"ca72020c8220f29f6a5f","highlight/mel-js-js":"8573f84320dd6a909b15","highlight/mercury":"7e6c2687c9fc72e2055e","highlight/mercury-js-js":"f7393f66e73a29729c45","highlight/mipsasm":"1e1d57b5c23e57797042","highlight/mipsasm-js-js":"ccee091ed67246de6efd","highlight/mizar":"64e5dead9ff49a49cc6a","highlight/mizar-js-js":"ff24b8c6c86289c5853d","highlight/mojolicious":"ce4f373f8de79d99c17a","highlight/mojolicious-js-js":"c1e335e7b9af94137ee2","highlight/monkey":"c68e27eb0b4b0147a061","highlight/monkey-js-js":"ac0f01de33cfdbf4cbab","highlight/moonscript":"1d305fffb98da1277505","highlight/moonscript-js-js":"0e80dc67258ccf294c93","highlight/n1ql":"cd6a71861da62c03305b","highlight/n1ql-js-js":"a9d048c5e50375924a5f","highlight/nestedtext":"f4bd7b623e2a2974a5a1","highlight/nestedtext-js-js":"a059011de362e4f206a0","highlight/nginx":"874c90e91b1947f879ab","highlight/nginx-js-js":"f2de40c914da80e9f19a","highlight/nim":"e7a0961d9ce8015f3651","highlight/nim-js-js":"5bc7a12df4cf929bf57d","highlight/nix":"375922447fe2ed5878b6","highlight/nix-js-js":"31908755e85cef75c14f","highlight/node-repl":"3919d002ab5c0f76ac28","highlight/node-repl-js-js":"66724f391711306cc409","highlight/nsis":"ab143f22c1fa2eedb313","highlight/nsis-js-js":"b24d39ee04ee48ad8b18","highlight/objectivec":"f6c18728ae5b3782e6be","highlight/objectivec-js-js":"9e6a035ac64e262e37a2","highlight/ocaml":"6bcbade59cc829d5b0ca","highlight/ocaml-js-js":"602285d6c5d0d92444ec","highlight/openscad":"08af918b5dcbf017d2a8","highlight/openscad-js-js":"145c2dc15c7af0d8b2a0","highlight/oxygene":"b327fdb6d3f031bbb324","highlight/oxygene-js-js":"510375bc5c9285e968eb","highlight/parser3":"2ca70819cf766cb4be23","highlight/parser3-js-js":"6a7fcea2214f8bdc1e1a","highlight/perl":"33ddb573039a1accd731","highlight/perl-js-js":"5997b0b1fe9ee4ceba62","highlight/pf":"72430017af54982e3c58","highlight/pf-js-js":"f9788b99e81b3a5e19db","highlight/pgsql":"7e6e94cfdd73b7b36811","highlight/pgsql-js-js":"fe09f89438cbc7600d7b","highlight/php":"280972243ce0745fd755","highlight/php-template":"f85aea6129c23b1ff564","highlight/php-template-js-js":"6d2c5ff2ffcafe8d9cf3","highlight/php-js-js":"f29c4933709b7f32d8f7","highlight/plaintext":"81cb64e58d4cc0c02de8","highlight/plaintext-js-js":"88c16fd41ee4d517ee27","highlight/pony":"9d39ac3617ad4ef6da11","highlight/pony-js-js":"ac70c74510d50925b12d","highlight/powershell":"554ec3869c697ddc7fa5","highlight/powershell-js-js":"494c6c72c1116a12ed9d","highlight/processing":"cdc0b826a3a3376d3208","highlight/processing-js-js":"a5af8f6a5a21590c93c0","highlight/profile":"0876c5a989114488cbb7","highlight/profile-js-js":"76b0d805e29b6f3f447c","highlight/prolog":"43364cfe027a2a04cfde","highlight/prolog-js-js":"2f5853b2d0e98a5db346","highlight/properties":"84797cbf4ffc75a80792","highlight/properties-js-js":"bd8ed6d2813076bf60c0","highlight/protobuf":"9779eec65cfbaa78ab2f","highlight/protobuf-js-js":"1d55f9438c804ea021cd","highlight/puppet":"4ec200d0b2adca9684bb","highlight/puppet-js-js":"ef632fd3c18c1386fc96","highlight/purebasic":"09a25a18019fac1d2477","highlight/purebasic-js-js":"609305e0ad6bffaf00a5","highlight/python":"c8e7a5937fe1df120ca9","highlight/python-repl":"12b0dce7606bdb691553","highlight/python-repl-js-js":"fb68b94c05ba2b91a33c","highlight/python-js-js":"c992c1069639e3e85a04","highlight/q":"9c0f9770a2930898a8dc","highlight/q-js-js":"dec16396e5b1a95636cf","highlight/qml":"db23597a4c2892eb554e","highlight/qml-js-js":"451c3683cc59e6014082","highlight/r":"78a0ef9657e7eef99da9","highlight/r-js-js":"a8132170d8903352412a","highlight/reasonml":"3ecea3db878dbe6b8e4a","highlight/reasonml-js-js":"b94a6b5b386275c12c4f","highlight/rib":"fff01e1b5076e16d2b20","highlight/rib-js-js":"ba98744a3b502e81a06e","highlight/roboconf":"f268e6618eafc2730bc8","highlight/roboconf-js-js":"5e136b7998072d7816c2","highlight/routeros":"e873bbf705477bef4aa1","highlight/routeros-js-js":"0f803187d305afa78cdd","highlight/rsl":"10dbc5fa8b78325c003e","highlight/rsl-js-js":"d613a93d20e2a5c667bc","highlight/ruby":"4122f9e1d4087ee80341","highlight/ruby-js-js":"9288fcdccf146d866952","highlight/ruleslanguage":"4837fc84a2be9937688f","highlight/ruleslanguage-js-js":"f8c612fc2a105d3a7381","highlight/rust":"d0c79d151a761fda059c","highlight/rust-js-js":"afffdcb434d8a78ddc30","highlight/sas":"110880afbfdb3eb74b75","highlight/sas-js-js":"979fb17612b38e042343","highlight/scala":"54ade10d95ef1c974e41","highlight/scala-js-js":"25f2574e526b74034c6f","highlight/scheme":"935af4097c9c844fc1fd","highlight/scheme-js-js":"a9fea2e30f72b8bf9918","highlight/scilab":"331300247a8065bed3f7","highlight/scilab-js-js":"eb4d48a22ae99f51f472","highlight/scss":"e4a42a7a82660956c227","highlight/scss-js-js":"132e56b3a0e2f7a3a974","highlight/shell":"bfeada102b798e322778","highlight/shell-js-js":"4da6f365b2e861fd1c1f","highlight/smali":"d430b3d6604d21a1f1c4","highlight/smali-js-js":"09383a404cf096be76c1","highlight/smalltalk":"131b40f45aaede861ec0","highlight/smalltalk-js-js":"4f6d82ebcd3f3151782e","highlight/sml":"f20d523f6a103fa6005a","highlight/sml-js-js":"803cb176cf6079f9f34f","highlight/sqf":"2bceab15b818c1590f57","highlight/sqf-js-js":"0e402dca1ba1c2ca0369","highlight/sql":"674155b4e27ab08f5c4e","highlight/sql-js-js":"669ba88b49e9e9d2ba1c","highlight/stan":"26df45a62b9dfa22ddf4","highlight/stan-js-js":"3bf189cf30dd06266de2","highlight/stata":"d361a10a63a992d9da33","highlight/stata-js-js":"52b717afd9ccb09ce432","highlight/step21":"e6d783f08b4321a208ad","highlight/step21-js-js":"4d83318eaa255061ae69","highlight/stylus":"967e33fd5867c8124412","highlight/stylus-js-js":"9461d90d6cb1f4f0f86e","highlight/subunit":"d4625b59f98d98e45f87","highlight/subunit-js-js":"7df5969b25ff01f70e70","highlight/swift":"c5e0c483084c602c8b6a","highlight/swift-js-js":"b3ff7f7052bd65db4683","highlight/taggerscript":"b96b06a2a35cfb14e4ce","highlight/taggerscript-js-js":"ef209cbad718ab53a6fe","highlight/tap":"31fdd1cad7f876e8ef52","highlight/tap-js-js":"12ec5ae895610fcfc1c1","highlight/tcl":"4d7f6850f8a7961c91c4","highlight/tcl-js-js":"6852ebd73228d6124b29","highlight/thrift":"fbc3f6ed61ead1d96c20","highlight/thrift-js-js":"70da475b520514ffdf5f","highlight/tp":"5773fd1f5bc6030b1d38","highlight/tp-js-js":"b0d2bd9846ba62d5a207","highlight/twig":"6d071ee63e048b530ef2","highlight/twig-js-js":"8bb0173ded17cbd46e4f","highlight/typescript":"87eb1da38d5a3e50c804","highlight/typescript-js-js":"25ed692ca8a45feba453","highlight/vala":"489c75cd554d0c95f1c5","highlight/vala-js-js":"9ab3f9f8f1db1c6e11a6","highlight/vbnet":"49aea9874a75a1254c25","highlight/vbnet-js-js":"da4e94a84e4c2f3d342f","highlight/vbscript":"e1c3ec26e283427c9de4","highlight/vbscript-html":"723014f14b777f1e4990","highlight/vbscript-html-js-js":"e89731c7c5a04f93e428","highlight/vbscript-js-js":"58d8b10d485c8d170175","highlight/verilog":"d6cef4ad645954666480","highlight/verilog-js-js":"1e559dc767415c184c53","highlight/vhdl":"f0c18e92cc9ac259e49f","highlight/vhdl-js-js":"c43b240156c5d9d3ba44","highlight/vim":"f2abc5971fe61cf36f65","highlight/vim-js-js":"3b43da5761a0c995e114","highlight/wasm":"4f615e0364d3b51fbb9d","highlight/wasm-js-js":"e1f4d8ab9a995229023d","highlight/wren":"843c06fe4376cbe484ad","highlight/wren-js-js":"374e503952ba1f5da908","highlight/x86asm":"b68ed945ddf729246b09","highlight/x86asm-js-js":"ca881ce2be642d0d236b","highlight/xl":"9979735063c70e38957a","highlight/xl-js-js":"3bf66fa2225439c7b401","highlight/xml":"69e66959eb444da5a27b","highlight/xml-js-js":"2748c34f96fac36c7ec9","highlight/xquery":"fd78bdc172974424c263","highlight/xquery-js-js":"25965de593bd827caccc","highlight/yaml":"faccced13cf7009a1d21","highlight/yaml-js-js":"55b7ef75ceb977135c7e","highlight/zephir":"573871ee1969f9de654a","highlight/zephir-js-js":"f4512f00b9ec1892245f","editor-collab":"32f690cd9ca91b186158","editor-guest":"aa7193a46e151d153058"}[t],s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),s.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n={},r="@nextcloud/text:",s.l=(t,e,i,o)=>{if(n[t])n[t].push(e);else{var a,c;if(void 0!==i)for(var u=document.getElementsByTagName("script"),f=0;f<u.length;f++){var l=u[f];if(l.getAttribute("src")==t||l.getAttribute("data-webpack")==r+i){a=l;break}}a||(c=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,s.nc&&a.setAttribute("nonce",s.nc),a.setAttribute("data-webpack",r+i),a.src=t),n[t]=[e];var h=(e,r)=>{a.onerror=a.onload=null,clearTimeout(d);var i=n[t];if(delete n[t],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach((t=>t(r))),e)return e(r)},d=setTimeout(h.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=h.bind(null,a.onerror),a.onload=h.bind(null,a.onload),c&&document.head.appendChild(a)}},s.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},s.nmd=t=>(t.paths=[],t.children||(t.children=[]),t),s.j="editors",s.p="/apps/text/js/",(()=>{s.b=document.baseURI||self.location.href;var t={editors:0};s.f.j=(e,n)=>{var r=s.o(t,e)?t[e]:void 0;if(0!==r)if(r)n.push(r[2]);else{var i=new Promise(((n,i)=>r=t[e]=[n,i]));n.push(r[2]=i);var o=s.p+s.u(e),a=new Error;s.l(o,(n=>{if(s.o(t,e)&&(0!==(r=t[e])&&(t[e]=void 0),r)){var i=n&&("load"===n.type?"missing":n.type),o=n&&n.target&&n.target.src;a.message="Loading chunk "+e+" failed.\n("+i+": "+o+")",a.name="ChunkLoadError",a.type=i,a.request=o,r[1](a)}}),"chunk-"+e,e)}};var e=(e,n)=>{var r,i,[o,a,c]=n,u=0;if(o.some((e=>0!==t[e]))){for(r in a)s.o(a,r)&&(s.m[r]=a[r]);if(c)c(s)}for(e&&e(n);u<o.length;u++)i=o[u],s.o(t,i)&&t[i]&&t[i][0](),t[i]=0},n=self.webpackChunk_nextcloud_text=self.webpackChunk_nextcloud_text||[];n.forEach(e.bind(null,0)),n.push=e.bind(null,n.push.bind(n))})(),s.nc=void 0,(()=>{"use strict";var t=s(20144),e=s(25030),n=s(31728),r=s(33528);function i(t,e){a(t,e),e.add(t)}function o(t,e,n){a(t,e),e.set(t,n)}function a(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function c(t,e){return function(t,e){if(e.get)return e.get.call(t);return e.value}(t,l(t,e,"get"))}function u(t,e,n){if(!e.has(t))throw new TypeError("attempted to get private field on non-instance");return n}function f(t,e,n){return function(t,e,n){if(e.set)e.set.call(t,n);else{if(!e.writable)throw new TypeError("attempted to set read only private field");e.value=n}}(t,l(t,e,"set"),n),n}function l(t,e,n){if(!e.has(t))throw new TypeError("attempted to "+n+" private field on non-instance");return e.get(t)}s.nc=btoa(OC.requestToken),s.p=OC.linkTo("text","js/");t.default.prototype.t=window.t,t.default.prototype.n=window.n,t.default.prototype.OCA=window.OCA,window.OCA.Text={...window.OCA.Text};var h=new WeakMap,d=new WeakMap,p=new WeakSet,g=new WeakSet;class v{constructor(t,e){return i(this,g),i(this,p),o(this,h,{writable:!0,value:void 0}),o(this,d,{writable:!0,value:void 0}),f(this,h,t),f(this,d,e),u(this,g,m).call(this),this}onLoaded(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:()=>{};return c(this,h).$on("ready",(()=>{t()})),this}onUpdate(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:()=>{};return c(this,h).$on("update:content",(e=>{t(e)})),this}onOutlineToggle(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:()=>{};return c(this,h).$on("outline-toggled",(e=>{t(e)})),this}render(t){t.innerHTML="";const e=document.createElement("div");return t.appendChild(e),c(this,h).$mount(e),this}destroy(){c(this,h).$destroy(),c(this,h).$el.innerHTML=""}setContent(t){var e,n;return c(this,h).$set(c(this,d),"content",t),null===(e=u(this,p,b).call(this))||void 0===e||null===(n=e.setContent)||void 0===n||n.call(e,t),this}async save(){var t,e;return null===(t=(e=u(this,p,b).call(this)).save)||void 0===t?void 0:t.call(e)}setShowOutline(t){return c(this,h).$set(c(this,d),"showOutlineOutside",t),this}setReadOnly(t){return c(this,h).$set(c(this,d),"readOnly",t),this}insertAtCursor(t){u(this,p,b).call(this).$editor.chain().insertContent(t).focus().run()}focus(){u(this,p,b).call(this).$editor.commands.focus()}}function b(){return c(this,h).$children[0]}function m(){var t,e;null!==(t=window)&&void 0!==t&&t._oc_debug&&(this.vm=c(this,h),window.OCA.Text._debug=[...null!==(e=window.OCA.Text._debug)&&void 0!==e?e:[],this])}window.OCA.Text.apiVersion="1.1",window.OCA.Text.createEditor=async function(i){let{el:o,fileId:a,useSession:c=!0,filePath:u,shareToken:f=null,content:l="",readOnly:h=!1,autofocus:d=!0,readonlyBar:p={component:null,props:null},onLoaded:g=(()=>{}),onUpdate:b=(t=>{let{markdown:e}=t}),onOutlineToggle:m=(t=>{}),onLinkClick:y,onFileInsert:w,onMentionSearch:_,onMentionInsert:j}=i;const{default:E}=await Promise.all([s.e("vendors"),s.e("editor")]).then(s.bind(s,66612)),{default:O}=await Promise.all([s.e("vendors"),s.e("editor")]).then(s.bind(s,49978)),S=t.default.observable({showOutlineOutside:!1,readOnly:h,content:l}),x=a&&c,A=new t.default({provide:()=>({[n.OV]:y,[r.gn]:w,[n.C6]:!!x,[n.sw]:!!x||_,[n.zZ]:!!x||j,[n.FQ]:{resolve:(t,e)=>[{type:"image",url:t}]}}),data:()=>S,render:t=>{const e=null!=p&&p.component?{readonlyBar:()=>t(p.component,{props:p.props})}:{};return x?t(O,{props:{fileId:a,relativePath:u,shareToken:f,mime:"text/markdown",active:!0,autofocus:d,showOutlineOutside:S.showOutlineOutside},scopedSlots:e}):t(E,{props:{fileId:a,content:S.content,relativePath:u,shareToken:f,readOnly:S.readOnly,showOutlineOutside:S.showOutlineOutside},scopedSlots:e})},store:e.Z});return new v(A,S).onLoaded(g).onUpdate(b).onOutlineToggle(m).render(o)}})()})();
//# sourceMappingURL=text-editors.js.map?v=676ec8c7a47f19dd5315