f7cloud_client/apps/mail/js/oauthpopup.js
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

3 lines
114 KiB
JavaScript

/*! For license information please see oauthpopup.js.LICENSE.txt */
(()=>{var e={55950(e,t,n){"use strict";const r=n(92322),{MAX_LENGTH:o,MAX_SAFE_INTEGER:i}=n(76692),{safeRe:a,t:s}=n(15208),c=n(29901),{compareIdentifiers:l}=n(3229);class u{constructor(e,t){if(t=c(t),e instanceof u){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError(`Invalid version. Must be a string. Got type "${typeof e}".`);if(e.length>o)throw new TypeError(`version is longer than ${o} characters`);r("SemVer",e,t),this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease;const n=e.trim().match(t.loose?a[s.LOOSE]:a[s.FULL]);if(!n)throw new TypeError(`Invalid Version: ${e}`);if(this.raw=e,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>i||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map(e=>{if(/^[0-9]+$/.test(e)){const t=+e;if(t>=0&&t<i)return t}return e}):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(e){if(r("SemVer.compare",this.version,this.options,e),!(e instanceof u)){if("string"==typeof e&&e===this.version)return 0;e=new u(e,this.options)}return e.version===this.version?0:this.compareMain(e)||this.comparePre(e)}compareMain(e){return e instanceof u||(e=new u(e,this.options)),this.major<e.major?-1:this.major>e.major?1:this.minor<e.minor?-1:this.minor>e.minor?1:this.patch<e.patch?-1:this.patch>e.patch?1:0}comparePre(e){if(e instanceof u||(e=new u(e,this.options)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;let t=0;do{const n=this.prerelease[t],o=e.prerelease[t];if(r("prerelease compare",t,n,o),void 0===n&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===n)return-1;if(n!==o)return l(n,o)}while(++t)}compareBuild(e){e instanceof u||(e=new u(e,this.options));let t=0;do{const n=this.build[t],o=e.build[t];if(r("build compare",t,n,o),void 0===n&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===n)return-1;if(n!==o)return l(n,o)}while(++t)}inc(e,t,n){if(e.startsWith("pre")){if(!t&&!1===n)throw new Error("invalid increment argument: identifier is empty");if(t){const e=`-${t}`.match(this.options.loose?a[s.PRERELEASELOOSE]:a[s.PRERELEASE]);if(!e||e[1]!==t)throw new Error(`invalid identifier: ${t}`)}}switch(e){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",t,n);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",t,n);break;case"prepatch":this.prerelease.length=0,this.inc("patch",t,n),this.inc("pre",t,n);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",t,n),this.inc("pre",t,n);break;case"release":if(0===this.prerelease.length)throw new Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;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 e=Number(n)?1:0;if(0===this.prerelease.length)this.prerelease=[e];else{let r=this.prerelease.length;for(;--r>=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);if(-1===r){if(t===this.prerelease.join(".")&&!1===n)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(e)}}if(t){let r=[t,e];!1===n&&(r=[t]),0===l(this.prerelease[0],t)?isNaN(this.prerelease[1])&&(this.prerelease=r):this.prerelease=r}break}default:throw new Error(`invalid increment argument: ${e}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}e.exports=u},38064(e,t,n){"use strict";const r=n(55950);e.exports=(e,t)=>new r(e,t).major},68690(e,t,n){"use strict";const r=n(55950);e.exports=(e,t,n=!1)=>{if(e instanceof r)return e;try{return new r(e,t)}catch(e){if(!n)return null;throw e}}},38711(e,t,n){"use strict";const r=n(68690);e.exports=(e,t)=>{const n=r(e,t);return n?n.version:null}},76692(e){"use strict";const t=Number.MAX_SAFE_INTEGER||9007199254740991;e.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:16,MAX_SAFE_BUILD_LENGTH:250,MAX_SAFE_INTEGER:t,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:"2.0.0",FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},92322(e,t,n){"use strict";var r=n(65606);const o="object"==typeof r&&r.env&&r.env.NODE_DEBUG&&/\bsemver\b/i.test(r.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{};e.exports=o},3229(e){"use strict";const t=/^[0-9]+$/,n=(e,n)=>{if("number"==typeof e&&"number"==typeof n)return e===n?0:e<n?-1:1;const r=t.test(e),o=t.test(n);return r&&o&&(e=+e,n=+n),e===n?0:r&&!o?-1:o&&!r?1:e<n?-1:1};e.exports={compareIdentifiers:n,rcompareIdentifiers:(e,t)=>n(t,e)}},29901(e){"use strict";const t=Object.freeze({loose:!0}),n=Object.freeze({});e.exports=e=>e?"object"!=typeof e?t:e:n},15208(e,t,n){"use strict";const{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:o,MAX_LENGTH:i}=n(76692),a=n(92322),s=(t=e.exports={}).re=[],c=t.safeRe=[],l=t.src=[],u=t.safeSrc=[],f=t.t={};let p=0;const d="[a-zA-Z0-9-]",h=[["\\s",1],["\\d",i],[d,o]],v=(e,t,n)=>{const r=(e=>{for(const[t,n]of h)e=e.split(`${t}*`).join(`${t}{0,${n}}`).split(`${t}+`).join(`${t}{1,${n}}`);return e})(t),o=p++;a(e,o,t),f[e]=o,l[o]=t,u[o]=r,s[o]=new RegExp(t,n?"g":void 0),c[o]=new RegExp(r,n?"g":void 0)};v("NUMERICIDENTIFIER","0|[1-9]\\d*"),v("NUMERICIDENTIFIERLOOSE","\\d+"),v("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${d}*`),v("MAINVERSION",`(${l[f.NUMERICIDENTIFIER]})\\.(${l[f.NUMERICIDENTIFIER]})\\.(${l[f.NUMERICIDENTIFIER]})`),v("MAINVERSIONLOOSE",`(${l[f.NUMERICIDENTIFIERLOOSE]})\\.(${l[f.NUMERICIDENTIFIERLOOSE]})\\.(${l[f.NUMERICIDENTIFIERLOOSE]})`),v("PRERELEASEIDENTIFIER",`(?:${l[f.NONNUMERICIDENTIFIER]}|${l[f.NUMERICIDENTIFIER]})`),v("PRERELEASEIDENTIFIERLOOSE",`(?:${l[f.NONNUMERICIDENTIFIER]}|${l[f.NUMERICIDENTIFIERLOOSE]})`),v("PRERELEASE",`(?:-(${l[f.PRERELEASEIDENTIFIER]}(?:\\.${l[f.PRERELEASEIDENTIFIER]})*))`),v("PRERELEASELOOSE",`(?:-?(${l[f.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${l[f.PRERELEASEIDENTIFIERLOOSE]})*))`),v("BUILDIDENTIFIER",`${d}+`),v("BUILD",`(?:\\+(${l[f.BUILDIDENTIFIER]}(?:\\.${l[f.BUILDIDENTIFIER]})*))`),v("FULLPLAIN",`v?${l[f.MAINVERSION]}${l[f.PRERELEASE]}?${l[f.BUILD]}?`),v("FULL",`^${l[f.FULLPLAIN]}$`),v("LOOSEPLAIN",`[v=\\s]*${l[f.MAINVERSIONLOOSE]}${l[f.PRERELEASELOOSE]}?${l[f.BUILD]}?`),v("LOOSE",`^${l[f.LOOSEPLAIN]}$`),v("GTLT","((?:<|>)?=?)"),v("XRANGEIDENTIFIERLOOSE",`${l[f.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),v("XRANGEIDENTIFIER",`${l[f.NUMERICIDENTIFIER]}|x|X|\\*`),v("XRANGEPLAIN",`[v=\\s]*(${l[f.XRANGEIDENTIFIER]})(?:\\.(${l[f.XRANGEIDENTIFIER]})(?:\\.(${l[f.XRANGEIDENTIFIER]})(?:${l[f.PRERELEASE]})?${l[f.BUILD]}?)?)?`),v("XRANGEPLAINLOOSE",`[v=\\s]*(${l[f.XRANGEIDENTIFIERLOOSE]})(?:\\.(${l[f.XRANGEIDENTIFIERLOOSE]})(?:\\.(${l[f.XRANGEIDENTIFIERLOOSE]})(?:${l[f.PRERELEASELOOSE]})?${l[f.BUILD]}?)?)?`),v("XRANGE",`^${l[f.GTLT]}\\s*${l[f.XRANGEPLAIN]}$`),v("XRANGELOOSE",`^${l[f.GTLT]}\\s*${l[f.XRANGEPLAINLOOSE]}$`),v("COERCEPLAIN",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?`),v("COERCE",`${l[f.COERCEPLAIN]}(?:$|[^\\d])`),v("COERCEFULL",l[f.COERCEPLAIN]+`(?:${l[f.PRERELEASE]})?`+`(?:${l[f.BUILD]})?(?:$|[^\\d])`),v("COERCERTL",l[f.COERCE],!0),v("COERCERTLFULL",l[f.COERCEFULL],!0),v("LONETILDE","(?:~>?)"),v("TILDETRIM",`(\\s*)${l[f.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",v("TILDE",`^${l[f.LONETILDE]}${l[f.XRANGEPLAIN]}$`),v("TILDELOOSE",`^${l[f.LONETILDE]}${l[f.XRANGEPLAINLOOSE]}$`),v("LONECARET","(?:\\^)"),v("CARETTRIM",`(\\s*)${l[f.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",v("CARET",`^${l[f.LONECARET]}${l[f.XRANGEPLAIN]}$`),v("CARETLOOSE",`^${l[f.LONECARET]}${l[f.XRANGEPLAINLOOSE]}$`),v("COMPARATORLOOSE",`^${l[f.GTLT]}\\s*(${l[f.LOOSEPLAIN]})$|^$`),v("COMPARATOR",`^${l[f.GTLT]}\\s*(${l[f.FULLPLAIN]})$|^$`),v("COMPARATORTRIM",`(\\s*)${l[f.GTLT]}\\s*(${l[f.LOOSEPLAIN]}|${l[f.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",v("HYPHENRANGE",`^\\s*(${l[f.XRANGEPLAIN]})\\s+-\\s+(${l[f.XRANGEPLAIN]})\\s*$`),v("HYPHENRANGELOOSE",`^\\s*(${l[f.XRANGEPLAINLOOSE]})\\s+-\\s+(${l[f.XRANGEPLAINLOOSE]})\\s*$`),v("STAR","(<|>)?=?\\s*\\*"),v("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),v("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},98216(e,t,n){"use strict";n.d(t,{A:()=>s});var r=n(71354),o=n.n(r),i=n(76314),a=n.n(i)()(o());a.push([e.id,"/**\n * SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon[data-v-528e9576] {\n display: flex;\n align-self: center;\n justify-self: center;\n align-items: center;\n justify-content: center;\n}\n#guest-content-vue[data-v-528e9576] {\n color: var(--color-main-text);\n background-color: var(--color-main-background);\n min-width: 0;\n border-radius: var(--border-radius-large);\n box-shadow: 0 0 10px var(--color-box-shadow);\n height: fit-content;\n padding: 15px;\n margin: 20px auto;\n}/**\n * SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n display: flex;\n align-self: center;\n justify-self: center;\n align-items: center;\n justify-content: center;\n}\n#content.nc-guest-content {\n overflow: auto;\n margin-bottom: 0;\n height: calc(var(--body-height) + var(--body-container-margin));\n}","",{version:3,sources:["webpack://./node_modules/@f7cloud/vue/dist/assets/NcGuestContent-BkegjnLL.css"],names:[],mappings:"AAAA;;;EAGE;AACF;;;EAGE;AACF;;CAEC;AACD;EACE,aAAa;EACb,kBAAkB;EAClB,oBAAoB;EACpB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,6BAA6B;EAC7B,8CAA8C;EAC9C,YAAY;EACZ,yCAAyC;EACzC,4CAA4C;EAC5C,mBAAmB;EACnB,aAAa;EACb,iBAAiB;AACnB,CAAC;;;EAGC;AACF;;;EAGE;AACF;;CAEC;AACD;EACE,aAAa;EACb,kBAAkB;EAClB,oBAAoB;EACpB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,cAAc;EACd,gBAAgB;EAChB,+DAA+D;AACjE",sourcesContent:["/**\n * SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon[data-v-528e9576] {\n display: flex;\n align-self: center;\n justify-self: center;\n align-items: center;\n justify-content: center;\n}\n#guest-content-vue[data-v-528e9576] {\n color: var(--color-main-text);\n background-color: var(--color-main-background);\n min-width: 0;\n border-radius: var(--border-radius-large);\n box-shadow: 0 0 10px var(--color-box-shadow);\n height: fit-content;\n padding: 15px;\n margin: 20px auto;\n}/**\n * SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/*\n* Ensure proper alignment of the vue material icons\n*/\n.material-design-icon {\n display: flex;\n align-self: center;\n justify-self: center;\n align-items: center;\n justify-content: center;\n}\n#content.nc-guest-content {\n overflow: auto;\n margin-bottom: 0;\n height: calc(var(--body-height) + var(--body-container-margin));\n}"],sourceRoot:""}]);const s=a},76314(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,o,i){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var s=0;s<this.length;s++){var c=this[s][0];null!=c&&(a[c]=!0)}for(var l=0;l<e.length;l++){var u=[].concat(e[l]);r&&a[u[0]]||(void 0!==i&&(void 0===u[5]||(u[1]="@layer".concat(u[5].length>0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=i),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},71354(e){"use strict";e.exports=function(e){var t=e[1],n=e[3];if(!n)return t;if("function"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),i="/*# ".concat(o," */");return[t].concat([i]).join("\n")}return[t].join("\n")}},70580(e){"use strict";var t=/["'&<>]/;e.exports=function(e){var n,r=""+e,o=t.exec(r);if(!o)return r;var i="",a=0,s=0;for(a=o.index;a<r.length;a++){switch(r.charCodeAt(a)){case 34:n="&quot;";break;case 38:n="&amp;";break;case 39:n="&#39;";break;case 60:n="&lt;";break;case 62:n="&gt;";break;default:continue}s!==a&&(i+=r.substring(s,a)),s=a+1,i+=n}return s!==a?i+r.substring(s,a):i}},65606(e){var t,n,r=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function a(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:o}catch(e){t=o}try{n="function"==typeof clearTimeout?clearTimeout:i}catch(e){n=i}}();var s,c=[],l=!1,u=-1;function f(){l&&s&&(l=!1,s.length?c=s.concat(c):u=-1,c.length&&p())}function p(){if(!l){var e=a(f);l=!0;for(var t=c.length;t;){for(s=c,c=[];++u<t;)s&&s[u].run();u=-1,t=c.length}s=null,l=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===i||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{return n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function d(e,t){this.fun=e,this.array=t}function h(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];c.push(new d(e,t)),1!==c.length||l||a(p)},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=h,r.addListener=h,r.once=h,r.off=h,r.removeListener=h,r.removeAllListeners=h,r.emit=h,r.prependListener=h,r.prependOnceListener=h,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},85072(e){"use strict";var t=[];function n(e){for(var n=-1,r=0;r<t.length;r++)if(t[r].identifier===e){n=r;break}return n}function r(e,r){for(var i={},a=[],s=0;s<e.length;s++){var c=e[s],l=r.base?c[0]+r.base:c[0],u=i[l]||0,f="".concat(l," ").concat(u);i[l]=u+1;var p=n(f),d={css:c[1],media:c[2],sourceMap:c[3],supports:c[4],layer:c[5]};if(-1!==p)t[p].references++,t[p].updater(d);else{var h=o(d,r);r.byIndex=s,t.splice(s,0,{identifier:f,updater:h,references:1})}a.push(f)}return a}function o(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,o){var i=r(e=e||[],o=o||{});return function(e){e=e||[];for(var a=0;a<i.length;a++){var s=n(i[a]);t[s].references--}for(var c=r(e,o),l=0;l<i.length;l++){var u=n(i[l]);0===t[u].references&&(t[u].updater(),t.splice(u,1))}i=c}}},77659(e){"use strict";var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(n)}},10540(e){"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},55056(e,t,n){"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},97825(e){"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r="";n.supports&&(r+="@supports (".concat(n.supports,") {")),n.media&&(r+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(r+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var i=n.sourceMap;i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},41113(e){"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={id:r,exports:{}};return e[r](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.p="/js/",n.nc=void 0,(()=>{"use strict";var e=n(38064),t=n(38711);class r{bus;constructor(n){"function"==typeof n.getVersion&&t(n.getVersion())?e(n.getVersion())!==e(this.getVersion())&&console.warn("Proxying an event bus of version "+n.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=n}getVersion(){return"3.3.3"}subscribe(e,t){this.bus.subscribe(e,t)}unsubscribe(e,t){this.bus.unsubscribe(e,t)}emit(e,...t){this.bus.emit(e,...t)}}class o{handlers=new Map;getVersion(){return"3.3.3"}subscribe(e,t){this.handlers.set(e,(this.handlers.get(e)||[]).concat(t))}unsubscribe(e,t){this.handlers.set(e,(this.handlers.get(e)||[]).filter(e=>e!==t))}emit(e,...t){(this.handlers.get(e)||[]).forEach(e=>{try{e(t[0])}catch(e){console.error("could not invoke event listener",e)}})}}let i,a=null;class s{static GLOBAL_SCOPE_VOLATILE="f7cloud_vol";static GLOBAL_SCOPE_PERSISTENT="f7cloud_per";scope;wrapped;constructor(e,t,n){this.scope=`${n?s.GLOBAL_SCOPE_PERSISTENT:s.GLOBAL_SCOPE_VOLATILE}_${btoa(e)}_`,this.wrapped=t}scopeKey(e){return`${this.scope}${e}`}setItem(e,t){this.wrapped.setItem(this.scopeKey(e),t)}getItem(e){return this.wrapped.getItem(this.scopeKey(e))}removeItem(e){this.wrapped.removeItem(this.scopeKey(e))}clear(){Object.keys(this.wrapped).filter(e=>e.startsWith(this.scope)).map(this.wrapped.removeItem.bind(this.wrapped))}}const c=[];var l;l=e=>{i=e.token,c.forEach(e=>{try{e(i)}catch(e){console.error("Error updating CSRF token observer",e)}})},(null!==a?a:"undefined"==typeof window?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(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 r(window._nc_event_bus):window._nc_event_bus=new o,a)).subscribe("csrf-token-update",l),new class{appId;persisted=!1;clearedOnLogout=!1;constructor(e){this.appId=e}persist(e=!0){return this.persisted=e,this}clearOnLogout(e=!0){return this.clearedOnLogout=e,this}build(){return new s(this.appId,this.persisted?window.localStorage:window.sessionStorage,!this.clearedOnLogout)}}("public").persist().build();var u=Object.freeze({}),f=Array.isArray;function p(e){return null==e}function d(e){return null!=e}function h(e){return!0===e}function v(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function m(e){return"function"==typeof e}function g(e){return null!==e&&"object"==typeof e}var y=Object.prototype.toString;function _(e){return"[object Object]"===y.call(e)}function E(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function b(e){return d(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function A(e){return null==e?"":Array.isArray(e)||_(e)&&e.toString===y?JSON.stringify(e,T,2):String(e)}function T(e,t){return t&&t.__v_isRef?t.value:t}function C(e){var t=parseFloat(e);return isNaN(t)?e:t}function w(e,t){for(var n=Object.create(null),r=e.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}w("slot,component",!0);var O=w("key,ref,slot,slot-scope,is");function S(e,t){var n=e.length;if(n){if(t===e[n-1])return void(e.length=n-1);var r=e.indexOf(t);if(r>-1)return e.splice(r,1)}}var I=Object.prototype.hasOwnProperty;function N(e,t){return I.call(e,t)}function x(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var L=/-(\w)/g,$=x(function(e){return e.replace(L,function(e,t){return t?t.toUpperCase():""})}),R=x(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),k=/\B([A-Z])/g,D=x(function(e){return e.replace(k,"-$1").toLowerCase()}),P=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n};function M(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function F(e,t){for(var n in t)e[n]=t[n];return e}function j(e){for(var t={},n=0;n<e.length;n++)e[n]&&F(t,e[n]);return t}function U(e,t,n){}var B=function(e,t,n){return!1},G=function(e){return e};function H(e,t){if(e===t)return!0;var n=g(e),r=g(t);if(!n||!r)return!n&&!r&&String(e)===String(t);try{var o=Array.isArray(e),i=Array.isArray(t);if(o&&i)return e.length===t.length&&e.every(function(e,n){return H(e,t[n])});if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(o||i)return!1;var a=Object.keys(e),s=Object.keys(t);return a.length===s.length&&a.every(function(n){return H(e[n],t[n])})}catch(e){return!1}}function z(e,t){for(var n=0;n<e.length;n++)if(H(e[n],t))return n;return-1}function X(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var V="data-server-rendered",W=["component","directive","filter"],Y=["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:B,isReservedAttr:B,isUnknownElement:B,getTagNamespace:U,parsePlatformTagName:G,mustUseProp:B,async:!0,_lifecycleHooks:Y};function K(e){var t=(e+"").charCodeAt(0);return 36===t||95===t}function Z(e,t,n,r){Object.defineProperty(e,t,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var J=new RegExp("[^".concat(/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/.source,".$_\\d]")),Q="__proto__"in{},ee="undefined"!=typeof window,te=ee&&window.navigator.userAgent.toLowerCase(),ne=te&&/msie|trident/.test(te),re=te&&te.indexOf("msie 9.0")>0,oe=te&&te.indexOf("edge/")>0;te&&te.indexOf("android");var ie=te&&/iphone|ipad|ipod|ios/.test(te);te&&/chrome\/\d+/.test(te),te&&/phantomjs/.test(te);var ae,se=te&&te.match(/firefox\/(\d+)/),ce={}.watch,le=!1;if(ee)try{var ue={};Object.defineProperty(ue,"passive",{get:function(){le=!0}}),window.addEventListener("test-passive",null,ue)}catch(e){}var fe=function(){return void 0===ae&&(ae=!ee&&"undefined"!=typeof globalThis&&globalThis.process&&"server"===globalThis.process.env.VUE_ENV),ae},pe=ee&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function de(e){return"function"==typeof e&&/native code/.test(e.toString())}var he,ve="undefined"!=typeof Symbol&&de(Symbol)&&"undefined"!=typeof Reflect&&de(Reflect.ownKeys);he="undefined"!=typeof Set&&de(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var me=null;function ge(e){void 0===e&&(e=null),e||me&&me._scope.off(),me=e,e&&e._scope.on()}var ye=function(){function e(e,t,n,r,o,i,a,s){this.tag=e,this.data=t,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=a,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=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(e.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),e}(),_e=function(e){void 0===e&&(e="");var t=new ye;return t.text=e,t.isComment=!0,t};function Ee(e){return new ye(void 0,void 0,void 0,String(e))}function be(e){var t=new ye(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.asyncMeta=e.asyncMeta,t.isCloned=!0,t}"function"==typeof SuppressedError&&SuppressedError;var Ae=0,Te=[],Ce=function(){function e(){this._pending=!1,this.id=Ae++,this.subs=[]}return e.prototype.addSub=function(e){this.subs.push(e)},e.prototype.removeSub=function(e){this.subs[this.subs.indexOf(e)]=null,this._pending||(this._pending=!0,Te.push(this))},e.prototype.depend=function(t){e.target&&e.target.addDep(this)},e.prototype.notify=function(e){for(var t=this.subs.filter(function(e){return e}),n=0,r=t.length;n<r;n++)t[n].update()},e}();Ce.target=null;var we=[];function Oe(e){we.push(e),Ce.target=e}function Se(){we.pop(),Ce.target=we[we.length-1]}var Ie=Array.prototype,Ne=Object.create(Ie);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(e){var t=Ie[e];Z(Ne,e,function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var o,i=t.apply(this,n),a=this.__ob__;switch(e){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2)}return o&&a.observeArray(o),a.dep.notify(),i})});var xe=Object.getOwnPropertyNames(Ne),Le={},$e=!0;function Re(e){$e=e}var ke={notify:U,depend:U,addSub:U,removeSub:U},De=function(){function e(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=!1),this.value=e,this.shallow=t,this.mock=n,this.dep=n?ke:new Ce,this.vmCount=0,Z(e,"__ob__",this),f(e)){if(!n)if(Q)e.__proto__=Ne;else for(var r=0,o=xe.length;r<o;r++)Z(e,a=xe[r],Ne[a]);t||this.observeArray(e)}else{var i=Object.keys(e);for(r=0;r<i.length;r++){var a;Me(e,a=i[r],Le,void 0,t,n)}}}return e.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)Pe(e[t],!1,this.mock)},e}();function Pe(e,t,n){return e&&N(e,"__ob__")&&e.__ob__ instanceof De?e.__ob__:!$e||!n&&fe()||!f(e)&&!_(e)||!Object.isExtensible(e)||e.__v_skip||He(e)||e instanceof ye?void 0:new De(e,t,n)}function Me(e,t,n,r,o,i,a){void 0===a&&(a=!1);var s=new Ce,c=Object.getOwnPropertyDescriptor(e,t);if(!c||!1!==c.configurable){var l=c&&c.get,u=c&&c.set;l&&!u||n!==Le&&2!==arguments.length||(n=e[t]);var p=o?n&&n.__ob__:Pe(n,!1,i);return Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=l?l.call(e):n;return Ce.target&&(s.depend(),p&&(p.dep.depend(),f(t)&&Ue(t))),He(t)&&!o?t.value:t},set:function(t){var r,a,c=l?l.call(e):n;if((r=c)===(a=t)?0===r&&1/r!=1/a:r==r||a==a){if(u)u.call(e,t);else{if(l)return;if(!o&&He(c)&&!He(t))return void(c.value=t);n=t}p=o?t&&t.__ob__:Pe(t,!1,i),s.notify()}}}),s}}function Fe(e,t,n){if(!Ge(e)){var r=e.__ob__;return f(e)&&E(t)?(e.length=Math.max(e.length,t),e.splice(t,1,n),r&&!r.shallow&&r.mock&&Pe(n,!1,!0),n):t in e&&!(t in Object.prototype)?(e[t]=n,n):e._isVue||r&&r.vmCount?n:r?(Me(r.value,t,n,void 0,r.shallow,r.mock),r.dep.notify(),n):(e[t]=n,n)}}function je(e,t){if(f(e)&&E(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||Ge(e)||N(e,t)&&(delete e[t],n&&n.dep.notify())}}function Ue(e){for(var t=void 0,n=0,r=e.length;n<r;n++)(t=e[n])&&t.__ob__&&t.__ob__.dep.depend(),f(t)&&Ue(t)}function Be(e){return function(e,t){Ge(e)||Pe(e,t,fe())}(e,!0),Z(e,"__v_isShallow",!0),e}function Ge(e){return!(!e||!e.__v_isReadonly)}function He(e){return!(!e||!0!==e.__v_isRef)}function ze(e,t,n){Object.defineProperty(e,n,{enumerable:!0,configurable:!0,get:function(){var e=t[n];if(He(e))return e.value;var r=e&&e.__ob__;return r&&r.dep.depend(),e},set:function(e){var r=t[n];He(r)&&!He(e)?r.value=e:t[n]=e}})}var Xe,Ve="watcher";"".concat(Ve," callback"),"".concat(Ve," getter"),"".concat(Ve," cleanup");var We=function(){function e(e){void 0===e&&(e=!1),this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=Xe,!e&&Xe&&(this.index=(Xe.scopes||(Xe.scopes=[])).push(this)-1)}return e.prototype.run=function(e){if(this.active){var t=Xe;try{return Xe=this,e()}finally{Xe=t}}},e.prototype.on=function(){Xe=this},e.prototype.off=function(){Xe=this.parent},e.prototype.stop=function(e){if(this.active){var t=void 0,n=void 0;for(t=0,n=this.effects.length;t<n;t++)this.effects[t].teardown();for(t=0,n=this.cleanups.length;t<n;t++)this.cleanups[t]();if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].stop(!0);if(!this.detached&&this.parent&&!e){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}},e}();var Ye=x(function(e){var t="&"===e.charAt(0),n="~"===(e=t?e.slice(1):e).charAt(0),r="!"===(e=n?e.slice(1):e).charAt(0);return{name:e=r?e.slice(1):e,once:n,capture:r,passive:t}});function qe(e,t){function n(){var e=n.fns;if(!f(e))return $t(e,null,arguments,t,"v-on handler");for(var r=e.slice(),o=0;o<r.length;o++)$t(r[o],null,arguments,t,"v-on handler")}return n.fns=e,n}function Ke(e,t,n,r,o,i){var a,s,c,l;for(a in e)s=e[a],c=t[a],l=Ye(a),p(s)||(p(c)?(p(s.fns)&&(s=e[a]=qe(s,i)),h(l.once)&&(s=e[a]=o(l.name,s,l.capture)),n(l.name,s,l.capture,l.passive,l.params)):s!==c&&(c.fns=s,e[a]=c));for(a in t)p(e[a])&&r((l=Ye(a)).name,t[a],l.capture)}function Ze(e,t,n){var r;e instanceof ye&&(e=e.data.hook||(e.data.hook={}));var o=e[t];function i(){n.apply(this,arguments),S(r.fns,i)}p(o)?r=qe([i]):d(o.fns)&&h(o.merged)?(r=o).fns.push(i):r=qe([o,i]),r.merged=!0,e[t]=r}function Je(e,t,n,r,o){if(d(t)){if(N(t,n))return e[n]=t[n],o||delete t[n],!0;if(N(t,r))return e[n]=t[r],o||delete t[r],!0}return!1}function Qe(e){return v(e)?[Ee(e)]:f(e)?tt(e):void 0}function et(e){return d(e)&&d(e.text)&&!1===e.isComment}function tt(e,t){var n,r,o,i,a=[];for(n=0;n<e.length;n++)p(r=e[n])||"boolean"==typeof r||(i=a[o=a.length-1],f(r)?r.length>0&&(et((r=tt(r,"".concat(t||"","_").concat(n)))[0])&&et(i)&&(a[o]=Ee(i.text+r[0].text),r.shift()),a.push.apply(a,r)):v(r)?et(i)?a[o]=Ee(i.text+r):""!==r&&a.push(Ee(r)):et(r)&&et(i)?a[o]=Ee(i.text+r.text):(h(e._isVList)&&d(r.tag)&&p(r.key)&&d(t)&&(r.key="__vlist".concat(t,"_").concat(n,"__")),a.push(r)));return a}function nt(e,t){var n,r,o,i,a=null;if(f(e)||"string"==typeof e)for(a=new Array(e.length),n=0,r=e.length;n<r;n++)a[n]=t(e[n],n);else if("number"==typeof e)for(a=new Array(e),n=0;n<e;n++)a[n]=t(n+1,n);else if(g(e))if(ve&&e[Symbol.iterator]){a=[];for(var s=e[Symbol.iterator](),c=s.next();!c.done;)a.push(t(c.value,a.length)),c=s.next()}else for(o=Object.keys(e),a=new Array(o.length),n=0,r=o.length;n<r;n++)i=o[n],a[n]=t(e[i],i,n);return d(a)||(a=[]),a._isVList=!0,a}function rt(e,t,n,r){var o,i=this.$scopedSlots[e];i?(n=n||{},r&&(n=F(F({},r),n)),o=i(n)||(m(t)?t():t)):o=this.$slots[e]||(m(t)?t():t);var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function ot(e){return Mn(this.$options,"filters",e)||G}function it(e,t){return f(e)?-1===e.indexOf(t):e!==t}function at(e,t,n,r,o){var i=q.keyCodes[t]||n;return o&&r&&!q.keyCodes[t]?it(o,r):i?it(i,e):r?D(r)!==t:void 0===e}function st(e,t,n,r,o){if(n&&g(n)){f(n)&&(n=j(n));var i=void 0,a=function(a){if("class"===a||"style"===a||O(a))i=e;else{var s=e.attrs&&e.attrs.type;i=r||q.mustUseProp(t,s,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var c=$(a),l=D(a);c in i||l in i||(i[a]=n[a],o&&((e.on||(e.on={}))["update:".concat(a)]=function(e){n[a]=e}))};for(var s in n)a(s)}return e}function ct(e,t){var n=this._staticTrees||(this._staticTrees=[]),r=n[e];return r&&!t||ut(r=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,this._c,this),"__static__".concat(e),!1),r}function lt(e,t,n){return ut(e,"__once__".concat(t).concat(n?"_".concat(n):""),!0),e}function ut(e,t,n){if(f(e))for(var r=0;r<e.length;r++)e[r]&&"string"!=typeof e[r]&&ft(e[r],"".concat(t,"_").concat(r),n);else ft(e,t,n)}function ft(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function pt(e,t){if(t&&_(t)){var n=e.on=e.on?F({},e.on):{};for(var r in t){var o=n[r],i=t[r];n[r]=o?[].concat(o,i):i}}return e}function dt(e,t,n,r){t=t||{$stable:!n};for(var o=0;o<e.length;o++){var i=e[o];f(i)?dt(i,t,n):i&&(i.proxy&&(i.fn.proxy=!0),t[i.key]=i.fn)}return r&&(t.$key=r),t}function ht(e,t){for(var n=0;n<t.length;n+=2){var r=t[n];"string"==typeof r&&r&&(e[t[n]]=t[n+1])}return e}function vt(e,t){return"string"==typeof e?t+e:e}function mt(e){e._o=lt,e._n=C,e._s=A,e._l=nt,e._t=rt,e._q=H,e._i=z,e._m=ct,e._f=ot,e._k=at,e._b=st,e._v=Ee,e._e=_e,e._u=dt,e._g=pt,e._d=ht,e._p=vt}function gt(e,t){if(!e||!e.length)return{};for(var n={},r=0,o=e.length;r<o;r++){var i=e[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==t&&i.fnContext!==t||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var s=a.slot,c=n[s]||(n[s]=[]);"template"===i.tag?c.push.apply(c,i.children||[]):c.push(i)}}for(var l in n)n[l].every(yt)&&delete n[l];return n}function yt(e){return e.isComment&&!e.asyncFactory||" "===e.text}function _t(e){return e.isComment&&e.asyncFactory}function Et(e,t,n,r){var o,i=Object.keys(n).length>0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==u&&s===r.$key&&!i&&!r.$hasNormal)return r;for(var c in o={},t)t[c]&&"$"!==c[0]&&(o[c]=bt(e,n,c,t[c]))}else o={};for(var l in n)l in o||(o[l]=At(n,l));return t&&Object.isExtensible(t)&&(t._normalized=o),Z(o,"$stable",a),Z(o,"$key",s),Z(o,"$hasNormal",i),o}function bt(e,t,n,r){var o=function(){var t=me;ge(e);var n=arguments.length?r.apply(null,arguments):r({}),o=(n=n&&"object"==typeof n&&!f(n)?[n]:Qe(n))&&n[0];return ge(t),n&&(!o||1===n.length&&o.isComment&&!_t(o))?void 0:n};return r.proxy&&Object.defineProperty(t,n,{get:o,enumerable:!0,configurable:!0}),o}function At(e,t){return function(){return e[t]}}function Tt(e,t,n,r,o){var i=!1;for(var a in t)a in e?t[a]!==n[a]&&(i=!0):(i=!0,Ct(e,a,r,o));for(var a in e)a in t||(i=!0,delete e[a]);return i}function Ct(e,t,n,r){Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){return n[r][t]}})}function wt(e,t){for(var n in t)e[n]=t[n];for(var n in e)n in t||delete e[n]}var Ot=null;function St(e,t){return(e.__esModule||ve&&"Module"===e[Symbol.toStringTag])&&(e=e.default),g(e)?t.extend(e):e}function It(e){if(f(e))for(var t=0;t<e.length;t++){var n=e[t];if(d(n)&&(d(n.componentOptions)||_t(n)))return n}}function Nt(e,t,n,r,o,i){return(f(n)||v(n))&&(o=r,r=n,n=void 0),h(i)&&(o=2),function(e,t,n,r,o){if(d(n)&&d(n.__ob__))return _e();if(d(n)&&d(n.is)&&(t=n.is),!t)return _e();var i,a;if(f(r)&&m(r[0])&&((n=n||{}).scopedSlots={default:r[0]},r.length=0),2===o?r=Qe(r):1===o&&(r=function(e){for(var t=0;t<e.length;t++)if(f(e[t]))return Array.prototype.concat.apply([],e);return e}(r)),"string"==typeof t){var s=void 0;a=e.$vnode&&e.$vnode.ns||q.getTagNamespace(t),i=q.isReservedTag(t)?new ye(q.parsePlatformTagName(t),n,r,void 0,void 0,e):n&&n.pre||!d(s=Mn(e.$options,"components",t))?new ye(t,n,r,void 0,void 0,e):Sn(s,n,e,r,t)}else i=Sn(t,n,e,r);return f(i)?i:d(i)?(d(a)&&xt(i,a),d(n)&&function(e){g(e.style)&&Wt(e.style),g(e.class)&&Wt(e.class)}(n),i):_e()}(e,t,n,r,o)}function xt(e,t,n){if(e.ns=t,"foreignObject"===e.tag&&(t=void 0,n=!0),d(e.children))for(var r=0,o=e.children.length;r<o;r++){var i=e.children[r];d(i.tag)&&(p(i.ns)||h(n)&&"svg"!==i.tag)&&xt(i,t,n)}}function Lt(e,t,n){Oe();try{if(t)for(var r=t;r=r.$parent;){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{if(!1===o[i].call(r,e,t,n))return}catch(e){Rt(e,r,"errorCaptured hook")}}Rt(e,t,n)}finally{Se()}}function $t(e,t,n,r,o){var i;try{(i=n?e.apply(t,n):e.call(t))&&!i._isVue&&b(i)&&!i._handled&&(i.catch(function(e){return Lt(e,r,o+" (Promise/async)")}),i._handled=!0)}catch(e){Lt(e,r,o)}return i}function Rt(e,t,n){if(q.errorHandler)try{return q.errorHandler.call(null,e,t,n)}catch(t){t!==e&&kt(t)}kt(e)}function kt(e,t,n){if(!ee||"undefined"==typeof console)throw e;console.error(e)}var Dt,Pt=!1,Mt=[],Ft=!1;function jt(){Ft=!1;var e=Mt.slice(0);Mt.length=0;for(var t=0;t<e.length;t++)e[t]()}if("undefined"!=typeof Promise&&de(Promise)){var Ut=Promise.resolve();Dt=function(){Ut.then(jt),ie&&setTimeout(U)},Pt=!0}else if(ne||"undefined"==typeof MutationObserver||!de(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Dt="undefined"!=typeof setImmediate&&de(setImmediate)?function(){setImmediate(jt)}:function(){setTimeout(jt,0)};else{var Bt=1,Gt=new MutationObserver(jt),Ht=document.createTextNode(String(Bt));Gt.observe(Ht,{characterData:!0}),Dt=function(){Bt=(Bt+1)%2,Ht.data=String(Bt)},Pt=!0}function zt(e,t){var n;if(Mt.push(function(){if(e)try{e.call(t)}catch(e){Lt(e,t,"nextTick")}else n&&n(t)}),Ft||(Ft=!0,Dt()),!e&&"undefined"!=typeof Promise)return new Promise(function(e){n=e})}function Xt(e){return function(t,n){if(void 0===n&&(n=me),n)return function(e,t,n){var r=e.$options;r[t]=Rn(r[t],n)}(n,e,t)}}Xt("beforeMount"),Xt("mounted"),Xt("beforeUpdate"),Xt("updated"),Xt("beforeDestroy"),Xt("destroyed"),Xt("activated"),Xt("deactivated"),Xt("serverPrefetch"),Xt("renderTracked"),Xt("renderTriggered"),Xt("errorCaptured");var Vt=new he;function Wt(e){return Yt(e,Vt),Vt.clear(),e}function Yt(e,t){var n,r,o=f(e);if(!(!o&&!g(e)||e.__v_skip||Object.isFrozen(e)||e instanceof ye)){if(e.__ob__){var i=e.__ob__.dep.id;if(t.has(i))return;t.add(i)}if(o)for(n=e.length;n--;)Yt(e[n],t);else if(He(e))Yt(e.value,t);else for(n=(r=Object.keys(e)).length;n--;)Yt(e[r[n]],t)}}var qt,Kt=0,Zt=function(){function e(e,t,n,r,o){var i;void 0===(i=Xe&&!Xe._vm?Xe:e?e._scope:void 0)&&(i=Xe),i&&i.active&&i.effects.push(this),(this.vm=e)&&o&&(e._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=++Kt,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new he,this.newDepIds=new he,this.expression="",m(t)?this.getter=t:(this.getter=function(e){if(!J.test(e)){var t=e.split(".");return function(e){for(var n=0;n<t.length;n++){if(!e)return;e=e[t[n]]}return e}}}(t),this.getter||(this.getter=U)),this.value=this.lazy?void 0:this.get()}return e.prototype.get=function(){var e;Oe(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;Lt(e,t,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&Wt(e),Se(),this.cleanupDeps()}return e},e.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},e.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.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},e.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(e){var t=e.id;if(null==fn[t]&&(e!==Ce.target||!e.noRecurse)){if(fn[t]=!0,dn){for(var n=ln.length-1;n>hn&&ln[n].id>e.id;)n--;ln.splice(n+1,0,e)}else ln.push(e);pn||(pn=!0,zt(_n))}}(this)},e.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||g(e)||this.deep){var t=this.value;if(this.value=e,this.user){var n='callback for watcher "'.concat(this.expression,'"');$t(this.cb,this.vm,[e,t],this.vm,n)}else this.cb.call(this.vm,e,t)}}},e.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},e.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},e.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&S(this.vm._scope.effects,this),this.active){for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},e}();function Jt(e,t){qt.$on(e,t)}function Qt(e,t){qt.$off(e,t)}function en(e,t){var n=qt;return function r(){null!==t.apply(null,arguments)&&n.$off(e,r)}}function tn(e,t,n){qt=e,Ke(t,n||{},Jt,Qt,en,e),qt=void 0}var nn=null;function rn(e){var t=nn;return nn=e,function(){nn=t}}function on(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function an(e,t){if(t){if(e._directInactive=!1,on(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)an(e.$children[n]);cn(e,"activated")}}function sn(e,t){if(!(t&&(e._directInactive=!0,on(e))||e._inactive)){e._inactive=!0;for(var n=0;n<e.$children.length;n++)sn(e.$children[n]);cn(e,"deactivated")}}function cn(e,t,n,r){void 0===r&&(r=!0),Oe();var o=me,i=Xe;r&&ge(e);var a=e.$options[t],s="".concat(t," hook");if(a)for(var c=0,l=a.length;c<l;c++)$t(a[c],e,n||null,e,s);e._hasHookEvent&&e.$emit("hook:"+t),r&&(ge(o),i&&i.on()),Se()}var ln=[],un=[],fn={},pn=!1,dn=!1,hn=0,vn=0,mn=Date.now;if(ee&&!ne){var gn=window.performance;gn&&"function"==typeof gn.now&&mn()>document.createEvent("Event").timeStamp&&(mn=function(){return gn.now()})}var yn=function(e,t){if(e.post){if(!t.post)return 1}else if(t.post)return-1;return e.id-t.id};function _n(){var e,t;for(vn=mn(),dn=!0,ln.sort(yn),hn=0;hn<ln.length;hn++)(e=ln[hn]).before&&e.before(),t=e.id,fn[t]=null,e.run();var n=un.slice(),r=ln.slice();hn=ln.length=un.length=0,fn={},pn=dn=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,an(e[t],!0)}(n),function(e){for(var t=e.length;t--;){var n=e[t],r=n.vm;r&&r._watcher===n&&r._isMounted&&!r._isDestroyed&&cn(r,"updated")}}(r),function(){for(var e=0;e<Te.length;e++){var t=Te[e];t.subs=t.subs.filter(function(e){return e}),t._pending=!1}Te.length=0}(),pe&&q.devtools&&pe.emit("flush")}function En(e,t){if(e){for(var n=Object.create(null),r=ve?Reflect.ownKeys(e):Object.keys(e),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){var a=e[i].from;if(a in t._provided)n[i]=t._provided[a];else if("default"in e[i]){var s=e[i].default;n[i]=m(s)?s.call(t):s}}}return n}}function bn(e,t,n,r,o){var i,a=this,s=o.options;N(r,"_uid")?(i=Object.create(r))._original=r:(i=r,r=r._original);var c=h(s._compiled),l=!c;this.data=e,this.props=t,this.children=n,this.parent=r,this.listeners=e.on||u,this.injections=En(s.inject,r),this.slots=function(){return a.$slots||Et(r,e.scopedSlots,a.$slots=gt(n,r)),a.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return Et(r,e.scopedSlots,this.slots())}}),c&&(this.$options=s,this.$slots=this.slots(),this.$scopedSlots=Et(r,e.scopedSlots,this.$slots)),s._scopeId?this._c=function(e,t,n,o){var a=Nt(i,e,t,n,o,l);return a&&!f(a)&&(a.fnScopeId=s._scopeId,a.fnContext=r),a}:this._c=function(e,t,n,r){return Nt(i,e,t,n,r,l)}}function An(e,t,n,r,o){var i=be(e);return i.fnContext=n,i.fnOptions=r,t.slot&&((i.data||(i.data={})).slot=t.slot),i}function Tn(e,t){for(var n in t)e[$(n)]=t[n]}function Cn(e){return e.name||e.__name||e._componentTag}mt(bn.prototype);var wn={init:function(e,t){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var n=e;wn.prepatch(n,n)}else{var r=e.componentInstance=function(e,t){var n={_isComponent:!0,_parentVnode:e,parent:t},r=e.data.inlineTemplate;return d(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns),new e.componentOptions.Ctor(n)}(e,nn);r.$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,o){var i=r.data.scopedSlots,a=e.$scopedSlots,s=!!(i&&!i.$stable||a!==u&&!a.$stable||i&&e.$scopedSlots.$key!==i.$key||!i&&e.$scopedSlots.$key),c=!!(o||e.$options._renderChildren||s),l=e.$vnode;e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=o;var f=r.data.attrs||u;e._attrsProxy&&Tt(e._attrsProxy,f,l.data&&l.data.attrs||u,e,"$attrs")&&(c=!0),e.$attrs=f,n=n||u;var p=e.$options._parentListeners;if(e._listenersProxy&&Tt(e._listenersProxy,n,p||u,e,"$listeners"),e.$listeners=e.$options._parentListeners=n,tn(e,n,p),t&&e.$options.props){Re(!1);for(var d=e._props,h=e.$options._propKeys||[],v=0;v<h.length;v++){var m=h[v],g=e.$options.props;d[m]=Fn(m,g,t,e)}Re(!0),e.$options.propsData=t}c&&(e.$slots=gt(o,r.context),e.$forceUpdate())}(t.componentInstance=e.componentInstance,n.propsData,n.listeners,t,n.children)},insert:function(e){var t,n=e.context,r=e.componentInstance;r._isMounted||(r._isMounted=!0,cn(r,"mounted")),e.data.keepAlive&&(n._isMounted?((t=r)._inactive=!1,un.push(t)):an(r,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?sn(t,!0):t.$destroy())}},On=Object.keys(wn);function Sn(e,t,n,r,o){if(!p(e)){var i=n.$options._base;if(g(e)&&(e=i.extend(e)),"function"==typeof e){var a;if(p(e.cid)&&(e=function(e,t){if(h(e.error)&&d(e.errorComp))return e.errorComp;if(d(e.resolved))return e.resolved;var n=Ot;if(n&&d(e.owners)&&-1===e.owners.indexOf(n)&&e.owners.push(n),h(e.loading)&&d(e.loadingComp))return e.loadingComp;if(n&&!d(e.owners)){var r=e.owners=[n],o=!0,i=null,a=null;n.$on("hook:destroyed",function(){return S(r,n)});var s=function(e){for(var t=0,n=r.length;t<n;t++)r[t].$forceUpdate();e&&(r.length=0,null!==i&&(clearTimeout(i),i=null),null!==a&&(clearTimeout(a),a=null))},c=X(function(n){e.resolved=St(n,t),o?r.length=0:s(!0)}),l=X(function(t){d(e.errorComp)&&(e.error=!0,s(!0))}),u=e(c,l);return g(u)&&(b(u)?p(e.resolved)&&u.then(c,l):b(u.component)&&(u.component.then(c,l),d(u.error)&&(e.errorComp=St(u.error,t)),d(u.loading)&&(e.loadingComp=St(u.loading,t),0===u.delay?e.loading=!0:i=setTimeout(function(){i=null,p(e.resolved)&&p(e.error)&&(e.loading=!0,s(!1))},u.delay||200)),d(u.timeout)&&(a=setTimeout(function(){a=null,p(e.resolved)&&l(null)},u.timeout)))),o=!1,e.loading?e.loadingComp:e.resolved}}(a=e,i),void 0===e))return function(e,t,n,r,o){var i=_e();return i.asyncFactory=e,i.asyncMeta={data:t,context:n,children:r,tag:o},i}(a,t,n,r,o);t=t||{},Jn(e),d(t.model)&&function(e,t){var n=e.model&&e.model.prop||"value",r=e.model&&e.model.event||"input";(t.attrs||(t.attrs={}))[n]=t.model.value;var o=t.on||(t.on={}),i=o[r],a=t.model.callback;d(i)?(f(i)?-1===i.indexOf(a):i!==a)&&(o[r]=[a].concat(i)):o[r]=a}(e.options,t);var s=function(e,t){var n=t.options.props;if(!p(n)){var r={},o=e.attrs,i=e.props;if(d(o)||d(i))for(var a in n){var s=D(a);Je(r,i,a,s,!0)||Je(r,o,a,s,!1)}return r}}(t,e);if(h(e.options.functional))return function(e,t,n,r,o){var i=e.options,a={},s=i.props;if(d(s))for(var c in s)a[c]=Fn(c,s,t||u);else d(n.attrs)&&Tn(a,n.attrs),d(n.props)&&Tn(a,n.props);var l=new bn(n,a,o,r,e),p=i.render.call(null,l._c,l);if(p instanceof ye)return An(p,n,l.parent,i);if(f(p)){for(var h=Qe(p)||[],v=new Array(h.length),m=0;m<h.length;m++)v[m]=An(h[m],n,l.parent,i);return v}}(e,s,t,n,r);var c=t.on;if(t.on=t.nativeOn,h(e.options.abstract)){var l=t.slot;t={},l&&(t.slot=l)}!function(e){for(var t=e.hook||(e.hook={}),n=0;n<On.length;n++){var r=On[n],o=t[r],i=wn[r];o===i||o&&o._merged||(t[r]=o?In(i,o):i)}}(t);var v=Cn(e.options)||o;return new ye("vue-component-".concat(e.cid).concat(v?"-".concat(v):""),t,void 0,void 0,void 0,n,{Ctor:e,propsData:s,listeners:c,tag:o,children:r},a)}}}function In(e,t){var n=function(n,r){e(n,r),t(n,r)};return n._merged=!0,n}var Nn=U,xn=q.optionMergeStrategies;function Ln(e,t,n){if(void 0===n&&(n=!0),!t)return e;for(var r,o,i,a=ve?Reflect.ownKeys(t):Object.keys(t),s=0;s<a.length;s++)"__ob__"!==(r=a[s])&&(o=e[r],i=t[r],n&&N(e,r)?o!==i&&_(o)&&_(i)&&Ln(o,i):Fe(e,r,i));return e}function $n(e,t,n){return n?function(){var r=m(t)?t.call(n,n):t,o=m(e)?e.call(n,n):e;return r?Ln(r,o):o}:t?e?function(){return Ln(m(t)?t.call(this,this):t,m(e)?e.call(this,this):e)}:t:e}function Rn(e,t){var n=t?e?e.concat(t):f(t)?t:[t]:e;return n?function(e){for(var t=[],n=0;n<e.length;n++)-1===t.indexOf(e[n])&&t.push(e[n]);return t}(n):n}function kn(e,t,n,r){var o=Object.create(e||null);return t?F(o,t):o}xn.data=function(e,t,n){return n?$n(e,t,n):t&&"function"!=typeof t?e:$n(e,t)},Y.forEach(function(e){xn[e]=Rn}),W.forEach(function(e){xn[e+"s"]=kn}),xn.watch=function(e,t,n,r){if(e===ce&&(e=void 0),t===ce&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var o={};for(var i in F(o,e),t){var a=o[i],s=t[i];a&&!f(a)&&(a=[a]),o[i]=a?a.concat(s):f(s)?s:[s]}return o},xn.props=xn.methods=xn.inject=xn.computed=function(e,t,n,r){if(!e)return t;var o=Object.create(null);return F(o,e),t&&F(o,t),o},xn.provide=function(e,t){return e?function(){var n=Object.create(null);return Ln(n,m(e)?e.call(this):e),t&&Ln(n,m(t)?t.call(this):t,!1),n}:t};var Dn=function(e,t){return void 0===t?e:t};function Pn(e,t,n){if(m(t)&&(t=t.options),function(e){var t=e.props;if(t){var n,r,o={};if(f(t))for(n=t.length;n--;)"string"==typeof(r=t[n])&&(o[$(r)]={type:null});else if(_(t))for(var i in t)r=t[i],o[$(i)]=_(r)?r:{type:r};e.props=o}}(t),function(e){var t=e.inject;if(t){var n=e.inject={};if(f(t))for(var r=0;r<t.length;r++)n[t[r]]={from:t[r]};else if(_(t))for(var o in t){var i=t[o];n[o]=_(i)?F({from:o},i):{from:i}}}}(t),function(e){var t=e.directives;if(t)for(var n in t){var r=t[n];m(r)&&(t[n]={bind:r,update:r})}}(t),!t._base&&(t.extends&&(e=Pn(e,t.extends,n)),t.mixins))for(var r=0,o=t.mixins.length;r<o;r++)e=Pn(e,t.mixins[r],n);var i,a={};for(i in e)s(i);for(i in t)N(e,i)||s(i);function s(r){var o=xn[r]||Dn;a[r]=o(e[r],t[r],n,r)}return a}function Mn(e,t,n,r){if("string"==typeof n){var o=e[t];if(N(o,n))return o[n];var i=$(n);if(N(o,i))return o[i];var a=R(i);return N(o,a)?o[a]:o[n]||o[i]||o[a]}}function Fn(e,t,n,r){var o=t[e],i=!N(n,e),a=n[e],s=Gn(Boolean,o.type);if(s>-1)if(i&&!N(o,"default"))a=!1;else if(""===a||a===D(e)){var c=Gn(String,o.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=function(e,t,n){if(N(t,"default")){var r=t.default;return e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n]?e._props[n]:m(r)&&"Function"!==Un(t.type)?r.call(e):r}}(r,o,e);var l=$e;Re(!0),Pe(a),Re(l)}return a}var jn=/^\s*function (\w+)/;function Un(e){var t=e&&e.toString().match(jn);return t?t[1]:""}function Bn(e,t){return Un(e)===Un(t)}function Gn(e,t){if(!f(t))return Bn(t,e)?0:-1;for(var n=0,r=t.length;n<r;n++)if(Bn(t[n],e))return n;return-1}var Hn={enumerable:!0,configurable:!0,get:U,set:U};function zn(e,t,n){Hn.get=function(){return this[t][n]},Hn.set=function(e){this[t][n]=e},Object.defineProperty(e,n,Hn)}function Xn(e){var t=e.$options;if(t.props&&function(e,t){var n=e.$options.propsData||{},r=e._props=Be({}),o=e.$options._propKeys=[];!e.$parent||Re(!1);var i=function(i){o.push(i);var a=Fn(i,t,n,e);Me(r,i,a,void 0,!0),i in e||zn(e,"_props",i)};for(var a in t)i(a);Re(!0)}(e,t.props),function(e){var t=e.$options,n=t.setup;if(n){var r=e._setupContext=function(e){return{get attrs(){if(!e._attrsProxy){var t=e._attrsProxy={};Z(t,"_v_attr_proxy",!0),Tt(t,e.$attrs,u,e,"$attrs")}return e._attrsProxy},get listeners(){return e._listenersProxy||Tt(e._listenersProxy={},e.$listeners,u,e,"$listeners"),e._listenersProxy},get slots(){return function(e){return e._slotsProxy||wt(e._slotsProxy={},e.$scopedSlots),e._slotsProxy}(e)},emit:P(e.$emit,e),expose:function(t){t&&Object.keys(t).forEach(function(n){return ze(e,t,n)})}}}(e);ge(e),Oe();var o=$t(n,null,[e._props||Be({}),r],e,"setup");if(Se(),ge(),m(o))t.render=o;else if(g(o))if(e._setupState=o,o.__sfc){var i=e._setupProxy={};for(var a in o)"__sfc"!==a&&ze(i,o,a)}else for(var a in o)K(a)||ze(e,o,a)}}(e),t.methods&&function(e,t){for(var n in e.$options.props,t)e[n]="function"!=typeof t[n]?U:P(t[n],e)}(e,t.methods),t.data)!function(e){var t=e.$options.data;_(t=e._data=m(t)?function(e,t){Oe();try{return e.call(t,t)}catch(e){return Lt(e,t,"data()"),{}}finally{Se()}}(t,e):t||{})||(t={});for(var n=Object.keys(t),r=e.$options.props,o=(e.$options.methods,n.length);o--;){var i=n[o];r&&N(r,i)||K(i)||zn(e,"_data",i)}var a=Pe(t);a&&a.vmCount++}(e);else{var n=Pe(e._data={});n&&n.vmCount++}t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),r=fe();for(var o in t){var i=t[o],a=m(i)?i:i.get;r||(n[o]=new Zt(e,a||U,U,Vn)),o in e||Wn(e,o,i)}}(e,t.computed),t.watch&&t.watch!==ce&&function(e,t){for(var n in t){var r=t[n];if(f(r))for(var o=0;o<r.length;o++)Kn(e,n,r[o]);else Kn(e,n,r)}}(e,t.watch)}var Vn={lazy:!0};function Wn(e,t,n){var r=!fe();m(n)?(Hn.get=r?Yn(t):qn(n),Hn.set=U):(Hn.get=n.get?r&&!1!==n.cache?Yn(t):qn(n.get):U,Hn.set=n.set||U),Object.defineProperty(e,t,Hn)}function Yn(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),Ce.target&&t.depend(),t.value}}function qn(e){return function(){return e.call(this,this)}}function Kn(e,t,n,r){return _(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,r)}var Zn=0;function Jn(e){var t=e.options;if(e.super){var n=Jn(e.super);if(n!==e.superOptions){e.superOptions=n;var r=function(e){var t,n=e.options,r=e.sealedOptions;for(var o in n)n[o]!==r[o]&&(t||(t={}),t[o]=n[o]);return t}(e);r&&F(e.extendOptions,r),(t=e.options=Pn(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Qn(e){this._init(e)}function er(e){return e&&(Cn(e.Ctor.options)||e.tag)}function tr(e,t){return f(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==y.call(n))&&e.test(t));var n}function nr(e,t){var n=e.cache,r=e.keys,o=e._vnode,i=e.$vnode;for(var a in n){var s=n[a];if(s){var c=s.name;c&&!t(c)&&rr(n,a,r,o)}}i.componentOptions.children=void 0}function rr(e,t,n,r){var o=e[t];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),e[t]=null,S(n,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=Zn++,t._isVue=!0,t.__v_skip=!0,t._scope=new We(!0),t._scope.parent=void 0,t._scope._vm=!0,e&&e._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),r=t._parentVnode;n.parent=t.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(t,e):t.$options=Pn(Jn(t.constructor),e||{},t),t._renderProxy=t,t._self=t,function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._provided=n?n._provided:Object.create(null),e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(t),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&tn(e,t)}(t),function(e){e._vnode=null,e._staticTrees=null;var t=e.$options,n=e.$vnode=t._parentVnode,r=n&&n.context;e.$slots=gt(t._renderChildren,r),e.$scopedSlots=n?Et(e.$parent,n.data.scopedSlots,e.$slots):u,e._c=function(t,n,r,o){return Nt(e,t,n,r,o,!1)},e.$createElement=function(t,n,r,o){return Nt(e,t,n,r,o,!0)};var o=n&&n.data;Me(e,"$attrs",o&&o.attrs||u,null,!0),Me(e,"$listeners",t._parentListeners||u,null,!0)}(t),cn(t,"beforeCreate",void 0,!1),function(e){var t=En(e.$options.inject,e);t&&(Re(!1),Object.keys(t).forEach(function(n){Me(e,n,t[n])}),Re(!0))}(t),Xn(t),function(e){var t=e.$options.provide;if(t){var n=m(t)?t.call(e):t;if(!g(n))return;for(var r=function(e){var t=e._provided,n=e.$parent&&e.$parent._provided;return n===t?e._provided=Object.create(n):t}(e),o=ve?Reflect.ownKeys(n):Object.keys(n),i=0;i<o.length;i++){var a=o[i];Object.defineProperty(r,a,Object.getOwnPropertyDescriptor(n,a))}}}(t),cn(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(Qn),function(e){Object.defineProperty(e.prototype,"$data",{get:function(){return this._data}}),Object.defineProperty(e.prototype,"$props",{get:function(){return this._props}}),e.prototype.$set=Fe,e.prototype.$delete=je,e.prototype.$watch=function(e,t,n){var r=this;if(_(t))return Kn(r,e,t,n);(n=n||{}).user=!0;var o=new Zt(r,e,t,n);if(n.immediate){var i='callback for immediate watcher "'.concat(o.expression,'"');Oe(),$t(t,r,[o.value],r,i),Se()}return function(){o.teardown()}}}(Qn),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){var r=this;if(f(e))for(var o=0,i=e.length;o<i;o++)r.$on(e[o],n);else(r._events[e]||(r._events[e]=[])).push(n),t.test(e)&&(r._hasHookEvent=!0);return r},e.prototype.$once=function(e,t){var n=this;function r(){n.$off(e,r),t.apply(n,arguments)}return r.fn=t,n.$on(e,r),n},e.prototype.$off=function(e,t){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(f(e)){for(var r=0,o=e.length;r<o;r++)n.$off(e[r],t);return n}var i,a=n._events[e];if(!a)return n;if(!t)return n._events[e]=null,n;for(var s=a.length;s--;)if((i=a[s])===t||i.fn===t){a.splice(s,1);break}return n},e.prototype.$emit=function(e){var t=this,n=t._events[e];if(n){n=n.length>1?M(n):n;for(var r=M(arguments,1),o='event handler for "'.concat(e,'"'),i=0,a=n.length;i<a;i++)$t(n[i],t,r,t,o)}return t}}(Qn),function(e){e.prototype._update=function(e,t){var n=this,r=n.$el,o=n._vnode,i=rn(n);n._vnode=e,n.$el=o?n.__patch__(o,e):n.__patch__(n.$el,e,t,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n);for(var a=n;a&&a.$vnode&&a.$parent&&a.$vnode===a.$parent._vnode;)a.$parent.$el=a.$el,a=a.$parent},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){cn(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||S(t.$children,e),e._scope.stop(),e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),cn(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(Qn),function(e){mt(e.prototype),e.prototype.$nextTick=function(e){return zt(e,this)},e.prototype._render=function(){var e=this,t=e.$options,n=t.render,r=t._parentVnode;r&&e._isMounted&&(e.$scopedSlots=Et(e.$parent,r.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&wt(e._slotsProxy,e.$scopedSlots)),e.$vnode=r;var o,i=me,a=Ot;try{ge(e),Ot=e,o=n.call(e._renderProxy,e.$createElement)}catch(t){Lt(t,e,"render"),o=e._vnode}finally{Ot=a,ge(i)}return f(o)&&1===o.length&&(o=o[0]),o instanceof ye||(o=_e()),o.parent=r,o}}(Qn);var or=[String,RegExp,Array],ir={name:"keep-alive",abstract:!0,props:{include:or,exclude:or,max:[String,Number]},methods:{cacheVNode:function(){var e=this,t=e.cache,n=e.keys,r=e.vnodeToCache,o=e.keyToCache;if(r){var i=r.tag,a=r.componentInstance,s=r.componentOptions;t[o]={name:er(s),tag:i,componentInstance:a},n.push(o),this.max&&n.length>parseInt(this.max)&&rr(t,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)rr(this.cache,e,this.keys)},mounted:function(){var e=this;this.cacheVNode(),this.$watch("include",function(t){nr(e,function(e){return tr(t,e)})}),this.$watch("exclude",function(t){nr(e,function(e){return!tr(t,e)})})},updated:function(){this.cacheVNode()},render:function(){var e=this.$slots.default,t=It(e),n=t&&t.componentOptions;if(n){var r=er(n),o=this.include,i=this.exclude;if(o&&(!r||!tr(o,r))||i&&r&&tr(i,r))return t;var a=this.cache,s=this.keys,c=null==t.key?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):t.key;a[c]?(t.componentInstance=a[c].componentInstance,S(s,c),s.push(c)):(this.vnodeToCache=t,this.keyToCache=c),t.data.keepAlive=!0}return t||e&&e[0]}},ar={KeepAlive:ir};!function(e){var t={get:function(){return q}};Object.defineProperty(e,"config",t),e.util={warn:Nn,extend:F,mergeOptions:Pn,defineReactive:Me},e.set=Fe,e.delete=je,e.nextTick=zt,e.observable=function(e){return Pe(e),e},e.options=Object.create(null),W.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,F(e.options.components,ar),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=M(arguments,1);return n.unshift(this),m(e.install)?e.install.apply(e,n):m(e)&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Pn(this.options,e),this}}(e),function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,o=e._Ctor||(e._Ctor={});if(o[r])return o[r];var i=Cn(e)||Cn(n.options),a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=Pn(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)zn(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)Wn(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,W.forEach(function(e){a[e]=n[e]}),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=F({},a.options),o[r]=a,a}}(e),function(e){W.forEach(function(t){e[t]=function(e,n){return n?("component"===t&&_(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&m(n)&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}})}(e)}(Qn),Object.defineProperty(Qn.prototype,"$isServer",{get:fe}),Object.defineProperty(Qn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Qn,"FunctionalRenderContext",{value:bn}),Qn.version="2.7.16";var sr=w("style,class"),cr=w("input,textarea,option,select,progress"),lr=w("contenteditable,draggable,spellcheck"),ur=w("events,caret,typing,plaintext-only"),fr=w("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"),pr="http://www.w3.org/1999/xlink",dr=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},hr=function(e){return dr(e)?e.slice(6,e.length):""},vr=function(e){return null==e||!1===e};function mr(e,t){return{staticClass:gr(e.staticClass,t.staticClass),class:d(e.class)?[e.class,t.class]:t.class}}function gr(e,t){return e?t?e+" "+t:e:t||""}function yr(e){return Array.isArray(e)?function(e){for(var t,n="",r=0,o=e.length;r<o;r++)d(t=yr(e[r]))&&""!==t&&(n&&(n+=" "),n+=t);return n}(e):g(e)?function(e){var t="";for(var n in e)e[n]&&(t&&(t+=" "),t+=n);return t}(e):"string"==typeof e?e:""}var _r={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Er=w("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"),br=w("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),Ar=function(e){return Er(e)||br(e)},Tr=Object.create(null),Cr=w("text,number,password,search,email,tel,url"),wr=Object.freeze({__proto__:null,createElement:function(e,t){var n=document.createElement(e);return"select"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(e,t){return document.createElementNS(_r[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,"")}}),Or={create:function(e,t){Sr(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Sr(e,!0),Sr(t))},destroy:function(e){Sr(e,!0)}};function Sr(e,t){var n=e.data.ref;if(d(n)){var r=e.context,o=e.componentInstance||e.elm,i=t?null:o,a=t?void 0:o;if(m(n))$t(n,r,[i],r,"template ref function");else{var s=e.data.refInFor,c="string"==typeof n||"number"==typeof n,l=He(n),u=r.$refs;if(c||l)if(s){var p=c?u[n]:n.value;t?f(p)&&S(p,o):f(p)?p.includes(o)||p.push(o):c?(u[n]=[o],Ir(r,n,u[n])):n.value=[o]}else if(c){if(t&&u[n]!==o)return;u[n]=a,Ir(r,n,i)}else if(l){if(t&&n.value!==o)return;n.value=i}}}}function Ir(e,t,n){var r=e._setupState;r&&N(r,t)&&(He(r[t])?r[t].value=n:r[t]=n)}var Nr=new ye("",{},[]),xr=["create","activate","update","remove","destroy"];function Lr(e,t){return e.key===t.key&&e.asyncFactory===t.asyncFactory&&(e.tag===t.tag&&e.isComment===t.isComment&&d(e.data)===d(t.data)&&function(e,t){if("input"!==e.tag)return!0;var n,r=d(n=e.data)&&d(n=n.attrs)&&n.type,o=d(n=t.data)&&d(n=n.attrs)&&n.type;return r===o||Cr(r)&&Cr(o)}(e,t)||h(e.isAsyncPlaceholder)&&p(t.asyncFactory.error))}function $r(e,t,n){var r,o,i={};for(r=t;r<=n;++r)d(o=e[r].key)&&(i[o]=r);return i}var Rr={create:kr,update:kr,destroy:function(e){kr(e,Nr)}};function kr(e,t){(e.data.directives||t.data.directives)&&function(e,t){var n,r,o,i=e===Nr,a=t===Nr,s=Pr(e.data.directives,e.context),c=Pr(t.data.directives,t.context),l=[],u=[];for(n in c)r=s[n],o=c[n],r?(o.oldValue=r.value,o.oldArg=r.arg,Fr(o,"update",t,e),o.def&&o.def.componentUpdated&&u.push(o)):(Fr(o,"bind",t,e),o.def&&o.def.inserted&&l.push(o));if(l.length){var f=function(){for(var n=0;n<l.length;n++)Fr(l[n],"inserted",t,e)};i?Ze(t,"insert",f):f()}if(u.length&&Ze(t,"postpatch",function(){for(var n=0;n<u.length;n++)Fr(u[n],"componentUpdated",t,e)}),!i)for(n in s)c[n]||Fr(s[n],"unbind",e,e,a)}(e,t)}var Dr=Object.create(null);function Pr(e,t){var n,r,o=Object.create(null);if(!e)return o;for(n=0;n<e.length;n++){if((r=e[n]).modifiers||(r.modifiers=Dr),o[Mr(r)]=r,t._setupState&&t._setupState.__sfc){var i=r.def||Mn(t,"_setupState","v-"+r.name);r.def="function"==typeof i?{bind:i,update:i}:i}r.def=r.def||Mn(t.$options,"directives",r.name)}return o}function Mr(e){return e.rawName||"".concat(e.name,".").concat(Object.keys(e.modifiers||{}).join("."))}function Fr(e,t,n,r,o){var i=e.def&&e.def[t];if(i)try{i(n.elm,e,n,r,o)}catch(r){Lt(r,n.context,"directive ".concat(e.name," ").concat(t," hook"))}}var jr=[Or,Rr];function Ur(e,t){var n=t.componentOptions;if(!(d(n)&&!1===n.Ctor.options.inheritAttrs||p(e.data.attrs)&&p(t.data.attrs))){var r,o,i=t.elm,a=e.data.attrs||{},s=t.data.attrs||{};for(r in(d(s.__ob__)||h(s._v_attr_proxy))&&(s=t.data.attrs=F({},s)),s)o=s[r],a[r]!==o&&Br(i,r,o,t.data.pre);for(r in(ne||oe)&&s.value!==a.value&&Br(i,"value",s.value),a)p(s[r])&&(dr(r)?i.removeAttributeNS(pr,hr(r)):lr(r)||i.removeAttribute(r))}}function Br(e,t,n,r){r||e.tagName.indexOf("-")>-1?Gr(e,t,n):fr(t)?vr(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):lr(t)?e.setAttribute(t,function(e,t){return vr(t)||"false"===t?"false":"contenteditable"===e&&ur(t)?t:"true"}(t,n)):dr(t)?vr(n)?e.removeAttributeNS(pr,hr(t)):e.setAttributeNS(pr,t,n):Gr(e,t,n)}function Gr(e,t,n){if(vr(n))e.removeAttribute(t);else{if(ne&&!re&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var r=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",r)};e.addEventListener("input",r),e.__ieph=!0}e.setAttribute(t,n)}}var Hr={create:Ur,update:Ur};function zr(e,t){var n=t.elm,r=t.data,o=e.data;if(!(p(r.staticClass)&&p(r.class)&&(p(o)||p(o.staticClass)&&p(o.class)))){var i=function(e){for(var t=e.data,n=e,r=e;d(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(t=mr(r.data,t));for(;d(n=n.parent);)n&&n.data&&(t=mr(t,n.data));return o=t.staticClass,i=t.class,d(o)||d(i)?gr(o,yr(i)):"";var o,i}(t),a=n._transitionClasses;d(a)&&(i=gr(i,yr(a))),i!==n._prevClass&&(n.setAttribute("class",i),n._prevClass=i)}}var Xr,Vr={create:zr,update:zr},Wr="__r",Yr="__c";function qr(e,t,n){var r=Xr;return function o(){null!==t.apply(null,arguments)&&Jr(e,o,n,r)}}var Kr=Pt&&!(se&&Number(se[1])<=53);function Zr(e,t,n,r){if(Kr){var o=vn,i=t;t=i._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=o||e.timeStamp<=0||e.target.ownerDocument!==document)return i.apply(this,arguments)}}Xr.addEventListener(e,t,le?{capture:n,passive:r}:n)}function Jr(e,t,n,r){(r||Xr).removeEventListener(e,t._wrapper||t,n)}function Qr(e,t){if(!p(e.data.on)||!p(t.data.on)){var n=t.data.on||{},r=e.data.on||{};Xr=t.elm||e.elm,function(e){if(d(e[Wr])){var t=ne?"change":"input";e[t]=[].concat(e[Wr],e[t]||[]),delete e[Wr]}d(e[Yr])&&(e.change=[].concat(e[Yr],e.change||[]),delete e[Yr])}(n),Ke(n,r,Zr,Jr,qr,t.context),Xr=void 0}}var eo,to={create:Qr,update:Qr,destroy:function(e){return Qr(e,Nr)}};function no(e,t){if(!p(e.data.domProps)||!p(t.data.domProps)){var n,r,o=t.elm,i=e.data.domProps||{},a=t.data.domProps||{};for(n in(d(a.__ob__)||h(a._v_attr_proxy))&&(a=t.data.domProps=F({},a)),i)n in a||(o[n]="");for(n in a){if(r=a[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),r===i[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=r;var s=p(r)?"":String(r);ro(o,s)&&(o.value=s)}else if("innerHTML"===n&&br(o.tagName)&&p(o.innerHTML)){(eo=eo||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var c=eo.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;c.firstChild;)o.appendChild(c.firstChild)}else if(r!==i[n])try{o[n]=r}catch(e){}}}}function ro(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(e,t)||function(e,t){var n=e.value,r=e._vModifiers;if(d(r)){if(r.number)return C(n)!==C(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(e,t))}var oo={create:no,update:no},io=x(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t});function ao(e){var t=so(e.style);return e.staticStyle?F(e.staticStyle,t):t}function so(e){return Array.isArray(e)?j(e):"string"==typeof e?io(e):e}var co,lo=/^--/,uo=/\s*!important$/,fo=function(e,t,n){if(lo.test(t))e.style.setProperty(t,n);else if(uo.test(n))e.style.setProperty(D(t),n.replace(uo,""),"important");else{var r=ho(t);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)e.style[r]=n[o];else e.style[r]=n}},po=["Webkit","Moz","ms"],ho=x(function(e){if(co=co||document.createElement("div").style,"filter"!==(e=$(e))&&e in co)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<po.length;n++){var r=po[n]+t;if(r in co)return r}});function vo(e,t){var n=t.data,r=e.data;if(!(p(n.staticStyle)&&p(n.style)&&p(r.staticStyle)&&p(r.style))){var o,i,a=t.elm,s=r.staticStyle,c=r.normalizedStyle||r.style||{},l=s||c,u=so(t.data.style)||{};t.data.normalizedStyle=d(u.__ob__)?F({},u):u;var f=function(e){for(var t,n={},r=e;r.componentInstance;)(r=r.componentInstance._vnode)&&r.data&&(t=ao(r.data))&&F(n,t);(t=ao(e.data))&&F(n,t);for(var o=e;o=o.parent;)o.data&&(t=ao(o.data))&&F(n,t);return n}(t);for(i in l)p(f[i])&&fo(a,i,"");for(i in f)o=f[i],fo(a,i,null==o?"":o)}}var mo={create:vo,update:vo},go=/\s+/;function yo(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(go).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" ".concat(e.getAttribute("class")||""," ");n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function _o(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(go).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" ".concat(e.getAttribute("class")||""," "),r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function Eo(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&F(t,bo(e.name||"v")),F(t,e),t}return"string"==typeof e?bo(e):void 0}}var bo=x(function(e){return{enterClass:"".concat(e,"-enter"),enterToClass:"".concat(e,"-enter-to"),enterActiveClass:"".concat(e,"-enter-active"),leaveClass:"".concat(e,"-leave"),leaveToClass:"".concat(e,"-leave-to"),leaveActiveClass:"".concat(e,"-leave-active")}}),Ao=ee&&!re,To="transition",Co="animation",wo="transition",Oo="transitionend",So="animation",Io="animationend";Ao&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(wo="WebkitTransition",Oo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(So="WebkitAnimation",Io="webkitAnimationEnd"));var No=ee?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function xo(e){No(function(){No(e)})}function Lo(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),yo(e,t))}function $o(e,t){e._transitionClasses&&S(e._transitionClasses,t),_o(e,t)}function Ro(e,t,n){var r=Do(e,t),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===To?Oo:Io,c=0,l=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++c>=a&&l()};setTimeout(function(){c<a&&l()},i+1),e.addEventListener(s,u)}var ko=/\b(transform|all)(,|$)/;function Do(e,t){var n,r=window.getComputedStyle(e),o=(r[wo+"Delay"]||"").split(", "),i=(r[wo+"Duration"]||"").split(", "),a=Po(o,i),s=(r[So+"Delay"]||"").split(", "),c=(r[So+"Duration"]||"").split(", "),l=Po(s,c),u=0,f=0;return t===To?a>0&&(n=To,u=a,f=i.length):t===Co?l>0&&(n=Co,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?To:Co:null)?n===To?i.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===To&&ko.test(r[wo+"Property"])}}function Po(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map(function(t,n){return Mo(t)+Mo(e[n])}))}function Mo(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function Fo(e,t){var n=e.elm;d(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=Eo(e.data.transition);if(!p(r)&&!d(n._enterCb)&&1===n.nodeType){for(var o=r.css,i=r.type,a=r.enterClass,s=r.enterToClass,c=r.enterActiveClass,l=r.appearClass,u=r.appearToClass,f=r.appearActiveClass,h=r.beforeEnter,v=r.enter,y=r.afterEnter,_=r.enterCancelled,E=r.beforeAppear,b=r.appear,A=r.afterAppear,T=r.appearCancelled,w=r.duration,O=nn,S=nn.$vnode;S&&S.parent;)O=S.context,S=S.parent;var I=!O._isMounted||!e.isRootInsert;if(!I||b||""===b){var N=I&&l?l:a,x=I&&f?f:c,L=I&&u?u:s,$=I&&E||h,R=I&&m(b)?b:v,k=I&&A||y,D=I&&T||_,P=C(g(w)?w.enter:w),M=!1!==o&&!re,F=Bo(R),j=n._enterCb=X(function(){M&&($o(n,L),$o(n,x)),j.cancelled?(M&&$o(n,N),D&&D(n)):k&&k(n),n._enterCb=null});e.data.show||Ze(e,"insert",function(){var t=n.parentNode,r=t&&t._pending&&t._pending[e.key];r&&r.tag===e.tag&&r.elm._leaveCb&&r.elm._leaveCb(),R&&R(n,j)}),$&&$(n),M&&(Lo(n,N),Lo(n,x),xo(function(){$o(n,N),j.cancelled||(Lo(n,L),F||(Uo(P)?setTimeout(j,P):Ro(n,i,j)))})),e.data.show&&(t&&t(),R&&R(n,j)),M||F||j()}}}function jo(e,t){var n=e.elm;d(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=Eo(e.data.transition);if(p(r)||1!==n.nodeType)return t();if(!d(n._leaveCb)){var o=r.css,i=r.type,a=r.leaveClass,s=r.leaveToClass,c=r.leaveActiveClass,l=r.beforeLeave,u=r.leave,f=r.afterLeave,h=r.leaveCancelled,v=r.delayLeave,m=r.duration,y=!1!==o&&!re,_=Bo(u),E=C(g(m)?m.leave:m),b=n._leaveCb=X(function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[e.key]=null),y&&($o(n,s),$o(n,c)),b.cancelled?(y&&$o(n,a),h&&h(n)):(t(),f&&f(n)),n._leaveCb=null});v?v(A):A()}function A(){b.cancelled||(!e.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[e.key]=e),l&&l(n),y&&(Lo(n,a),Lo(n,c),xo(function(){$o(n,a),b.cancelled||(Lo(n,s),_||(Uo(E)?setTimeout(b,E):Ro(n,i,b)))})),u&&u(n,b),y||_||b())}}function Uo(e){return"number"==typeof e&&!isNaN(e)}function Bo(e){if(p(e))return!1;var t=e.fns;return d(t)?Bo(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function Go(e,t){!0!==t.data.show&&Fo(t)}var Ho=function(e){var t,n,r={},o=e.modules,i=e.nodeOps;for(t=0;t<xr.length;++t)for(r[xr[t]]=[],n=0;n<o.length;++n)d(o[n][xr[t]])&&r[xr[t]].push(o[n][xr[t]]);function a(e){var t=i.parentNode(e);d(t)&&i.removeChild(t,e)}function s(e,t,n,o,a,s,f){if(d(e.elm)&&d(s)&&(e=s[f]=be(e)),e.isRootInsert=!a,!function(e,t,n,o){var i=e.data;if(d(i)){var a=d(e.componentInstance)&&i.keepAlive;if(d(i=i.hook)&&d(i=i.init)&&i(e,!1),d(e.componentInstance))return c(e,t),l(n,e.elm,o),h(a)&&function(e,t,n,o){for(var i,a=e;a.componentInstance;)if(d(i=(a=a.componentInstance._vnode).data)&&d(i=i.transition)){for(i=0;i<r.activate.length;++i)r.activate[i](Nr,a);t.push(a);break}l(n,e.elm,o)}(e,t,n,o),!0}}(e,t,n,o)){var p=e.data,v=e.children,m=e.tag;d(m)?(e.elm=e.ns?i.createElementNS(e.ns,m):i.createElement(m,e),y(e),u(e,v,t),d(p)&&g(e,t),l(n,e.elm,o)):h(e.isComment)?(e.elm=i.createComment(e.text),l(n,e.elm,o)):(e.elm=i.createTextNode(e.text),l(n,e.elm,o))}}function c(e,t){d(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,m(e)?(g(e,t),y(e)):(Sr(e),t.push(e))}function l(e,t,n){d(e)&&(d(n)?i.parentNode(n)===e&&i.insertBefore(e,t,n):i.appendChild(e,t))}function u(e,t,n){if(f(t))for(var r=0;r<t.length;++r)s(t[r],n,e.elm,null,!0,t,r);else v(e.text)&&i.appendChild(e.elm,i.createTextNode(String(e.text)))}function m(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return d(e.tag)}function g(e,n){for(var o=0;o<r.create.length;++o)r.create[o](Nr,e);d(t=e.data.hook)&&(d(t.create)&&t.create(Nr,e),d(t.insert)&&n.push(e))}function y(e){var t;if(d(t=e.fnScopeId))i.setStyleScope(e.elm,t);else for(var n=e;n;)d(t=n.context)&&d(t=t.$options._scopeId)&&i.setStyleScope(e.elm,t),n=n.parent;d(t=nn)&&t!==e.context&&t!==e.fnContext&&d(t=t.$options._scopeId)&&i.setStyleScope(e.elm,t)}function _(e,t,n,r,o,i){for(;r<=o;++r)s(n[r],i,e,t,!1,n,r)}function E(e){var t,n,o=e.data;if(d(o))for(d(t=o.hook)&&d(t=t.destroy)&&t(e),t=0;t<r.destroy.length;++t)r.destroy[t](e);if(d(t=e.children))for(n=0;n<e.children.length;++n)E(e.children[n])}function b(e,t,n){for(;t<=n;++t){var r=e[t];d(r)&&(d(r.tag)?(A(r),E(r)):a(r.elm))}}function A(e,t){if(d(t)||d(e.data)){var n,o=r.remove.length+1;for(d(t)?t.listeners+=o:t=function(e,t){function n(){0===--n.listeners&&a(e)}return n.listeners=t,n}(e.elm,o),d(n=e.componentInstance)&&d(n=n._vnode)&&d(n.data)&&A(n,t),n=0;n<r.remove.length;++n)r.remove[n](e,t);d(n=e.data.hook)&&d(n=n.remove)?n(e,t):t()}else a(e.elm)}function T(e,t,n,r){for(var o=n;o<r;o++){var i=t[o];if(d(i)&&Lr(e,i))return o}}function C(e,t,n,o,a,c){if(e!==t){d(t.elm)&&d(o)&&(t=o[a]=be(t));var l=t.elm=e.elm;if(h(e.isAsyncPlaceholder))d(t.asyncFactory.resolved)?I(e.elm,t,n):t.isAsyncPlaceholder=!0;else if(h(t.isStatic)&&h(e.isStatic)&&t.key===e.key&&(h(t.isCloned)||h(t.isOnce)))t.componentInstance=e.componentInstance;else{var u,f=t.data;d(f)&&d(u=f.hook)&&d(u=u.prepatch)&&u(e,t);var v=e.children,g=t.children;if(d(f)&&m(t)){for(u=0;u<r.update.length;++u)r.update[u](e,t);d(u=f.hook)&&d(u=u.update)&&u(e,t)}p(t.text)?d(v)&&d(g)?v!==g&&function(e,t,n,r,o){for(var a,c,l,u=0,f=0,h=t.length-1,v=t[0],m=t[h],g=n.length-1,y=n[0],E=n[g],A=!o;u<=h&&f<=g;)p(v)?v=t[++u]:p(m)?m=t[--h]:Lr(v,y)?(C(v,y,r,n,f),v=t[++u],y=n[++f]):Lr(m,E)?(C(m,E,r,n,g),m=t[--h],E=n[--g]):Lr(v,E)?(C(v,E,r,n,g),A&&i.insertBefore(e,v.elm,i.nextSibling(m.elm)),v=t[++u],E=n[--g]):Lr(m,y)?(C(m,y,r,n,f),A&&i.insertBefore(e,m.elm,v.elm),m=t[--h],y=n[++f]):(p(a)&&(a=$r(t,u,h)),p(c=d(y.key)?a[y.key]:T(y,t,u,h))?s(y,r,e,v.elm,!1,n,f):Lr(l=t[c],y)?(C(l,y,r,n,f),t[c]=void 0,A&&i.insertBefore(e,l.elm,v.elm)):s(y,r,e,v.elm,!1,n,f),y=n[++f]);u>h?_(e,p(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&b(t,u,h)}(l,v,g,n,c):d(g)?(d(e.text)&&i.setTextContent(l,""),_(l,null,g,0,g.length-1,n)):d(v)?b(v,0,v.length-1):d(e.text)&&i.setTextContent(l,""):e.text!==t.text&&i.setTextContent(l,t.text),d(f)&&d(u=f.hook)&&d(u=u.postpatch)&&u(e,t)}}}function O(e,t,n){if(h(n)&&d(e.parent))e.parent.data.pendingInsert=t;else for(var r=0;r<t.length;++r)t[r].data.hook.insert(t[r])}var S=w("attrs,class,staticClass,staticStyle,key");function I(e,t,n,r){var o,i=t.tag,a=t.data,s=t.children;if(r=r||a&&a.pre,t.elm=e,h(t.isComment)&&d(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(d(a)&&(d(o=a.hook)&&d(o=o.init)&&o(t,!0),d(o=t.componentInstance)))return c(t,n),!0;if(d(i)){if(d(s))if(e.hasChildNodes())if(d(o=a)&&d(o=o.domProps)&&d(o=o.innerHTML)){if(o!==e.innerHTML)return!1}else{for(var l=!0,f=e.firstChild,p=0;p<s.length;p++){if(!f||!I(f,s[p],n,r)){l=!1;break}f=f.nextSibling}if(!l||f)return!1}else u(t,s,n);if(d(a)){var v=!1;for(var m in a)if(!S(m)){v=!0,g(t,n);break}!v&&a.class&&Wt(a.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,n,o){if(!p(t)){var a,c=!1,l=[];if(p(e))c=!0,s(t,l);else{var u=d(e.nodeType);if(!u&&Lr(e,t))C(e,t,l,null,null,o);else{if(u){if(1===e.nodeType&&e.hasAttribute(V)&&(e.removeAttribute(V),n=!0),h(n)&&I(e,t,l))return O(t,l,!0),e;a=e,e=new ye(i.tagName(a).toLowerCase(),{},[],void 0,a)}var f=e.elm,v=i.parentNode(f);if(s(t,l,f._leaveCb?null:v,i.nextSibling(f)),d(t.parent))for(var g=t.parent,y=m(t);g;){for(var _=0;_<r.destroy.length;++_)r.destroy[_](g);if(g.elm=t.elm,y){for(var A=0;A<r.create.length;++A)r.create[A](Nr,g);var T=g.data.hook.insert;if(T.merged)for(var w=T.fns.slice(1),S=0;S<w.length;S++)w[S]()}else Sr(g);g=g.parent}d(v)?b([e],0,0):d(e.tag)&&E(e)}}return O(t,l,c),t.elm}d(e)&&E(e)}}({nodeOps:wr,modules:[Hr,Vr,to,oo,mo,ee?{create:Go,activate:Go,remove:function(e,t){!0!==e.data.show?jo(e,t):t()}}:{}].concat(jr)});re&&document.addEventListener("selectionchange",function(){var e=document.activeElement;e&&e.vmodel&&Zo(e,"input")});var zo={inserted:function(e,t,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Ze(n,"postpatch",function(){zo.componentUpdated(e,t,n)}):Xo(e,t,n.context),e._vOptions=[].map.call(e.options,Yo)):("textarea"===n.tag||Cr(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",qo),e.addEventListener("compositionend",Ko),e.addEventListener("change",Ko),re&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){Xo(e,t,n.context);var r=e._vOptions,o=e._vOptions=[].map.call(e.options,Yo);o.some(function(e,t){return!H(e,r[t])})&&(e.multiple?t.value.some(function(e){return Wo(e,o)}):t.value!==t.oldValue&&Wo(t.value,o))&&Zo(e,"change")}}};function Xo(e,t,n){Vo(e,t),(ne||oe)&&setTimeout(function(){Vo(e,t)},0)}function Vo(e,t,n){var r=t.value,o=e.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,c=e.options.length;s<c;s++)if(a=e.options[s],o)i=z(r,Yo(a))>-1,a.selected!==i&&(a.selected=i);else if(H(Yo(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));o||(e.selectedIndex=-1)}}function Wo(e,t){return t.every(function(t){return!H(t,e)})}function Yo(e){return"_value"in e?e._value:e.value}function qo(e){e.target.composing=!0}function Ko(e){e.target.composing&&(e.target.composing=!1,Zo(e.target,"input"))}function Zo(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Jo(e){return!e.componentInstance||e.data&&e.data.transition?e:Jo(e.componentInstance._vnode)}var Qo={model:zo,show:{bind:function(e,t,n){var r=t.value,o=(n=Jo(n)).data&&n.data.transition,i=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&o?(n.data.show=!0,Fo(n,function(){e.style.display=i})):e.style.display=r?i:"none"},update:function(e,t,n){var r=t.value;!r!=!t.oldValue&&((n=Jo(n)).data&&n.data.transition?(n.data.show=!0,r?Fo(n,function(){e.style.display=e.__vOriginalDisplay}):jo(n,function(){e.style.display="none"})):e.style.display=r?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,r,o){o||(e.style.display=e.__vOriginalDisplay)}}},ei={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 ti(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?ti(It(t.children)):e}function ni(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var o=n._parentListeners;for(var r in o)t[$(r)]=o[r];return t}function ri(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var oi=function(e){return e.tag||_t(e)},ii=function(e){return"show"===e.name},ai={name:"transition",props:ei,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(oi)).length){var r=this.mode,o=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return o;var i=ti(o);if(!i)return o;if(this._leaving)return ri(e,o);var a="__transition-".concat(this._uid,"-");i.key=null==i.key?i.isComment?a+"comment":a+i.tag:v(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var s=(i.data||(i.data={})).transition=ni(this),c=this._vnode,l=ti(c);if(i.data.directives&&i.data.directives.some(ii)&&(i.data.show=!0),l&&l.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(i,l)&&!_t(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var u=l.data.transition=F({},s);if("out-in"===r)return this._leaving=!0,Ze(u,"afterLeave",function(){t._leaving=!1,t.$forceUpdate()}),ri(e,o);if("in-out"===r){if(_t(i))return c;var f,p=function(){f()};Ze(s,"afterEnter",p),Ze(s,"enterCancelled",p),Ze(u,"delayLeave",function(e){f=e})}}return o}}},si=F({tag:String,moveClass:String},ei);delete si.mode;var ci={props:si,beforeMount:function(){var e=this,t=this._update;this._update=function(n,r){var o=rn(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,o(),t.call(e,n,r)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=ni(this),s=0;s<o.length;s++)(u=o[s]).tag&&null!=u.key&&0!==String(u.key).indexOf("__vlist")&&(i.push(u),n[u.key]=u,(u.data||(u.data={})).transition=a);if(r){var c=[],l=[];for(s=0;s<r.length;s++){var u;(u=r[s]).data.transition=a,u.data.pos=u.elm.getBoundingClientRect(),n[u.key]?c.push(u):l.push(u)}this.kept=e(t,null,c),this.removed=l}return e(t,null,i)},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(li),e.forEach(ui),e.forEach(fi),this._reflow=document.body.offsetHeight,e.forEach(function(e){if(e.data.moved){var n=e.elm,r=n.style;Lo(n,t),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Oo,n._moveCb=function e(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Oo,e),n._moveCb=null,$o(n,t))})}}))},methods:{hasMove:function(e,t){if(!Ao)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach(function(e){_o(n,e)}),yo(n,t),n.style.display="none",this.$el.appendChild(n);var r=Do(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function li(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function ui(e){e.data.newPos=e.elm.getBoundingClientRect()}function fi(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,o=t.top-n.top;if(r||o){e.data.moved=!0;var i=e.elm.style;i.transform=i.WebkitTransform="translate(".concat(r,"px,").concat(o,"px)"),i.transitionDuration="0s"}}var pi={Transition:ai,TransitionGroup:ci};Qn.config.mustUseProp=function(e,t,n){return"value"===n&&cr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Qn.config.isReservedTag=Ar,Qn.config.isReservedAttr=sr,Qn.config.getTagNamespace=function(e){return br(e)?"svg":"math"===e?"math":void 0},Qn.config.isUnknownElement=function(e){if(!ee)return!0;if(Ar(e))return!1;if(e=e.toLowerCase(),null!=Tr[e])return Tr[e];var t=document.createElement(e);return e.indexOf("-")>-1?Tr[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Tr[e]=/HTMLUnknownElement/.test(t.toString())},F(Qn.options.directives,Qo),F(Qn.options.components,pi),Qn.prototype.__patch__=ee?Ho:U,Qn.prototype.$mount=function(e,t){return function(e,t,n){var r;e.$el=t,e.$options.render||(e.$options.render=_e),cn(e,"beforeMount"),r=function(){e._update(e._render(),n)},new Zt(e,r,U,{before:function(){e._isMounted&&!e._isDestroyed&&cn(e,"beforeUpdate")}},!0),n=!1;var o=e._preWatchers;if(o)for(var i=0;i<o.length;i++)o[i].run();return null==e.$vnode&&(e._isMounted=!0,cn(e,"mounted")),e}(this,e=e&&ee?function(e){return"string"==typeof e?document.querySelector(e)||document.createElement("div"):e}(e):void 0,t)},ee&&setTimeout(function(){q.devtools&&pe&&pe.emit("init",Qn)},0);var di=n(85072),hi=n.n(di),vi=n(97825),mi=n.n(vi),gi=n(77659),yi=n.n(gi),_i=n(55056),Ei=n.n(_i),bi=n(10540),Ai=n.n(bi),Ti=n(41113),Ci=n.n(Ti),wi=n(98216),Oi={};function Si(e,t,n,r,o,i,a,s){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=n,l._compiled=!0),i&&(l._scopeId="data-v-"+i),o&&(c=o),c)if(l.functional){l._injectStyles=c;var u=l.render;l.render=function(e,t){return c.call(t),u(e,t)}}else{var f=l.beforeCreate;l.beforeCreate=f?[].concat(f,c):[c]}return{exports:e,options:l}}Oi.styleTagTransform=Ci(),Oi.setAttributes=Ei(),Oi.insert=yi().bind(null,"head"),Oi.domAPI=mi(),Oi.insertStyleElement=Ai(),hi()(wi.A,Oi),wi.A&&wi.A.locals&&wi.A.locals;var Ii=function(e,t){var n,r=e;if(t&&(r.render=t,r.staticRenderFns=[],r._compiled=!0),n)if(r.functional){r._injectStyles=n;var o=r.render;r.render=function(e,t){return n.call(t),o(e,t)}}else{var i=r.beforeCreate;r.beforeCreate=i?[].concat(i,n):[n]}return{exports:e,options:r}}({name:"OauthDone",components:{NcGuestContent:Si({name:"NcGuestContent",mounted(){document.getElementById("content").classList.add("nc-guest-content")},destroyed(){document.getElementById("content").classList.remove("nc-guest-content")}},function(){return(0,this._self._c)("div",{attrs:{id:"guest-content-vue"}},[this._t("default")],2)},[],0,null,"528e9576").exports}},function(){var e=this,t=e._self._c;return t("NcGuestContent",[t("h2",[e._v(e._s(e.t("mail","Account connected")))]),e._v(" "),t("span",[e._v(e._s(e.t("mail","You can close this window")))])])});const Ni=Ii.exports,{entries:xi,setPrototypeOf:Li,isFrozen:$i,getPrototypeOf:Ri,getOwnPropertyDescriptor:ki}=Object;let{freeze:Di,seal:Pi,create:Mi}=Object,{apply:Fi,construct:ji}="undefined"!=typeof Reflect&&Reflect;Di||(Di=function(e){return e}),Pi||(Pi=function(e){return e}),Fi||(Fi=function(e,t){for(var n=arguments.length,r=new Array(n>2?n-2:0),o=2;o<n;o++)r[o-2]=arguments[o];return e.apply(t,r)}),ji||(ji=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return new e(...n)});const Ui=ta(Array.prototype.forEach),Bi=ta(Array.prototype.lastIndexOf),Gi=ta(Array.prototype.pop),Hi=ta(Array.prototype.push),zi=ta(Array.prototype.splice),Xi=ta(String.prototype.toLowerCase),Vi=ta(String.prototype.toString),Wi=ta(String.prototype.match),Yi=ta(String.prototype.replace),qi=ta(String.prototype.indexOf),Ki=ta(String.prototype.trim),Zi=ta(Object.prototype.hasOwnProperty),Ji=ta(RegExp.prototype.test),Qi=(ea=TypeError,function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return ji(ea,t)});var ea;function ta(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return Fi(e,t,r)}}function na(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Xi;Li&&Li(e,null);let r=t.length;for(;r--;){let o=t[r];if("string"==typeof o){const e=n(o);e!==o&&($i(t)||(t[r]=e),o=e)}e[o]=!0}return e}function ra(e){for(let t=0;t<e.length;t++)Zi(e,t)||(e[t]=null);return e}function oa(e){const t=Mi(null);for(const[n,r]of xi(e))Zi(e,n)&&(Array.isArray(r)?t[n]=ra(r):r&&"object"==typeof r&&r.constructor===Object?t[n]=oa(r):t[n]=r);return t}function ia(e,t){for(;null!==e;){const n=ki(e,t);if(n){if(n.get)return ta(n.get);if("function"==typeof n.value)return ta(n.value)}e=Ri(e)}return function(){return null}}const aa=Di(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),sa=Di(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),ca=Di(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),la=Di(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),ua=Di(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),fa=Di(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),pa=Di(["#text"]),da=Di(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns","slot"]),ha=Di(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),va=Di(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),ma=Di(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),ga=Pi(/\{\{[\w\W]*|[\w\W]*\}\}/gm),ya=Pi(/<%[\w\W]*|[\w\W]*%>/gm),_a=Pi(/\$\{[\w\W]*/gm),Ea=Pi(/^data-[\-\w.\u00B7-\uFFFF]+$/),ba=Pi(/^aria-[\-\w]+$/),Aa=Pi(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Ta=Pi(/^(?:\w+script|data):/i),Ca=Pi(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),wa=Pi(/^html$/i),Oa=Pi(/^[a-z][.\w]*(-[.\w]+)+$/i);var Sa=Object.freeze({__proto__:null,ARIA_ATTR:ba,ATTR_WHITESPACE:Ca,CUSTOM_ELEMENT:Oa,DATA_ATTR:Ea,DOCTYPE_NAME:wa,ERB_EXPR:ya,IS_ALLOWED_URI:Aa,IS_SCRIPT_OR_DATA:Ta,MUSTACHE_EXPR:ga,TMPLIT_EXPR:_a});const Ia=function(){return"undefined"==typeof window?null:window};var Na=function e(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Ia();const n=t=>e(t);if(n.version="3.3.1",n.removed=[],!t||!t.document||9!==t.document.nodeType||!t.Element)return n.isSupported=!1,n;let{document:r}=t;const o=r,i=o.currentScript,{DocumentFragment:a,HTMLTemplateElement:s,Node:c,Element:l,NodeFilter:u,NamedNodeMap:f=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:p,DOMParser:d,trustedTypes:h}=t,v=l.prototype,m=ia(v,"cloneNode"),g=ia(v,"remove"),y=ia(v,"nextSibling"),_=ia(v,"childNodes"),E=ia(v,"parentNode");if("function"==typeof s){const e=r.createElement("template");e.content&&e.content.ownerDocument&&(r=e.content.ownerDocument)}let b,A="";const{implementation:T,createNodeIterator:C,createDocumentFragment:w,getElementsByTagName:O}=r,{importNode:S}=o;let I={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]};n.isSupported="function"==typeof xi&&"function"==typeof E&&T&&void 0!==T.createHTMLDocument;const{MUSTACHE_EXPR:N,ERB_EXPR:x,TMPLIT_EXPR:L,DATA_ATTR:$,ARIA_ATTR:R,IS_SCRIPT_OR_DATA:k,ATTR_WHITESPACE:D,CUSTOM_ELEMENT:P}=Sa;let{IS_ALLOWED_URI:M}=Sa,F=null;const j=na({},[...aa,...sa,...ca,...ua,...pa]);let U=null;const B=na({},[...da,...ha,...va,...ma]);let G=Object.seal(Mi(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),H=null,z=null;const X=Object.seal(Mi(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let V=!0,W=!0,Y=!1,q=!0,K=!1,Z=!0,J=!1,Q=!1,ee=!1,te=!1,ne=!1,re=!1,oe=!0,ie=!1,ae=!0,se=!1,ce={},le=null;const ue=na({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let fe=null;const pe=na({},["audio","video","img","source","image","track"]);let de=null;const he=na({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),ve="http://www.w3.org/1998/Math/MathML",me="http://www.w3.org/2000/svg",ge="http://www.w3.org/1999/xhtml";let ye=ge,_e=!1,Ee=null;const be=na({},[ve,me,ge],Vi);let Ae=na({},["mi","mo","mn","ms","mtext"]),Te=na({},["annotation-xml"]);const Ce=na({},["title","style","font","a","script"]);let we=null;const Oe=["application/xhtml+xml","text/html"];let Se=null,Ie=null;const Ne=r.createElement("form"),xe=function(e){return e instanceof RegExp||e instanceof Function},Le=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!Ie||Ie!==e){if(e&&"object"==typeof e||(e={}),e=oa(e),we=-1===Oe.indexOf(e.PARSER_MEDIA_TYPE)?"text/html":e.PARSER_MEDIA_TYPE,Se="application/xhtml+xml"===we?Vi:Xi,F=Zi(e,"ALLOWED_TAGS")?na({},e.ALLOWED_TAGS,Se):j,U=Zi(e,"ALLOWED_ATTR")?na({},e.ALLOWED_ATTR,Se):B,Ee=Zi(e,"ALLOWED_NAMESPACES")?na({},e.ALLOWED_NAMESPACES,Vi):be,de=Zi(e,"ADD_URI_SAFE_ATTR")?na(oa(he),e.ADD_URI_SAFE_ATTR,Se):he,fe=Zi(e,"ADD_DATA_URI_TAGS")?na(oa(pe),e.ADD_DATA_URI_TAGS,Se):pe,le=Zi(e,"FORBID_CONTENTS")?na({},e.FORBID_CONTENTS,Se):ue,H=Zi(e,"FORBID_TAGS")?na({},e.FORBID_TAGS,Se):oa({}),z=Zi(e,"FORBID_ATTR")?na({},e.FORBID_ATTR,Se):oa({}),ce=!!Zi(e,"USE_PROFILES")&&e.USE_PROFILES,V=!1!==e.ALLOW_ARIA_ATTR,W=!1!==e.ALLOW_DATA_ATTR,Y=e.ALLOW_UNKNOWN_PROTOCOLS||!1,q=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,K=e.SAFE_FOR_TEMPLATES||!1,Z=!1!==e.SAFE_FOR_XML,J=e.WHOLE_DOCUMENT||!1,te=e.RETURN_DOM||!1,ne=e.RETURN_DOM_FRAGMENT||!1,re=e.RETURN_TRUSTED_TYPE||!1,ee=e.FORCE_BODY||!1,oe=!1!==e.SANITIZE_DOM,ie=e.SANITIZE_NAMED_PROPS||!1,ae=!1!==e.KEEP_CONTENT,se=e.IN_PLACE||!1,M=e.ALLOWED_URI_REGEXP||Aa,ye=e.NAMESPACE||ge,Ae=e.MATHML_TEXT_INTEGRATION_POINTS||Ae,Te=e.HTML_INTEGRATION_POINTS||Te,G=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&xe(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(G.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&xe(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(G.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(G.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),K&&(W=!1),ne&&(te=!0),ce&&(F=na({},pa),U=[],!0===ce.html&&(na(F,aa),na(U,da)),!0===ce.svg&&(na(F,sa),na(U,ha),na(U,ma)),!0===ce.svgFilters&&(na(F,ca),na(U,ha),na(U,ma)),!0===ce.mathMl&&(na(F,ua),na(U,va),na(U,ma))),e.ADD_TAGS&&("function"==typeof e.ADD_TAGS?X.tagCheck=e.ADD_TAGS:(F===j&&(F=oa(F)),na(F,e.ADD_TAGS,Se))),e.ADD_ATTR&&("function"==typeof e.ADD_ATTR?X.attributeCheck=e.ADD_ATTR:(U===B&&(U=oa(U)),na(U,e.ADD_ATTR,Se))),e.ADD_URI_SAFE_ATTR&&na(de,e.ADD_URI_SAFE_ATTR,Se),e.FORBID_CONTENTS&&(le===ue&&(le=oa(le)),na(le,e.FORBID_CONTENTS,Se)),e.ADD_FORBID_CONTENTS&&(le===ue&&(le=oa(le)),na(le,e.ADD_FORBID_CONTENTS,Se)),ae&&(F["#text"]=!0),J&&na(F,["html","head","body"]),F.table&&(na(F,["tbody"]),delete H.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw Qi('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw Qi('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');b=e.TRUSTED_TYPES_POLICY,A=b.createHTML("")}else void 0===b&&(b=function(e,t){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let n=null;const r="data-tt-policy-suffix";t&&t.hasAttribute(r)&&(n=t.getAttribute(r));const o="dompurify"+(n?"#"+n:"");try{return e.createPolicy(o,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+o+" could not be created."),null}}(h,i)),null!==b&&"string"==typeof A&&(A=b.createHTML(""));Di&&Di(e),Ie=e}},$e=na({},[...sa,...ca,...la]),Re=na({},[...ua,...fa]),ke=function(e){Hi(n.removed,{element:e});try{E(e).removeChild(e)}catch(t){g(e)}},De=function(e,t){try{Hi(n.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){Hi(n.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e)if(te||ne)try{ke(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},Pe=function(e){let t=null,n=null;if(ee)e="<remove></remove>"+e;else{const t=Wi(e,/^[\r\n\t ]+/);n=t&&t[0]}"application/xhtml+xml"===we&&ye===ge&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");const o=b?b.createHTML(e):e;if(ye===ge)try{t=(new d).parseFromString(o,we)}catch(e){}if(!t||!t.documentElement){t=T.createDocument(ye,"template",null);try{t.documentElement.innerHTML=_e?A:o}catch(e){}}const i=t.body||t.documentElement;return e&&n&&i.insertBefore(r.createTextNode(n),i.childNodes[0]||null),ye===ge?O.call(t,J?"html":"body")[0]:J?t.documentElement:i},Me=function(e){return C.call(e.ownerDocument||e,e,u.SHOW_ELEMENT|u.SHOW_COMMENT|u.SHOW_TEXT|u.SHOW_PROCESSING_INSTRUCTION|u.SHOW_CDATA_SECTION,null)},Fe=function(e){return e instanceof p&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||!(e.attributes instanceof f)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes)},je=function(e){return"function"==typeof c&&e instanceof c};function Ue(e,t,r){Ui(e,e=>{e.call(n,t,r,Ie)})}const Be=function(e){let t=null;if(Ue(I.beforeSanitizeElements,e,null),Fe(e))return ke(e),!0;const r=Se(e.nodeName);if(Ue(I.uponSanitizeElement,e,{tagName:r,allowedTags:F}),Z&&e.hasChildNodes()&&!je(e.firstElementChild)&&Ji(/<[/\w!]/g,e.innerHTML)&&Ji(/<[/\w!]/g,e.textContent))return ke(e),!0;if(7===e.nodeType)return ke(e),!0;if(Z&&8===e.nodeType&&Ji(/<[/\w]/g,e.data))return ke(e),!0;if(!(X.tagCheck instanceof Function&&X.tagCheck(r))&&(!F[r]||H[r])){if(!H[r]&&He(r)){if(G.tagNameCheck instanceof RegExp&&Ji(G.tagNameCheck,r))return!1;if(G.tagNameCheck instanceof Function&&G.tagNameCheck(r))return!1}if(ae&&!le[r]){const t=E(e)||e.parentNode,n=_(e)||e.childNodes;if(n&&t)for(let r=n.length-1;r>=0;--r){const o=m(n[r],!0);o.__removalCount=(e.__removalCount||0)+1,t.insertBefore(o,y(e))}}return ke(e),!0}return e instanceof l&&!function(e){let t=E(e);t&&t.tagName||(t={namespaceURI:ye,tagName:"template"});const n=Xi(e.tagName),r=Xi(t.tagName);return!!Ee[e.namespaceURI]&&(e.namespaceURI===me?t.namespaceURI===ge?"svg"===n:t.namespaceURI===ve?"svg"===n&&("annotation-xml"===r||Ae[r]):Boolean($e[n]):e.namespaceURI===ve?t.namespaceURI===ge?"math"===n:t.namespaceURI===me?"math"===n&&Te[r]:Boolean(Re[n]):e.namespaceURI===ge?!(t.namespaceURI===me&&!Te[r])&&!(t.namespaceURI===ve&&!Ae[r])&&!Re[n]&&(Ce[n]||!$e[n]):!("application/xhtml+xml"!==we||!Ee[e.namespaceURI]))}(e)?(ke(e),!0):"noscript"!==r&&"noembed"!==r&&"noframes"!==r||!Ji(/<\/no(script|embed|frames)/i,e.innerHTML)?(K&&3===e.nodeType&&(t=e.textContent,Ui([N,x,L],e=>{t=Yi(t,e," ")}),e.textContent!==t&&(Hi(n.removed,{element:e.cloneNode()}),e.textContent=t)),Ue(I.afterSanitizeElements,e,null),!1):(ke(e),!0)},Ge=function(e,t,n){if(oe&&("id"===t||"name"===t)&&(n in r||n in Ne))return!1;if(W&&!z[t]&&Ji($,t));else if(V&&Ji(R,t));else if(X.attributeCheck instanceof Function&&X.attributeCheck(t,e));else if(!U[t]||z[t]){if(!(He(e)&&(G.tagNameCheck instanceof RegExp&&Ji(G.tagNameCheck,e)||G.tagNameCheck instanceof Function&&G.tagNameCheck(e))&&(G.attributeNameCheck instanceof RegExp&&Ji(G.attributeNameCheck,t)||G.attributeNameCheck instanceof Function&&G.attributeNameCheck(t,e))||"is"===t&&G.allowCustomizedBuiltInElements&&(G.tagNameCheck instanceof RegExp&&Ji(G.tagNameCheck,n)||G.tagNameCheck instanceof Function&&G.tagNameCheck(n))))return!1}else if(de[t]);else if(Ji(M,Yi(n,D,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==qi(n,"data:")||!fe[e])if(Y&&!Ji(k,Yi(n,D,"")));else if(n)return!1;return!0},He=function(e){return"annotation-xml"!==e&&Wi(e,P)},ze=function(e){Ue(I.beforeSanitizeAttributes,e,null);const{attributes:t}=e;if(!t||Fe(e))return;const r={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:U,forceKeepAttr:void 0};let o=t.length;for(;o--;){const i=t[o],{name:a,namespaceURI:s,value:c}=i,l=Se(a),u=c;let f="value"===a?u:Ki(u);if(r.attrName=l,r.attrValue=f,r.keepAttr=!0,r.forceKeepAttr=void 0,Ue(I.uponSanitizeAttribute,e,r),f=r.attrValue,!ie||"id"!==l&&"name"!==l||(De(a,e),f="user-content-"+f),Z&&Ji(/((--!?|])>)|<\/(style|title|textarea)/i,f)){De(a,e);continue}if("attributename"===l&&Wi(f,"href")){De(a,e);continue}if(r.forceKeepAttr)continue;if(!r.keepAttr){De(a,e);continue}if(!q&&Ji(/\/>/i,f)){De(a,e);continue}K&&Ui([N,x,L],e=>{f=Yi(f,e," ")});const p=Se(e.nodeName);if(Ge(p,l,f)){if(b&&"object"==typeof h&&"function"==typeof h.getAttributeType)if(s);else switch(h.getAttributeType(p,l)){case"TrustedHTML":f=b.createHTML(f);break;case"TrustedScriptURL":f=b.createScriptURL(f)}if(f!==u)try{s?e.setAttributeNS(s,a,f):e.setAttribute(a,f),Fe(e)?ke(e):Gi(n.removed)}catch(t){De(a,e)}}else De(a,e)}Ue(I.afterSanitizeAttributes,e,null)},Xe=function e(t){let n=null;const r=Me(t);for(Ue(I.beforeSanitizeShadowDOM,t,null);n=r.nextNode();)Ue(I.uponSanitizeShadowNode,n,null),Be(n),ze(n),n.content instanceof a&&e(n.content);Ue(I.afterSanitizeShadowDOM,t,null)};return n.sanitize=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=null,i=null,s=null,l=null;if(_e=!e,_e&&(e="\x3c!--\x3e"),"string"!=typeof e&&!je(e)){if("function"!=typeof e.toString)throw Qi("toString is not a function");if("string"!=typeof(e=e.toString()))throw Qi("dirty is not a string, aborting")}if(!n.isSupported)return e;if(Q||Le(t),n.removed=[],"string"==typeof e&&(se=!1),se){if(e.nodeName){const t=Se(e.nodeName);if(!F[t]||H[t])throw Qi("root node is forbidden and cannot be sanitized in-place")}}else if(e instanceof c)r=Pe("\x3c!----\x3e"),i=r.ownerDocument.importNode(e,!0),1===i.nodeType&&"BODY"===i.nodeName||"HTML"===i.nodeName?r=i:r.appendChild(i);else{if(!te&&!K&&!J&&-1===e.indexOf("<"))return b&&re?b.createHTML(e):e;if(r=Pe(e),!r)return te?null:re?A:""}r&&ee&&ke(r.firstChild);const u=Me(se?e:r);for(;s=u.nextNode();)Be(s),ze(s),s.content instanceof a&&Xe(s.content);if(se)return e;if(te){if(ne)for(l=w.call(r.ownerDocument);r.firstChild;)l.appendChild(r.firstChild);else l=r;return(U.shadowroot||U.shadowrootmode)&&(l=S.call(o,l,!0)),l}let f=J?r.outerHTML:r.innerHTML;return J&&F["!doctype"]&&r.ownerDocument&&r.ownerDocument.doctype&&r.ownerDocument.doctype.name&&Ji(wa,r.ownerDocument.doctype.name)&&(f="<!DOCTYPE "+r.ownerDocument.doctype.name+">\n"+f),K&&Ui([N,x,L],e=>{f=Yi(f,e," ")}),b&&re?b.createHTML(f):f},n.setConfig=function(){Le(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),Q=!0},n.clearConfig=function(){Ie=null,Q=!1},n.isValidAttribute=function(e,t,n){Ie||Le({});const r=Se(e),o=Se(t);return Ge(r,o,n)},n.addHook=function(e,t){"function"==typeof t&&Hi(I[e],t)},n.removeHook=function(e,t){if(void 0!==t){const n=Bi(I[e],t);return-1===n?void 0:zi(I[e],n,1)[0]}return Gi(I[e])},n.removeHooks=function(e){I[e]=[]},n.removeAllHooks=function(){I={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},n}(),xa=n(70580);function La(e){return{translations:globalThis._oc_l10n_registry_translations[e]??{},pluralFunction:globalThis._oc_l10n_registry_plural_functions[e]??(e=>e)}}function $a(e,t,n,r,o){const i="object"==typeof n?n:void 0,a="number"==typeof r?r:"number"==typeof n?n:void 0,s={escape:!0,sanitize:!0,..."object"==typeof o?o:"object"==typeof r?r:{}},c=e=>e,l=(s.sanitize?Na.sanitize:c)||c,u=s.escape?xa:c,f=e=>"string"==typeof e||"number"==typeof e;let p=(o?.bundle??La(e)).translations[t]||t;return p=Array.isArray(p)?p[0]:p,l("object"==typeof i||void 0!==a?(d=i,h=a,p.replace(/%n/g,""+h).replace(/{([^{}]*)}/g,(e,t)=>{if(void 0===d||!(t in d))return u(e);const n=d[t];return f(n)?u(`${n}`):"object"==typeof n&&f(n.value)?(!1!==n.escape?xa:c)(`${n.value}`):u(e)})):p);var d,h}globalThis._nc_l10n_locale??="undefined"!=typeof document&&document.documentElement.dataset.locale||Intl.DateTimeFormat().resolvedOptions().locale.replaceAll(/-/g,"_"),globalThis._nc_l10n_language??="undefined"!=typeof document&&document.documentElement.lang||(globalThis.navigator?.language??"en"),globalThis._oc_l10n_registry_translations??={},globalThis._oc_l10n_registry_plural_functions??={};const Ra={methods:{t:$a,n:function(e,t,n,r,o,i){const a="_"+t+"_::_"+n+"_",s=i?.bundle??La(e),c=s.translations[a];if(void 0!==c){const t=c;if(Array.isArray(t))return $a(e,t[s.pluralFunction(r)],o,r,i)}return $a(e,1===r?t:n,o,r,i)}}};n.nc=btoa((void 0===i&&(i=document.head.dataset.requesttoken??null),i)),n.p=((e,t,n)=>{const r=window?.OC?.coreApps?.includes(e)??!1,o="php"===n.slice(-3);let i=function(){let e=window._oc_webroot;if(void 0===e){e=location.pathname;const t=e.indexOf("/index.php/");if(-1!==t)e=e.slice(0,t);else{const t=e.indexOf("/",1);e=e.slice(0,t>0?t:void 0)}}return e}();return o&&!r?(i+=`/index.php/apps/${e}`,t&&(i+=`/${encodeURI(t)}`),"index.php"!==n&&(i+=`/${n}`)):o||r?("settings"!==e&&"core"!==e&&"search"!==e||"ajax"!==t||(i+="/index.php"),e&&(i+=`/${e}`),t&&(i+=`/${t}`),i+=`/${n}`):(i=function(e){return(window._oc_appswebroots??{})[e]??""}(e),t&&(i+=`/${t}/`),"/"!==i.at(-1)&&(i+="/"),i+=n),i})("mail","","js/"),Qn.mixin(Ra),new(Qn.extend(Ni))({}).$mount("#mail-oauth-done"),window.opener&&window.opener.postMessage("DONE")})()})();
//# sourceMappingURL=oauthpopup.js.map