← Back
Editing: oauthpopup.js
/*! 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 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud 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 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud 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/@nextcloud/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 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud 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 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud 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=""";break;case 38:n="&";break;case 39:n="'";break;case 60:n="<";break;case 62:n=">";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=null;function a(){return null!==i?i:"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),i=void 0!==window?._nc_event_bus?new r(window._nc_event_bus):window._nc_event_bus=new o,i)}class s{static GLOBAL_SCOPE_VOLATILE="nextcloud_vol";static GLOBAL_SCOPE_PERSISTENT="nextcloud_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))}}var c;c=({token:e,_internal:t})=>{t||function(e){if(!e||"string"!=typeof e)throw new Error("Invalid CSRF token given",{cause:{token:e}});globalThis._nc_auth_requestToken!==e&&(globalThis._nc_auth_requestToken=e,globalThis.document&&(document.head.dataset.requesttoken=e),function(e,...t){a().emit(e,...t)}("csrf-token-update",{token:e,_internal:!0}))}(e)},a().subscribe("csrf-token-update",c),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 l=Object.freeze({}),u=Array.isArray;function f(e){return null==e}function p(e){return null!=e}function d(e){return!0===e}function h(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function v(e){return"function"==typeof e}function m(e){return null!==e&&"object"==typeof e}var g=Object.prototype.toString;function y(e){return"[object Object]"===g.call(e)}function _(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function b(e){return p(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function E(e){return null==e?"":Array.isArray(e)||y(e)&&e.toString===g?JSON.stringify(e,A,2):String(e)}function A(e,t){return t&&t.__v_isRef?t.value:t}function T(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 C=w("key,ref,slot,slot-scope,is");function O(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 S=Object.prototype.hasOwnProperty;function I(e,t){return S.call(e,t)}function N(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var x=/-(\w)/g,$=N((function(e){return e.replace(x,(function(e,t){return t?t.toUpperCase():""}))})),L=N((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),R=/\B([A-Z])/g,k=N((function(e){return e.replace(R,"-$1").toLowerCase()})),D=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 P(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function M(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]&&M(t,e[n]);return t}function F(e,t,n){}var U=function(e,t,n){return!1},B=function(e){return e};function G(e,t){if(e===t)return!0;var n=m(e),r=m(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 G(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 G(e[n],t[n])}))}catch(e){return!1}}function z(e,t){for(var n=0;n<e.length;n++)if(G(e[n],t))return n;return-1}function H(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var X="data-server-rendered",V=["component","directive","filter"],W=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],Y={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:U,isReservedAttr:U,isUnknownElement:U,getTagNamespace:F,parsePlatformTagName:B,mustUseProp:U,async:!0,_lifecycleHooks:W};function q(e){var t=(e+"").charCodeAt(0);return 36===t||95===t}function K(e,t,n,r){Object.defineProperty(e,t,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var Z=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]")),J="__proto__"in{},Q="undefined"!=typeof window,ee=Q&&window.navigator.userAgent.toLowerCase(),te=ee&&/msie|trident/.test(ee),ne=ee&&ee.indexOf("msie 9.0")>0,re=ee&&ee.indexOf("edge/")>0;ee&&ee.indexOf("android");var oe=ee&&/iphone|ipad|ipod|ios/.test(ee);ee&&/chrome\/\d+/.test(ee),ee&&/phantomjs/.test(ee);var ie,ae=ee&&ee.match(/firefox\/(\d+)/),se={}.watch,ce=!1;if(Q)try{var le={};Object.defineProperty(le,"passive",{get:function(){ce=!0}}),window.addEventListener("test-passive",null,le)}catch(e){}var ue=function(){return void 0===ie&&(ie=!Q&&"undefined"!=typeof globalThis&&globalThis.process&&"server"===globalThis.process.env.VUE_ENV),ie},fe=Q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function pe(e){return"function"==typeof e&&/native code/.test(e.toString())}var de,he="undefined"!=typeof Symbol&&pe(Symbol)&&"undefined"!=typeof Reflect&&pe(Reflect.ownKeys);de="undefined"!=typeof Set&&pe(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 ve=null;function me(e){void 0===e&&(e=null),e||ve&&ve._scope.off(),ve=e,e&&e._scope.on()}var ge=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}(),ye=function(e){void 0===e&&(e="");var t=new ge;return t.text=e,t.isComment=!0,t};function _e(e){return new ge(void 0,void 0,void 0,String(e))}function be(e){var t=new ge(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 Ee=0,Ae=[],Te=function(){function e(){this._pending=!1,this.id=Ee++,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,Ae.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}();Te.target=null;var we=[];function Ce(e){we.push(e),Te.target=e}function Oe(){we.pop(),Te.target=we[we.length-1]}var Se=Array.prototype,Ie=Object.create(Se);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(e){var t=Se[e];K(Ie,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 Ne=Object.getOwnPropertyNames(Ie),xe={},$e=!0;function Le(e){$e=e}var Re={notify:F,depend:F,addSub:F,removeSub:F},ke=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?Re:new Te,this.vmCount=0,K(e,"__ob__",this),u(e)){if(!n)if(J)e.__proto__=Ie;else for(var r=0,o=Ne.length;r<o;r++)K(e,a=Ne[r],Ie[a]);t||this.observeArray(e)}else{var i=Object.keys(e);for(r=0;r<i.length;r++){var a;Pe(e,a=i[r],xe,void 0,t,n)}}}return e.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)De(e[t],!1,this.mock)},e}();function De(e,t,n){return e&&I(e,"__ob__")&&e.__ob__ instanceof ke?e.__ob__:!$e||!n&&ue()||!u(e)&&!y(e)||!Object.isExtensible(e)||e.__v_skip||Ge(e)||e instanceof ge?void 0:new ke(e,t,n)}function Pe(e,t,n,r,o,i,a){void 0===a&&(a=!1);var s=new Te,c=Object.getOwnPropertyDescriptor(e,t);if(!c||!1!==c.configurable){var l=c&&c.get,f=c&&c.set;l&&!f||n!==xe&&2!==arguments.length||(n=e[t]);var p=o?n&&n.__ob__:De(n,!1,i);return Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=l?l.call(e):n;return Te.target&&(s.depend(),p&&(p.dep.depend(),u(t)&&Fe(t))),Ge(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(f)f.call(e,t);else{if(l)return;if(!o&&Ge(c)&&!Ge(t))return void(c.value=t);n=t}p=o?t&&t.__ob__:De(t,!1,i),s.notify()}}}),s}}function Me(e,t,n){if(!Be(e)){var r=e.__ob__;return u(e)&&_(t)?(e.length=Math.max(e.length,t),e.splice(t,1,n),r&&!r.shallow&&r.mock&&De(n,!1,!0),n):t in e&&!(t in Object.prototype)?(e[t]=n,n):e._isVue||r&&r.vmCount?n:r?(Pe(r.value,t,n,void 0,r.shallow,r.mock),r.dep.notify(),n):(e[t]=n,n)}}function je(e,t){if(u(e)&&_(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||Be(e)||I(e,t)&&(delete e[t],n&&n.dep.notify())}}function Fe(e){for(var t=void 0,n=0,r=e.length;n<r;n++)(t=e[n])&&t.__ob__&&t.__ob__.dep.depend(),u(t)&&Fe(t)}function Ue(e){return function(e,t){Be(e)||De(e,t,ue())}(e,!0),K(e,"__v_isShallow",!0),e}function Be(e){return!(!e||!e.__v_isReadonly)}function Ge(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(Ge(e))return e.value;var r=e&&e.__ob__;return r&&r.dep.depend(),e},set:function(e){var r=t[n];Ge(r)&&!Ge(e)?r.value=e:t[n]=e}})}var He,Xe="watcher";"".concat(Xe," callback"),"".concat(Xe," getter"),"".concat(Xe," cleanup");var Ve=function(){function e(e){void 0===e&&(e=!1),this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=He,!e&&He&&(this.index=(He.scopes||(He.scopes=[])).push(this)-1)}return e.prototype.run=function(e){if(this.active){var t=He;try{return He=this,e()}finally{He=t}}},e.prototype.on=function(){He=this},e.prototype.off=function(){He=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 We=N((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 Ye(e,t){function n(){var e=n.fns;if(!u(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 qe(e,t,n,r,o,i){var a,s,c,l;for(a in e)s=e[a],c=t[a],l=We(a),f(s)||(f(c)?(f(s.fns)&&(s=e[a]=Ye(s,i)),d(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)f(e[a])&&r((l=We(a)).name,t[a],l.capture)}function Ke(e,t,n){var r;e instanceof ge&&(e=e.data.hook||(e.data.hook={}));var o=e[t];function i(){n.apply(this,arguments),O(r.fns,i)}f(o)?r=Ye([i]):p(o.fns)&&d(o.merged)?(r=o).fns.push(i):r=Ye([o,i]),r.merged=!0,e[t]=r}function Ze(e,t,n,r,o){if(p(t)){if(I(t,n))return e[n]=t[n],o||delete t[n],!0;if(I(t,r))return e[n]=t[r],o||delete t[r],!0}return!1}function Je(e){return h(e)?[_e(e)]:u(e)?et(e):void 0}function Qe(e){return p(e)&&p(e.text)&&!1===e.isComment}function et(e,t){var n,r,o,i,a=[];for(n=0;n<e.length;n++)f(r=e[n])||"boolean"==typeof r||(i=a[o=a.length-1],u(r)?r.length>0&&(Qe((r=et(r,"".concat(t||"","_").concat(n)))[0])&&Qe(i)&&(a[o]=_e(i.text+r[0].text),r.shift()),a.push.apply(a,r)):h(r)?Qe(i)?a[o]=_e(i.text+r):""!==r&&a.push(_e(r)):Qe(r)&&Qe(i)?a[o]=_e(i.text+r.text):(d(e._isVList)&&p(r.tag)&&f(r.key)&&p(t)&&(r.key="__vlist".concat(t,"_").concat(n,"__")),a.push(r)));return a}function tt(e,t){var n,r,o,i,a=null;if(u(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(m(e))if(he&&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 p(a)||(a=[]),a._isVList=!0,a}function nt(e,t,n,r){var o,i=this.$scopedSlots[e];i?(n=n||{},r&&(n=M(M({},r),n)),o=i(n)||(v(t)?t():t)):o=this.$slots[e]||(v(t)?t():t);var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function rt(e){return Pn(this.$options,"filters",e)||B}function ot(e,t){return u(e)?-1===e.indexOf(t):e!==t}function it(e,t,n,r,o){var i=Y.keyCodes[t]||n;return o&&r&&!Y.keyCodes[t]?ot(o,r):i?ot(i,e):r?k(r)!==t:void 0===e}function at(e,t,n,r,o){if(n&&m(n)){u(n)&&(n=j(n));var i=void 0,a=function(a){if("class"===a||"style"===a||C(a))i=e;else{var s=e.attrs&&e.attrs.type;i=r||Y.mustUseProp(t,s,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var c=$(a),l=k(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 st(e,t){var n=this._staticTrees||(this._staticTrees=[]),r=n[e];return r&&!t||lt(r=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,this._c,this),"__static__".concat(e),!1),r}function ct(e,t,n){return lt(e,"__once__".concat(t).concat(n?"_".concat(n):""),!0),e}function lt(e,t,n){if(u(e))for(var r=0;r<e.length;r++)e[r]&&"string"!=typeof e[r]&&ut(e[r],"".concat(t,"_").concat(r),n);else ut(e,t,n)}function ut(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function ft(e,t){if(t&&y(t)){var n=e.on=e.on?M({},e.on):{};for(var r in t){var o=n[r],i=t[r];n[r]=o?[].concat(o,i):i}}return e}function pt(e,t,n,r){t=t||{$stable:!n};for(var o=0;o<e.length;o++){var i=e[o];u(i)?pt(i,t,n):i&&(i.proxy&&(i.fn.proxy=!0),t[i.key]=i.fn)}return r&&(t.$key=r),t}function dt(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 ht(e,t){return"string"==typeof e?t+e:e}function vt(e){e._o=ct,e._n=T,e._s=E,e._l=tt,e._t=nt,e._q=G,e._i=z,e._m=st,e._f=rt,e._k=it,e._b=at,e._v=_e,e._e=ye,e._u=pt,e._g=ft,e._d=dt,e._p=ht}function mt(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(gt)&&delete n[l];return n}function gt(e){return e.isComment&&!e.asyncFactory||" "===e.text}function yt(e){return e.isComment&&e.asyncFactory}function _t(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!==l&&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 u in n)u in o||(o[u]=Et(n,u));return t&&Object.isExtensible(t)&&(t._normalized=o),K(o,"$stable",a),K(o,"$key",s),K(o,"$hasNormal",i),o}function bt(e,t,n,r){var o=function(){var t=ve;me(e);var n=arguments.length?r.apply(null,arguments):r({}),o=(n=n&&"object"==typeof n&&!u(n)?[n]:Je(n))&&n[0];return me(t),n&&(!o||1===n.length&&o.isComment&&!yt(o))?void 0:n};return r.proxy&&Object.defineProperty(t,n,{get:o,enumerable:!0,configurable:!0}),o}function Et(e,t){return function(){return e[t]}}function At(e,t,n,r,o){var i=!1;for(var a in t)a in e?t[a]!==n[a]&&(i=!0):(i=!0,Tt(e,a,r,o));for(var a in e)a in t||(i=!0,delete e[a]);return i}function Tt(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 Ct=null;function Ot(e,t){return(e.__esModule||he&&"Module"===e[Symbol.toStringTag])&&(e=e.default),m(e)?t.extend(e):e}function St(e){if(u(e))for(var t=0;t<e.length;t++){var n=e[t];if(p(n)&&(p(n.componentOptions)||yt(n)))return n}}function It(e,t,n,r,o,i){return(u(n)||h(n))&&(o=r,r=n,n=void 0),d(i)&&(o=2),function(e,t,n,r,o){if(p(n)&&p(n.__ob__))return ye();if(p(n)&&p(n.is)&&(t=n.is),!t)return ye();var i,a;if(u(r)&&v(r[0])&&((n=n||{}).scopedSlots={default:r[0]},r.length=0),2===o?r=Je(r):1===o&&(r=function(e){for(var t=0;t<e.length;t++)if(u(e[t]))return Array.prototype.concat.apply([],e);return e}(r)),"string"==typeof t){var s=void 0;a=e.$vnode&&e.$vnode.ns||Y.getTagNamespace(t),i=Y.isReservedTag(t)?new ge(Y.parsePlatformTagName(t),n,r,void 0,void 0,e):n&&n.pre||!p(s=Pn(e.$options,"components",t))?new ge(t,n,r,void 0,void 0,e):On(s,n,e,r,t)}else i=On(t,n,e,r);return u(i)?i:p(i)?(p(a)&&Nt(i,a),p(n)&&function(e){m(e.style)&&Vt(e.style),m(e.class)&&Vt(e.class)}(n),i):ye()}(e,t,n,r,o)}function Nt(e,t,n){if(e.ns=t,"foreignObject"===e.tag&&(t=void 0,n=!0),p(e.children))for(var r=0,o=e.children.length;r<o;r++){var i=e.children[r];p(i.tag)&&(f(i.ns)||d(n)&&"svg"!==i.tag)&&Nt(i,t,n)}}function xt(e,t,n){Ce();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){Lt(e,r,"errorCaptured hook")}}Lt(e,t,n)}finally{Oe()}}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 xt(e,r,o+" (Promise/async)")})),i._handled=!0)}catch(e){xt(e,r,o)}return i}function Lt(e,t,n){if(Y.errorHandler)try{return Y.errorHandler.call(null,e,t,n)}catch(t){t!==e&&Rt(t)}Rt(e)}function Rt(e,t,n){if(!Q||"undefined"==typeof console)throw e;console.error(e)}var kt,Dt=!1,Pt=[],Mt=!1;function jt(){Mt=!1;var e=Pt.slice(0);Pt.length=0;for(var t=0;t<e.length;t++)e[t]()}if("undefined"!=typeof Promise&&pe(Promise)){var Ft=Promise.resolve();kt=function(){Ft.then(jt),oe&&setTimeout(F)},Dt=!0}else if(te||"undefined"==typeof MutationObserver||!pe(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())kt="undefined"!=typeof setImmediate&&pe(setImmediate)?function(){setImmediate(jt)}:function(){setTimeout(jt,0)};else{var Ut=1,Bt=new MutationObserver(jt),Gt=document.createTextNode(String(Ut));Bt.observe(Gt,{characterData:!0}),kt=function(){Ut=(Ut+1)%2,Gt.data=String(Ut)},Dt=!0}function zt(e,t){var n;if(Pt.push((function(){if(e)try{e.call(t)}catch(e){xt(e,t,"nextTick")}else n&&n(t)})),Mt||(Mt=!0,kt()),!e&&"undefined"!=typeof Promise)return new Promise((function(e){n=e}))}function Ht(e){return function(t,n){if(void 0===n&&(n=ve),n)return function(e,t,n){var r=e.$options;r[t]=Ln(r[t],n)}(n,e,t)}}Ht("beforeMount"),Ht("mounted"),Ht("beforeUpdate"),Ht("updated"),Ht("beforeDestroy"),Ht("destroyed"),Ht("activated"),Ht("deactivated"),Ht("serverPrefetch"),Ht("renderTracked"),Ht("renderTriggered"),Ht("errorCaptured");var Xt=new de;function Vt(e){return Wt(e,Xt),Xt.clear(),e}function Wt(e,t){var n,r,o=u(e);if(!(!o&&!m(e)||e.__v_skip||Object.isFrozen(e)||e instanceof ge)){if(e.__ob__){var i=e.__ob__.dep.id;if(t.has(i))return;t.add(i)}if(o)for(n=e.length;n--;)Wt(e[n],t);else if(Ge(e))Wt(e.value,t);else for(n=(r=Object.keys(e)).length;n--;)Wt(e[r[n]],t)}}var Yt,qt=0,Kt=function(){function e(e,t,n,r,o){var i;void 0===(i=He&&!He._vm?He:e?e._scope:void 0)&&(i=He),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=++qt,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new de,this.newDepIds=new de,this.expression="",v(t)?this.getter=t:(this.getter=function(e){if(!Z.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=F)),this.value=this.lazy?void 0:this.get()}return e.prototype.get=function(){var e;Ce(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;xt(e,t,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&Vt(e),Oe(),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==un[t]&&(e!==Te.target||!e.noRecurse)){if(un[t]=!0,pn){for(var n=cn.length-1;n>dn&&cn[n].id>e.id;)n--;cn.splice(n+1,0,e)}else cn.push(e);fn||(fn=!0,zt(yn))}}(this)},e.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||m(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&&O(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 Zt(e,t){Yt.$on(e,t)}function Jt(e,t){Yt.$off(e,t)}function Qt(e,t){var n=Yt;return function r(){null!==t.apply(null,arguments)&&n.$off(e,r)}}function en(e,t,n){Yt=e,qe(t,n||{},Zt,Jt,Qt,e),Yt=void 0}var tn=null;function nn(e){var t=tn;return tn=e,function(){tn=t}}function rn(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function on(e,t){if(t){if(e._directInactive=!1,rn(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++)on(e.$children[n]);sn(e,"activated")}}function an(e,t){if(!(t&&(e._directInactive=!0,rn(e))||e._inactive)){e._inactive=!0;for(var n=0;n<e.$children.length;n++)an(e.$children[n]);sn(e,"deactivated")}}function sn(e,t,n,r){void 0===r&&(r=!0),Ce();var o=ve,i=He;r&&me(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&&(me(o),i&&i.on()),Oe()}var cn=[],ln=[],un={},fn=!1,pn=!1,dn=0,hn=0,vn=Date.now;if(Q&&!te){var mn=window.performance;mn&&"function"==typeof mn.now&&vn()>document.createEvent("Event").timeStamp&&(vn=function(){return mn.now()})}var gn=function(e,t){if(e.post){if(!t.post)return 1}else if(t.post)return-1;return e.id-t.id};function yn(){var e,t;for(hn=vn(),pn=!0,cn.sort(gn),dn=0;dn<cn.length;dn++)(e=cn[dn]).before&&e.before(),t=e.id,un[t]=null,e.run();var n=ln.slice(),r=cn.slice();dn=cn.length=ln.length=0,un={},fn=pn=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,on(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&&sn(r,"updated")}}(r),function(){for(var e=0;e<Ae.length;e++){var t=Ae[e];t.subs=t.subs.filter((function(e){return e})),t._pending=!1}Ae.length=0}(),fe&&Y.devtools&&fe.emit("flush")}function _n(e,t){if(e){for(var n=Object.create(null),r=he?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]=v(s)?s.call(t):s}}}return n}}function bn(e,t,n,r,o){var i,a=this,s=o.options;I(r,"_uid")?(i=Object.create(r))._original=r:(i=r,r=r._original);var c=d(s._compiled),f=!c;this.data=e,this.props=t,this.children=n,this.parent=r,this.listeners=e.on||l,this.injections=_n(s.inject,r),this.slots=function(){return a.$slots||_t(r,e.scopedSlots,a.$slots=mt(n,r)),a.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return _t(r,e.scopedSlots,this.slots())}}),c&&(this.$options=s,this.$slots=this.slots(),this.$scopedSlots=_t(r,e.scopedSlots,this.$slots)),s._scopeId?this._c=function(e,t,n,o){var a=It(i,e,t,n,o,f);return a&&!u(a)&&(a.fnScopeId=s._scopeId,a.fnContext=r),a}:this._c=function(e,t,n,r){return It(i,e,t,n,r,f)}}function En(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 An(e,t){for(var n in t)e[$(n)]=t[n]}function Tn(e){return e.name||e.__name||e._componentTag}vt(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 p(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns),new e.componentOptions.Ctor(n)}(e,tn);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!==l&&!a.$stable||i&&e.$scopedSlots.$key!==i.$key||!i&&e.$scopedSlots.$key),c=!!(o||e.$options._renderChildren||s),u=e.$vnode;e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=o;var f=r.data.attrs||l;e._attrsProxy&&At(e._attrsProxy,f,u.data&&u.data.attrs||l,e,"$attrs")&&(c=!0),e.$attrs=f,n=n||l;var p=e.$options._parentListeners;if(e._listenersProxy&&At(e._listenersProxy,n,p||l,e,"$listeners"),e.$listeners=e.$options._parentListeners=n,en(e,n,p),t&&e.$options.props){Le(!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]=Mn(m,g,t,e)}Le(!0),e.$options.propsData=t}c&&(e.$slots=mt(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,sn(r,"mounted")),e.data.keepAlive&&(n._isMounted?((t=r)._inactive=!1,ln.push(t)):on(r,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?an(t,!0):t.$destroy())}},Cn=Object.keys(wn);function On(e,t,n,r,o){if(!f(e)){var i=n.$options._base;if(m(e)&&(e=i.extend(e)),"function"==typeof e){var a;if(f(e.cid)&&(e=function(e,t){if(d(e.error)&&p(e.errorComp))return e.errorComp;if(p(e.resolved))return e.resolved;var n=Ct;if(n&&p(e.owners)&&-1===e.owners.indexOf(n)&&e.owners.push(n),d(e.loading)&&p(e.loadingComp))return e.loadingComp;if(n&&!p(e.owners)){var r=e.owners=[n],o=!0,i=null,a=null;n.$on("hook:destroyed",(function(){return O(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=H((function(n){e.resolved=Ot(n,t),o?r.length=0:s(!0)})),l=H((function(t){p(e.errorComp)&&(e.error=!0,s(!0))})),u=e(c,l);return m(u)&&(b(u)?f(e.resolved)&&u.then(c,l):b(u.component)&&(u.component.then(c,l),p(u.error)&&(e.errorComp=Ot(u.error,t)),p(u.loading)&&(e.loadingComp=Ot(u.loading,t),0===u.delay?e.loading=!0:i=setTimeout((function(){i=null,f(e.resolved)&&f(e.error)&&(e.loading=!0,s(!1))}),u.delay||200)),p(u.timeout)&&(a=setTimeout((function(){a=null,f(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=ye();return i.asyncFactory=e,i.asyncMeta={data:t,context:n,children:r,tag:o},i}(a,t,n,r,o);t=t||{},Zn(e),p(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;p(i)?(u(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(!f(n)){var r={},o=e.attrs,i=e.props;if(p(o)||p(i))for(var a in n){var s=k(a);Ze(r,i,a,s,!0)||Ze(r,o,a,s,!1)}return r}}(t,e);if(d(e.options.functional))return function(e,t,n,r,o){var i=e.options,a={},s=i.props;if(p(s))for(var c in s)a[c]=Mn(c,s,t||l);else p(n.attrs)&&An(a,n.attrs),p(n.props)&&An(a,n.props);var f=new bn(n,a,o,r,e),d=i.render.call(null,f._c,f);if(d instanceof ge)return En(d,n,f.parent,i);if(u(d)){for(var h=Je(d)||[],v=new Array(h.length),m=0;m<h.length;m++)v[m]=En(h[m],n,f.parent,i);return v}}(e,s,t,n,r);var c=t.on;if(t.on=t.nativeOn,d(e.options.abstract)){var h=t.slot;t={},h&&(t.slot=h)}!function(e){for(var t=e.hook||(e.hook={}),n=0;n<Cn.length;n++){var r=Cn[n],o=t[r],i=wn[r];o===i||o&&o._merged||(t[r]=o?Sn(i,o):i)}}(t);var v=Tn(e.options)||o;return new ge("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 Sn(e,t){var n=function(n,r){e(n,r),t(n,r)};return n._merged=!0,n}var In=F,Nn=Y.optionMergeStrategies;function xn(e,t,n){if(void 0===n&&(n=!0),!t)return e;for(var r,o,i,a=he?Reflect.ownKeys(t):Object.keys(t),s=0;s<a.length;s++)"__ob__"!==(r=a[s])&&(o=e[r],i=t[r],n&&I(e,r)?o!==i&&y(o)&&y(i)&&xn(o,i):Me(e,r,i));return e}function $n(e,t,n){return n?function(){var r=v(t)?t.call(n,n):t,o=v(e)?e.call(n,n):e;return r?xn(r,o):o}:t?e?function(){return xn(v(t)?t.call(this,this):t,v(e)?e.call(this,this):e)}:t:e}function Ln(e,t){var n=t?e?e.concat(t):u(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 Rn(e,t,n,r){var o=Object.create(e||null);return t?M(o,t):o}Nn.data=function(e,t,n){return n?$n(e,t,n):t&&"function"!=typeof t?e:$n(e,t)},W.forEach((function(e){Nn[e]=Ln})),V.forEach((function(e){Nn[e+"s"]=Rn})),Nn.watch=function(e,t,n,r){if(e===se&&(e=void 0),t===se&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var o={};for(var i in M(o,e),t){var a=o[i],s=t[i];a&&!u(a)&&(a=[a]),o[i]=a?a.concat(s):u(s)?s:[s]}return o},Nn.props=Nn.methods=Nn.inject=Nn.computed=function(e,t,n,r){if(!e)return t;var o=Object.create(null);return M(o,e),t&&M(o,t),o},Nn.provide=function(e,t){return e?function(){var n=Object.create(null);return xn(n,v(e)?e.call(this):e),t&&xn(n,v(t)?t.call(this):t,!1),n}:t};var kn=function(e,t){return void 0===t?e:t};function Dn(e,t,n){if(v(t)&&(t=t.options),function(e){var t=e.props;if(t){var n,r,o={};if(u(t))for(n=t.length;n--;)"string"==typeof(r=t[n])&&(o[$(r)]={type:null});else if(y(t))for(var i in t)r=t[i],o[$(i)]=y(r)?r:{type:r};e.props=o}}(t),function(e){var t=e.inject;if(t){var n=e.inject={};if(u(t))for(var r=0;r<t.length;r++)n[t[r]]={from:t[r]};else if(y(t))for(var o in t){var i=t[o];n[o]=y(i)?M({from:o},i):{from:i}}}}(t),function(e){var t=e.directives;if(t)for(var n in t){var r=t[n];v(r)&&(t[n]={bind:r,update:r})}}(t),!t._base&&(t.extends&&(e=Dn(e,t.extends,n)),t.mixins))for(var r=0,o=t.mixins.length;r<o;r++)e=Dn(e,t.mixins[r],n);var i,a={};for(i in e)s(i);for(i in t)I(e,i)||s(i);function s(r){var o=Nn[r]||kn;a[r]=o(e[r],t[r],n,r)}return a}function Pn(e,t,n,r){if("string"==typeof n){var o=e[t];if(I(o,n))return o[n];var i=$(n);if(I(o,i))return o[i];var a=L(i);return I(o,a)?o[a]:o[n]||o[i]||o[a]}}function Mn(e,t,n,r){var o=t[e],i=!I(n,e),a=n[e],s=Bn(Boolean,o.type);if(s>-1)if(i&&!I(o,"default"))a=!1;else if(""===a||a===k(e)){var c=Bn(String,o.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=function(e,t,n){if(I(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]:v(r)&&"Function"!==Fn(t.type)?r.call(e):r}}(r,o,e);var l=$e;Le(!0),De(a),Le(l)}return a}var jn=/^\s*function (\w+)/;function Fn(e){var t=e&&e.toString().match(jn);return t?t[1]:""}function Un(e,t){return Fn(e)===Fn(t)}function Bn(e,t){if(!u(t))return Un(t,e)?0:-1;for(var n=0,r=t.length;n<r;n++)if(Un(t[n],e))return n;return-1}var Gn={enumerable:!0,configurable:!0,get:F,set:F};function zn(e,t,n){Gn.get=function(){return this[t][n]},Gn.set=function(e){this[t][n]=e},Object.defineProperty(e,n,Gn)}function Hn(e){var t=e.$options;if(t.props&&function(e,t){var n=e.$options.propsData||{},r=e._props=Ue({}),o=e.$options._propKeys=[];!e.$parent||Le(!1);var i=function(i){o.push(i);var a=Mn(i,t,n,e);Pe(r,i,a,void 0,!0),i in e||zn(e,"_props",i)};for(var a in t)i(a);Le(!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={};K(t,"_v_attr_proxy",!0),At(t,e.$attrs,l,e,"$attrs")}return e._attrsProxy},get listeners(){return e._listenersProxy||At(e._listenersProxy={},e.$listeners,l,e,"$listeners"),e._listenersProxy},get slots(){return function(e){return e._slotsProxy||wt(e._slotsProxy={},e.$scopedSlots),e._slotsProxy}(e)},emit:D(e.$emit,e),expose:function(t){t&&Object.keys(t).forEach((function(n){return ze(e,t,n)}))}}}(e);me(e),Ce();var o=$t(n,null,[e._props||Ue({}),r],e,"setup");if(Oe(),me(),v(o))t.render=o;else if(m(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)q(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]?F:D(t[n],e)}(e,t.methods),t.data)!function(e){var t=e.$options.data;y(t=e._data=v(t)?function(e,t){Ce();try{return e.call(t,t)}catch(e){return xt(e,t,"data()"),{}}finally{Oe()}}(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&&I(r,i)||q(i)||zn(e,"_data",i)}var a=De(t);a&&a.vmCount++}(e);else{var n=De(e._data={});n&&n.vmCount++}t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),r=ue();for(var o in t){var i=t[o],a=v(i)?i:i.get;r||(n[o]=new Kt(e,a||F,F,Xn)),o in e||Vn(e,o,i)}}(e,t.computed),t.watch&&t.watch!==se&&function(e,t){for(var n in t){var r=t[n];if(u(r))for(var o=0;o<r.length;o++)qn(e,n,r[o]);else qn(e,n,r)}}(e,t.watch)}var Xn={lazy:!0};function Vn(e,t,n){var r=!ue();v(n)?(Gn.get=r?Wn(t):Yn(n),Gn.set=F):(Gn.get=n.get?r&&!1!==n.cache?Wn(t):Yn(n.get):F,Gn.set=n.set||F),Object.defineProperty(e,t,Gn)}function Wn(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),Te.target&&t.depend(),t.value}}function Yn(e){return function(){return e.call(this,this)}}function qn(e,t,n,r){return y(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,r)}var Kn=0;function Zn(e){var t=e.options;if(e.super){var n=Zn(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&&M(e.extendOptions,r),(t=e.options=Dn(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Jn(e){this._init(e)}function Qn(e){return e&&(Tn(e.Ctor.options)||e.tag)}function er(e,t){return u(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,!("[object RegExp]"!==g.call(n))&&e.test(t));var n}function tr(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)&&nr(n,a,r,o)}}i.componentOptions.children=void 0}function nr(e,t,n,r){var o=e[t];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),e[t]=null,O(n,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=Kn++,t._isVue=!0,t.__v_skip=!0,t._scope=new Ve(!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=Dn(Zn(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&&en(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=mt(t._renderChildren,r),e.$scopedSlots=n?_t(e.$parent,n.data.scopedSlots,e.$slots):l,e._c=function(t,n,r,o){return It(e,t,n,r,o,!1)},e.$createElement=function(t,n,r,o){return It(e,t,n,r,o,!0)};var o=n&&n.data;Pe(e,"$attrs",o&&o.attrs||l,null,!0),Pe(e,"$listeners",t._parentListeners||l,null,!0)}(t),sn(t,"beforeCreate",void 0,!1),function(e){var t=_n(e.$options.inject,e);t&&(Le(!1),Object.keys(t).forEach((function(n){Pe(e,n,t[n])})),Le(!0))}(t),Hn(t),function(e){var t=e.$options.provide;if(t){var n=v(t)?t.call(e):t;if(!m(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=he?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),sn(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(Jn),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=Me,e.prototype.$delete=je,e.prototype.$watch=function(e,t,n){var r=this;if(y(t))return qn(r,e,t,n);(n=n||{}).user=!0;var o=new Kt(r,e,t,n);if(n.immediate){var i='callback for immediate watcher "'.concat(o.expression,'"');Ce(),$t(t,r,[o.value],r,i),Oe()}return function(){o.teardown()}}}(Jn),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){var r=this;if(u(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(u(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?P(n):n;for(var r=P(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}}(Jn),function(e){e.prototype._update=function(e,t){var n=this,r=n.$el,o=n._vnode,i=nn(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){sn(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||O(t.$children,e),e._scope.stop(),e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),sn(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(Jn),function(e){vt(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=_t(e.$parent,r.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&wt(e._slotsProxy,e.$scopedSlots)),e.$vnode=r;var o,i=ve,a=Ct;try{me(e),Ct=e,o=n.call(e._renderProxy,e.$createElement)}catch(t){xt(t,e,"render"),o=e._vnode}finally{Ct=a,me(i)}return u(o)&&1===o.length&&(o=o[0]),o instanceof ge||(o=ye()),o.parent=r,o}}(Jn);var rr=[String,RegExp,Array],or={name:"keep-alive",abstract:!0,props:{include:rr,exclude:rr,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:Qn(s),tag:i,componentInstance:a},n.push(o),this.max&&n.length>parseInt(this.max)&&nr(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)nr(this.cache,e,this.keys)},mounted:function(){var e=this;this.cacheVNode(),this.$watch("include",(function(t){tr(e,(function(e){return er(t,e)}))})),this.$watch("exclude",(function(t){tr(e,(function(e){return!er(t,e)}))}))},updated:function(){this.cacheVNode()},render:function(){var e=this.$slots.default,t=St(e),n=t&&t.componentOptions;if(n){var r=Qn(n),o=this.include,i=this.exclude;if(o&&(!r||!er(o,r))||i&&r&&er(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,O(s,c),s.push(c)):(this.vnodeToCache=t,this.keyToCache=c),t.data.keepAlive=!0}return t||e&&e[0]}},ir={KeepAlive:or};!function(e){var t={get:function(){return Y}};Object.defineProperty(e,"config",t),e.util={warn:In,extend:M,mergeOptions:Dn,defineReactive:Pe},e.set=Me,e.delete=je,e.nextTick=zt,e.observable=function(e){return De(e),e},e.options=Object.create(null),V.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,M(e.options.components,ir),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=P(arguments,1);return n.unshift(this),v(e.install)?e.install.apply(e,n):v(e)&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Dn(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=Tn(e)||Tn(n.options),a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=Dn(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)Vn(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,V.forEach((function(e){a[e]=n[e]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=M({},a.options),o[r]=a,a}}(e),function(e){V.forEach((function(t){e[t]=function(e,n){return n?("component"===t&&y(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&v(n)&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}))}(e)}(Jn),Object.defineProperty(Jn.prototype,"$isServer",{get:ue}),Object.defineProperty(Jn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Jn,"FunctionalRenderContext",{value:bn}),Jn.version="2.7.16";var ar=w("style,class"),sr=w("input,textarea,option,select,progress"),cr=w("contenteditable,draggable,spellcheck"),lr=w("events,caret,typing,plaintext-only"),ur=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"),fr="http://www.w3.org/1999/xlink",pr=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},dr=function(e){return pr(e)?e.slice(6,e.length):""},hr=function(e){return null==e||!1===e};function vr(e,t){return{staticClass:mr(e.staticClass,t.staticClass),class:p(e.class)?[e.class,t.class]:t.class}}function mr(e,t){return e?t?e+" "+t:e:t||""}function gr(e){return Array.isArray(e)?function(e){for(var t,n="",r=0,o=e.length;r<o;r++)p(t=gr(e[r]))&&""!==t&&(n&&(n+=" "),n+=t);return n}(e):m(e)?function(e){var t="";for(var n in e)e[n]&&(t&&(t+=" "),t+=n);return t}(e):"string"==typeof e?e:""}var yr={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},_r=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),Er=function(e){return _r(e)||br(e)},Ar=Object.create(null),Tr=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(yr[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,"")}}),Cr={create:function(e,t){Or(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Or(e,!0),Or(t))},destroy:function(e){Or(e,!0)}};function Or(e,t){var n=e.data.ref;if(p(n)){var r=e.context,o=e.componentInstance||e.elm,i=t?null:o,a=t?void 0:o;if(v(n))$t(n,r,[i],r,"template ref function");else{var s=e.data.refInFor,c="string"==typeof n||"number"==typeof n,l=Ge(n),f=r.$refs;if(c||l)if(s){var d=c?f[n]:n.value;t?u(d)&&O(d,o):u(d)?d.includes(o)||d.push(o):c?(f[n]=[o],Sr(r,n,f[n])):n.value=[o]}else if(c){if(t&&f[n]!==o)return;f[n]=a,Sr(r,n,i)}else if(l){if(t&&n.value!==o)return;n.value=i}}}}function Sr(e,t,n){var r=e._setupState;r&&I(r,t)&&(Ge(r[t])?r[t].value=n:r[t]=n)}var Ir=new ge("",{},[]),Nr=["create","activate","update","remove","destroy"];function xr(e,t){return e.key===t.key&&e.asyncFactory===t.asyncFactory&&(e.tag===t.tag&&e.isComment===t.isComment&&p(e.data)===p(t.data)&&function(e,t){if("input"!==e.tag)return!0;var n,r=p(n=e.data)&&p(n=n.attrs)&&n.type,o=p(n=t.data)&&p(n=n.attrs)&&n.type;return r===o||Tr(r)&&Tr(o)}(e,t)||d(e.isAsyncPlaceholder)&&f(t.asyncFactory.error))}function $r(e,t,n){var r,o,i={};for(r=t;r<=n;++r)p(o=e[r].key)&&(i[o]=r);return i}var Lr={create:Rr,update:Rr,destroy:function(e){Rr(e,Ir)}};function Rr(e,t){(e.data.directives||t.data.directives)&&function(e,t){var n,r,o,i=e===Ir,a=t===Ir,s=Dr(e.data.directives,e.context),c=Dr(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,Mr(o,"update",t,e),o.def&&o.def.componentUpdated&&u.push(o)):(Mr(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++)Mr(l[n],"inserted",t,e)};i?Ke(t,"insert",f):f()}if(u.length&&Ke(t,"postpatch",(function(){for(var n=0;n<u.length;n++)Mr(u[n],"componentUpdated",t,e)})),!i)for(n in s)c[n]||Mr(s[n],"unbind",e,e,a)}(e,t)}var kr=Object.create(null);function Dr(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=kr),o[Pr(r)]=r,t._setupState&&t._setupState.__sfc){var i=r.def||Pn(t,"_setupState","v-"+r.name);r.def="function"==typeof i?{bind:i,update:i}:i}r.def=r.def||Pn(t.$options,"directives",r.name)}return o}function Pr(e){return e.rawName||"".concat(e.name,".").concat(Object.keys(e.modifiers||{}).join("."))}function Mr(e,t,n,r,o){var i=e.def&&e.def[t];if(i)try{i(n.elm,e,n,r,o)}catch(r){xt(r,n.context,"directive ".concat(e.name," ").concat(t," hook"))}}var jr=[Cr,Lr];function Fr(e,t){var n=t.componentOptions;if(!(p(n)&&!1===n.Ctor.options.inheritAttrs||f(e.data.attrs)&&f(t.data.attrs))){var r,o,i=t.elm,a=e.data.attrs||{},s=t.data.attrs||{};for(r in(p(s.__ob__)||d(s._v_attr_proxy))&&(s=t.data.attrs=M({},s)),s)o=s[r],a[r]!==o&&Ur(i,r,o,t.data.pre);for(r in(te||re)&&s.value!==a.value&&Ur(i,"value",s.value),a)f(s[r])&&(pr(r)?i.removeAttributeNS(fr,dr(r)):cr(r)||i.removeAttribute(r))}}function Ur(e,t,n,r){r||e.tagName.indexOf("-")>-1?Br(e,t,n):ur(t)?hr(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):cr(t)?e.setAttribute(t,function(e,t){return hr(t)||"false"===t?"false":"contenteditable"===e&&lr(t)?t:"true"}(t,n)):pr(t)?hr(n)?e.removeAttributeNS(fr,dr(t)):e.setAttributeNS(fr,t,n):Br(e,t,n)}function Br(e,t,n){if(hr(n))e.removeAttribute(t);else{if(te&&!ne&&"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 Gr={create:Fr,update:Fr};function zr(e,t){var n=t.elm,r=t.data,o=e.data;if(!(f(r.staticClass)&&f(r.class)&&(f(o)||f(o.staticClass)&&f(o.class)))){var i=function(e){for(var t=e.data,n=e,r=e;p(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(t=vr(r.data,t));for(;p(n=n.parent);)n&&n.data&&(t=vr(t,n.data));return o=t.staticClass,i=t.class,p(o)||p(i)?mr(o,gr(i)):"";var o,i}(t),a=n._transitionClasses;p(a)&&(i=mr(i,gr(a))),i!==n._prevClass&&(n.setAttribute("class",i),n._prevClass=i)}}var Hr,Xr={create:zr,update:zr},Vr="__r",Wr="__c";function Yr(e,t,n){var r=Hr;return function o(){null!==t.apply(null,arguments)&&Zr(e,o,n,r)}}var qr=Dt&&!(ae&&Number(ae[1])<=53);function Kr(e,t,n,r){if(qr){var o=hn,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)}}Hr.addEventListener(e,t,ce?{capture:n,passive:r}:n)}function Zr(e,t,n,r){(r||Hr).removeEventListener(e,t._wrapper||t,n)}function Jr(e,t){if(!f(e.data.on)||!f(t.data.on)){var n=t.data.on||{},r=e.data.on||{};Hr=t.elm||e.elm,function(e){if(p(e[Vr])){var t=te?"change":"input";e[t]=[].concat(e[Vr],e[t]||[]),delete e[Vr]}p(e[Wr])&&(e.change=[].concat(e[Wr],e.change||[]),delete e[Wr])}(n),qe(n,r,Kr,Zr,Yr,t.context),Hr=void 0}}var Qr,eo={create:Jr,update:Jr,destroy:function(e){return Jr(e,Ir)}};function to(e,t){if(!f(e.data.domProps)||!f(t.data.domProps)){var n,r,o=t.elm,i=e.data.domProps||{},a=t.data.domProps||{};for(n in(p(a.__ob__)||d(a._v_attr_proxy))&&(a=t.data.domProps=M({},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=f(r)?"":String(r);no(o,s)&&(o.value=s)}else if("innerHTML"===n&&br(o.tagName)&&f(o.innerHTML)){(Qr=Qr||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var c=Qr.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 no(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(p(r)){if(r.number)return T(n)!==T(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(e,t))}var ro={create:to,update:to},oo=N((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 io(e){var t=ao(e.style);return e.staticStyle?M(e.staticStyle,t):t}function ao(e){return Array.isArray(e)?j(e):"string"==typeof e?oo(e):e}var so,co=/^--/,lo=/\s*!important$/,uo=function(e,t,n){if(co.test(t))e.style.setProperty(t,n);else if(lo.test(n))e.style.setProperty(k(t),n.replace(lo,""),"important");else{var r=po(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}},fo=["Webkit","Moz","ms"],po=N((function(e){if(so=so||document.createElement("div").style,"filter"!==(e=$(e))&&e in so)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<fo.length;n++){var r=fo[n]+t;if(r in so)return r}}));function ho(e,t){var n=t.data,r=e.data;if(!(f(n.staticStyle)&&f(n.style)&&f(r.staticStyle)&&f(r.style))){var o,i,a=t.elm,s=r.staticStyle,c=r.normalizedStyle||r.style||{},l=s||c,u=ao(t.data.style)||{};t.data.normalizedStyle=p(u.__ob__)?M({},u):u;var d=function(e){for(var t,n={},r=e;r.componentInstance;)(r=r.componentInstance._vnode)&&r.data&&(t=io(r.data))&&M(n,t);(t=io(e.data))&&M(n,t);for(var o=e;o=o.parent;)o.data&&(t=io(o.data))&&M(n,t);return n}(t);for(i in l)f(d[i])&&uo(a,i,"");for(i in d)o=d[i],uo(a,i,null==o?"":o)}}var vo={create:ho,update:ho},mo=/\s+/;function go(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(mo).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 yo(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(mo).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 _o(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&M(t,bo(e.name||"v")),M(t,e),t}return"string"==typeof e?bo(e):void 0}}var bo=N((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")}})),Eo=Q&&!ne,Ao="transition",To="animation",wo="transition",Co="transitionend",Oo="animation",So="animationend";Eo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(wo="WebkitTransition",Co="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Oo="WebkitAnimation",So="webkitAnimationEnd"));var Io=Q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function No(e){Io((function(){Io(e)}))}function xo(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),go(e,t))}function $o(e,t){e._transitionClasses&&O(e._transitionClasses,t),yo(e,t)}function Lo(e,t,n){var r=ko(e,t),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===Ao?Co:So,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 Ro=/\b(transform|all)(,|$)/;function ko(e,t){var n,r=window.getComputedStyle(e),o=(r[wo+"Delay"]||"").split(", "),i=(r[wo+"Duration"]||"").split(", "),a=Do(o,i),s=(r[Oo+"Delay"]||"").split(", "),c=(r[Oo+"Duration"]||"").split(", "),l=Do(s,c),u=0,f=0;return t===Ao?a>0&&(n=Ao,u=a,f=i.length):t===To?l>0&&(n=To,u=l,f=c.length):f=(n=(u=Math.max(a,l))>0?a>l?Ao:To:null)?n===Ao?i.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Ao&&Ro.test(r[wo+"Property"])}}function Do(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map((function(t,n){return Po(t)+Po(e[n])})))}function Po(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function Mo(e,t){var n=e.elm;p(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=_o(e.data.transition);if(!f(r)&&!p(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,d=r.appearActiveClass,h=r.beforeEnter,g=r.enter,y=r.afterEnter,_=r.enterCancelled,b=r.beforeAppear,E=r.appear,A=r.afterAppear,w=r.appearCancelled,C=r.duration,O=tn,S=tn.$vnode;S&&S.parent;)O=S.context,S=S.parent;var I=!O._isMounted||!e.isRootInsert;if(!I||E||""===E){var N=I&&l?l:a,x=I&&d?d:c,$=I&&u?u:s,L=I&&b||h,R=I&&v(E)?E:g,k=I&&A||y,D=I&&w||_,P=T(m(C)?C.enter:C),M=!1!==o&&!ne,j=Uo(R),F=n._enterCb=H((function(){M&&($o(n,$),$o(n,x)),F.cancelled?(M&&$o(n,N),D&&D(n)):k&&k(n),n._enterCb=null}));e.data.show||Ke(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,F)})),L&&L(n),M&&(xo(n,N),xo(n,x),No((function(){$o(n,N),F.cancelled||(xo(n,$),j||(Fo(P)?setTimeout(F,P):Lo(n,i,F)))}))),e.data.show&&(t&&t(),R&&R(n,F)),M||j||F()}}}function jo(e,t){var n=e.elm;p(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=_o(e.data.transition);if(f(r)||1!==n.nodeType)return t();if(!p(n._leaveCb)){var o=r.css,i=r.type,a=r.leaveClass,s=r.leaveToClass,c=r.leaveActiveClass,l=r.beforeLeave,u=r.leave,d=r.afterLeave,h=r.leaveCancelled,v=r.delayLeave,g=r.duration,y=!1!==o&&!ne,_=Uo(u),b=T(m(g)?g.leave:g),E=n._leaveCb=H((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[e.key]=null),y&&($o(n,s),$o(n,c)),E.cancelled?(y&&$o(n,a),h&&h(n)):(t(),d&&d(n)),n._leaveCb=null}));v?v(A):A()}function A(){E.cancelled||(!e.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[e.key]=e),l&&l(n),y&&(xo(n,a),xo(n,c),No((function(){$o(n,a),E.cancelled||(xo(n,s),_||(Fo(b)?setTimeout(E,b):Lo(n,i,E)))}))),u&&u(n,E),y||_||E())}}function Fo(e){return"number"==typeof e&&!isNaN(e)}function Uo(e){if(f(e))return!1;var t=e.fns;return p(t)?Uo(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function Bo(e,t){!0!==t.data.show&&Mo(t)}var Go=function(e){var t,n,r={},o=e.modules,i=e.nodeOps;for(t=0;t<Nr.length;++t)for(r[Nr[t]]=[],n=0;n<o.length;++n)p(o[n][Nr[t]])&&r[Nr[t]].push(o[n][Nr[t]]);function a(e){var t=i.parentNode(e);p(t)&&i.removeChild(t,e)}function s(e,t,n,o,a,s,u){if(p(e.elm)&&p(s)&&(e=s[u]=be(e)),e.isRootInsert=!a,!function(e,t,n,o){var i=e.data;if(p(i)){var a=p(e.componentInstance)&&i.keepAlive;if(p(i=i.hook)&&p(i=i.init)&&i(e,!1),p(e.componentInstance))return c(e,t),l(n,e.elm,o),d(a)&&function(e,t,n,o){for(var i,a=e;a.componentInstance;)if(p(i=(a=a.componentInstance._vnode).data)&&p(i=i.transition)){for(i=0;i<r.activate.length;++i)r.activate[i](Ir,a);t.push(a);break}l(n,e.elm,o)}(e,t,n,o),!0}}(e,t,n,o)){var f=e.data,h=e.children,m=e.tag;p(m)?(e.elm=e.ns?i.createElementNS(e.ns,m):i.createElement(m,e),y(e),v(e,h,t),p(f)&&g(e,t),l(n,e.elm,o)):d(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){p(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)):(Or(e),t.push(e))}function l(e,t,n){p(e)&&(p(n)?i.parentNode(n)===e&&i.insertBefore(e,t,n):i.appendChild(e,t))}function v(e,t,n){if(u(t))for(var r=0;r<t.length;++r)s(t[r],n,e.elm,null,!0,t,r);else h(e.text)&&i.appendChild(e.elm,i.createTextNode(String(e.text)))}function m(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return p(e.tag)}function g(e,n){for(var o=0;o<r.create.length;++o)r.create[o](Ir,e);p(t=e.data.hook)&&(p(t.create)&&t.create(Ir,e),p(t.insert)&&n.push(e))}function y(e){var t;if(p(t=e.fnScopeId))i.setStyleScope(e.elm,t);else for(var n=e;n;)p(t=n.context)&&p(t=t.$options._scopeId)&&i.setStyleScope(e.elm,t),n=n.parent;p(t=tn)&&t!==e.context&&t!==e.fnContext&&p(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 b(e){var t,n,o=e.data;if(p(o))for(p(t=o.hook)&&p(t=t.destroy)&&t(e),t=0;t<r.destroy.length;++t)r.destroy[t](e);if(p(t=e.children))for(n=0;n<e.children.length;++n)b(e.children[n])}function E(e,t,n){for(;t<=n;++t){var r=e[t];p(r)&&(p(r.tag)?(A(r),b(r)):a(r.elm))}}function A(e,t){if(p(t)||p(e.data)){var n,o=r.remove.length+1;for(p(t)?t.listeners+=o:t=function(e,t){function n(){0==--n.listeners&&a(e)}return n.listeners=t,n}(e.elm,o),p(n=e.componentInstance)&&p(n=n._vnode)&&p(n.data)&&A(n,t),n=0;n<r.remove.length;++n)r.remove[n](e,t);p(n=e.data.hook)&&p(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(p(i)&&xr(e,i))return o}}function C(e,t,n,o,a,c){if(e!==t){p(t.elm)&&p(o)&&(t=o[a]=be(t));var l=t.elm=e.elm;if(d(e.isAsyncPlaceholder))p(t.asyncFactory.resolved)?I(e.elm,t,n):t.isAsyncPlaceholder=!0;else if(d(t.isStatic)&&d(e.isStatic)&&t.key===e.key&&(d(t.isCloned)||d(t.isOnce)))t.componentInstance=e.componentInstance;else{var u,h=t.data;p(h)&&p(u=h.hook)&&p(u=u.prepatch)&&u(e,t);var v=e.children,g=t.children;if(p(h)&&m(t)){for(u=0;u<r.update.length;++u)r.update[u](e,t);p(u=h.hook)&&p(u=u.update)&&u(e,t)}f(t.text)?p(v)&&p(g)?v!==g&&function(e,t,n,r,o){for(var a,c,l,u=0,d=0,h=t.length-1,v=t[0],m=t[h],g=n.length-1,y=n[0],b=n[g],A=!o;u<=h&&d<=g;)f(v)?v=t[++u]:f(m)?m=t[--h]:xr(v,y)?(C(v,y,r,n,d),v=t[++u],y=n[++d]):xr(m,b)?(C(m,b,r,n,g),m=t[--h],b=n[--g]):xr(v,b)?(C(v,b,r,n,g),A&&i.insertBefore(e,v.elm,i.nextSibling(m.elm)),v=t[++u],b=n[--g]):xr(m,y)?(C(m,y,r,n,d),A&&i.insertBefore(e,m.elm,v.elm),m=t[--h],y=n[++d]):(f(a)&&(a=$r(t,u,h)),f(c=p(y.key)?a[y.key]:T(y,t,u,h))?s(y,r,e,v.elm,!1,n,d):xr(l=t[c],y)?(C(l,y,r,n,d),t[c]=void 0,A&&i.insertBefore(e,l.elm,v.elm)):s(y,r,e,v.elm,!1,n,d),y=n[++d]);u>h?_(e,f(n[g+1])?null:n[g+1].elm,n,d,g,r):d>g&&E(t,u,h)}(l,v,g,n,c):p(g)?(p(e.text)&&i.setTextContent(l,""),_(l,null,g,0,g.length-1,n)):p(v)?E(v,0,v.length-1):p(e.text)&&i.setTextContent(l,""):e.text!==t.text&&i.setTextContent(l,t.text),p(h)&&p(u=h.hook)&&p(u=u.postpatch)&&u(e,t)}}}function O(e,t,n){if(d(n)&&p(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,d(t.isComment)&&p(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(p(a)&&(p(o=a.hook)&&p(o=o.init)&&o(t,!0),p(o=t.componentInstance)))return c(t,n),!0;if(p(i)){if(p(s))if(e.hasChildNodes())if(p(o=a)&&p(o=o.domProps)&&p(o=o.innerHTML)){if(o!==e.innerHTML)return!1}else{for(var l=!0,u=e.firstChild,f=0;f<s.length;f++){if(!u||!I(u,s[f],n,r)){l=!1;break}u=u.nextSibling}if(!l||u)return!1}else v(t,s,n);if(p(a)){var h=!1;for(var m in a)if(!S(m)){h=!0,g(t,n);break}!h&&a.class&&Vt(a.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,n,o){if(!f(t)){var a,c=!1,l=[];if(f(e))c=!0,s(t,l);else{var u=p(e.nodeType);if(!u&&xr(e,t))C(e,t,l,null,null,o);else{if(u){if(1===e.nodeType&&e.hasAttribute(X)&&(e.removeAttribute(X),n=!0),d(n)&&I(e,t,l))return O(t,l,!0),e;a=e,e=new ge(i.tagName(a).toLowerCase(),{},[],void 0,a)}var h=e.elm,v=i.parentNode(h);if(s(t,l,h._leaveCb?null:v,i.nextSibling(h)),p(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](Ir,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 Or(g);g=g.parent}p(v)?E([e],0,0):p(e.tag)&&b(e)}}return O(t,l,c),t.elm}p(e)&&b(e)}}({nodeOps:wr,modules:[Gr,Xr,eo,ro,vo,Q?{create:Bo,activate:Bo,remove:function(e,t){!0!==e.data.show?jo(e,t):t()}}:{}].concat(jr)});ne&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&Ko(e,"input")}));var zo={inserted:function(e,t,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Ke(n,"postpatch",(function(){zo.componentUpdated(e,t,n)})):Ho(e,t,n.context),e._vOptions=[].map.call(e.options,Wo)):("textarea"===n.tag||Tr(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",Yo),e.addEventListener("compositionend",qo),e.addEventListener("change",qo),ne&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){Ho(e,t,n.context);var r=e._vOptions,o=e._vOptions=[].map.call(e.options,Wo);o.some((function(e,t){return!G(e,r[t])}))&&(e.multiple?t.value.some((function(e){return Vo(e,o)})):t.value!==t.oldValue&&Vo(t.value,o))&&Ko(e,"change")}}};function Ho(e,t,n){Xo(e,t),(te||re)&&setTimeout((function(){Xo(e,t)}),0)}function Xo(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,Wo(a))>-1,a.selected!==i&&(a.selected=i);else if(G(Wo(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));o||(e.selectedIndex=-1)}}function Vo(e,t){return t.every((function(t){return!G(t,e)}))}function Wo(e){return"_value"in e?e._value:e.value}function Yo(e){e.target.composing=!0}function qo(e){e.target.composing&&(e.target.composing=!1,Ko(e.target,"input"))}function Ko(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Zo(e){return!e.componentInstance||e.data&&e.data.transition?e:Zo(e.componentInstance._vnode)}var Jo={model:zo,show:{bind:function(e,t,n){var r=t.value,o=(n=Zo(n)).data&&n.data.transition,i=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&o?(n.data.show=!0,Mo(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=Zo(n)).data&&n.data.transition?(n.data.show=!0,r?Mo(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)}}},Qo={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 ei(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?ei(St(t.children)):e}function ti(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 ni(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var ri=function(e){return e.tag||yt(e)},oi=function(e){return"show"===e.name},ii={name:"transition",props:Qo,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(ri)).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=ei(o);if(!i)return o;if(this._leaving)return ni(e,o);var a="__transition-".concat(this._uid,"-");i.key=null==i.key?i.isComment?a+"comment":a+i.tag:h(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var s=(i.data||(i.data={})).transition=ti(this),c=this._vnode,l=ei(c);if(i.data.directives&&i.data.directives.some(oi)&&(i.data.show=!0),l&&l.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(i,l)&&!yt(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var u=l.data.transition=M({},s);if("out-in"===r)return this._leaving=!0,Ke(u,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),ni(e,o);if("in-out"===r){if(yt(i))return c;var f,p=function(){f()};Ke(s,"afterEnter",p),Ke(s,"enterCancelled",p),Ke(u,"delayLeave",(function(e){f=e}))}}return o}}},ai=M({tag:String,moveClass:String},Qo);delete ai.mode;var si={props:ai,beforeMount:function(){var e=this,t=this._update;this._update=function(n,r){var o=nn(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=ti(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(ci),e.forEach(li),e.forEach(ui),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var n=e.elm,r=n.style;xo(n,t),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Co,n._moveCb=function e(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Co,e),n._moveCb=null,$o(n,t))})}})))},methods:{hasMove:function(e,t){if(!Eo)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){yo(n,e)})),go(n,t),n.style.display="none",this.$el.appendChild(n);var r=ko(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function ci(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function li(e){e.data.newPos=e.elm.getBoundingClientRect()}function ui(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 fi={Transition:ii,TransitionGroup:si};Jn.config.mustUseProp=function(e,t,n){return"value"===n&&sr(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Jn.config.isReservedTag=Er,Jn.config.isReservedAttr=ar,Jn.config.getTagNamespace=function(e){return br(e)?"svg":"math"===e?"math":void 0},Jn.config.isUnknownElement=function(e){if(!Q)return!0;if(Er(e))return!1;if(e=e.toLowerCase(),null!=Ar[e])return Ar[e];var t=document.createElement(e);return e.indexOf("-")>-1?Ar[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Ar[e]=/HTMLUnknownElement/.test(t.toString())},M(Jn.options.directives,Jo),M(Jn.options.components,fi),Jn.prototype.__patch__=Q?Go:F,Jn.prototype.$mount=function(e,t){return function(e,t,n){var r;e.$el=t,e.$options.render||(e.$options.render=ye),sn(e,"beforeMount"),r=function(){e._update(e._render(),n)},new Kt(e,r,F,{before:function(){e._isMounted&&!e._isDestroyed&&sn(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,sn(e,"mounted")),e}(this,e=e&&Q?function(e){return"string"==typeof e?document.querySelector(e)||document.createElement("div"):e}(e):void 0,t)},Q&&setTimeout((function(){Y.devtools&&fe&&fe.emit("init",Jn)}),0);var pi=n(85072),di=n.n(pi),hi=n(97825),vi=n.n(hi),mi=n(77659),gi=n.n(mi),yi=n(55056),_i=n.n(yi),bi=n(10540),Ei=n.n(bi),Ai=n(41113),Ti=n.n(Ai),wi=n(98216),Ci={};function Oi(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}}Ci.styleTagTransform=Ti(),Ci.setAttributes=_i(),Ci.insert=gi().bind(null,"head"),Ci.domAPI=vi(),Ci.insertStyleElement=Ei(),di()(wi.A,Ci),wi.A&&wi.A.locals&&wi.A.locals;var Si=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:Oi({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 Ii=Si.exports;function Ni(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}const xi=Object.entries,$i=Object.setPrototypeOf,Li=Object.isFrozen,Ri=Object.getPrototypeOf,ki=Object.getOwnPropertyDescriptor;let Di=Object.freeze,Pi=Object.seal,Mi=Object.create,ji="undefined"!=typeof Reflect&&Reflect,Fi=ji.apply,Ui=ji.construct;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)}),Ui||(Ui=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 Bi=ca(Array.prototype.forEach),Gi=ca(Array.prototype.lastIndexOf),zi=ca(Array.prototype.pop),Hi=ca(Array.prototype.push),Xi=ca(Array.prototype.splice),Vi=Array.isArray,Wi=ca(String.prototype.toLowerCase),Yi=ca(String.prototype.toString),qi=ca(String.prototype.match),Ki=ca(String.prototype.replace),Zi=ca(String.prototype.indexOf),Ji=ca(String.prototype.trim),Qi=ca(Number.prototype.toString),ea=ca(Boolean.prototype.toString),ta="undefined"==typeof BigInt?null:ca(BigInt.prototype.toString),na="undefined"==typeof Symbol?null:ca(Symbol.prototype.toString),ra=ca(Object.prototype.hasOwnProperty),oa=ca(Object.prototype.toString),ia=ca(RegExp.prototype.test),aa=(sa=TypeError,function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return Ui(sa,t)});var sa;function ca(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 la(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Wi;if($i&&$i(e,null),!Vi(t))return e;let r=t.length;for(;r--;){let o=t[r];if("string"==typeof o){const e=n(o);e!==o&&(Li(t)||(t[r]=e),o=e)}e[o]=!0}return e}function ua(e){for(let t=0;t<e.length;t++)ra(e,t)||(e[t]=null);return e}function fa(e){const t=Mi(null);for(const i of xi(e)){var n=(o=2,function(e){if(Array.isArray(e))return e}(r=i)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],c=!0,l=!1;try{if(i=(n=n.call(e)).next,0===t);else for(;!(c=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(l)throw o}}return s}}(r,o)||function(e,t){if(e){if("string"==typeof e)return Ni(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ni(e,t):void 0}}(r,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}());const a=n[0],s=n[1];ra(e,a)&&(Vi(s)?t[a]=ua(s):s&&"object"==typeof s&&s.constructor===Object?t[a]=fa(s):t[a]=s)}var r,o;return t}function pa(e,t){for(;null!==e;){const n=ki(e,t);if(n){if(n.get)return ca(n.get);if("function"==typeof n.value)return ca(n.value)}e=Ri(e)}return function(){return null}}const da=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"]),ha=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"]),va=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"]),ma=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"]),ga=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"]),ya=Di(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),_a=Di(["#text"]),ba=Di(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","command","commandfor","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"]),Ea=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"]),Aa=Di(["accent","accentunder","align","bevelled","close","columnalign","columnlines","columnspacing","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lquote","lspace","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"]),Ta=Di(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),wa=Pi(/{{[\w\W]*|^[\w\W]*}}/g),Ca=Pi(/<%[\w\W]*|^[\w\W]*%>/g),Oa=Pi(/\${[\w\W]*/g),Sa=Pi(/^data-[\-\w.\u00B7-\uFFFF]+$/),Ia=Pi(/^aria-[\-\w]+$/),Na=Pi(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),xa=Pi(/^(?:\w+script|data):/i),$a=Pi(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),La=Pi(/^html$/i),Ra=Pi(/^[a-z][.\w]*(-[.\w]+)+$/i),ka=Pi(/<[/\w!]/g),Da=Pi(/<[/\w]/g),Pa=Pi(/<\/no(script|embed|frames)/i),Ma=Pi(/\/>/i),ja=function(){return"undefined"==typeof window?null:window},Fa=function(e,t,n,r){return ra(e,t)&&Vi(e[t])?la(r.base?fa(r.base):{},e[t],r.transform):n};var Ua=function e(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:ja();const n=t=>e(t);if(n.version="3.4.11",n.removed=[],!t||!t.document||9!==t.document.nodeType||!t.Element)return n.isSupported=!1,n;let r=t.document;const o=r,i=o.currentScript;t.DocumentFragment;const a=t.HTMLTemplateElement,s=t.Node,c=t.Element,l=t.NodeFilter;void 0===t.NamedNodeMap&&(t.NamedNodeMap||t.MozNamedAttrMap),t.HTMLFormElement;const u=t.DOMParser,f=t.trustedTypes,p=c.prototype,d=pa(p,"cloneNode"),h=pa(p,"remove"),v=pa(p,"nextSibling"),m=pa(p,"childNodes"),g=pa(p,"parentNode"),y=pa(p,"shadowRoot"),_=pa(p,"attributes"),b=s&&s.prototype?pa(s.prototype,"nodeType"):null,E=s&&s.prototype?pa(s.prototype,"nodeName"):null;if("function"==typeof a){const e=r.createElement("template");e.content&&e.content.ownerDocument&&(r=e.content.ownerDocument)}let A,T,w="",C=!1,O=0;const S=function(){if(O>0)throw aa('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},I=function(e){S(),O++;try{return A.createHTML(e)}finally{O--}},N=r,x=N.implementation,$=N.createNodeIterator,L=N.createDocumentFragment,R=N.getElementsByTagName,k=o.importNode;let D={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]};n.isSupported="function"==typeof xi&&"function"==typeof g&&x&&void 0!==x.createHTMLDocument;const P=wa,M=Ca,j=Oa,F=Sa,U=Ia,B=xa,G=$a,z=Ra;let H=Na,X=null;const V=la({},[...da,...ha,...va,...ga,..._a]);let W=null;const Y=la({},[...ba,...Ea,...Aa,...Ta]);let q=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}})),K=null,Z=null;const J=Object.seal(Mi(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let Q=!0,ee=!0,te=!1,ne=!0,re=!1,oe=!0,ie=!1,ae=!1,se=null,ce=null,le=!1,ue=!1,fe=!1,pe=!1,de=!0,he=!1;const ve="user-content-";let me=!0,ge=!1,ye={},_e=null;const be=la({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]);let Ee=null;const Ae=la({},["audio","video","img","source","image","track"]);let Te=null;const we=la({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Ce="http://www.w3.org/1998/Math/MathML",Oe="http://www.w3.org/2000/svg",Se="http://www.w3.org/1999/xhtml";let Ie=Se,Ne=!1,xe=null;const $e=la({},[Ce,Oe,Se],Yi),Le=Di(["mi","mo","mn","ms","mtext"]);let Re=la({},Le);const ke=Di(["annotation-xml"]);let De=la({},ke);const Pe=la({},["title","style","font","a","script"]);let Me=null;const je=["application/xhtml+xml","text/html"];let Fe=null,Ue=null;const Be=r.createElement("form"),Ge=function(e){return e instanceof RegExp||e instanceof Function},ze=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(Ue&&Ue===e)return;e&&"object"==typeof e||(e={}),e=fa(e),Me=-1===je.indexOf(e.PARSER_MEDIA_TYPE)?"text/html":e.PARSER_MEDIA_TYPE,Fe="application/xhtml+xml"===Me?Yi:Wi,X=Fa(e,"ALLOWED_TAGS",V,{transform:Fe}),W=Fa(e,"ALLOWED_ATTR",Y,{transform:Fe}),xe=Fa(e,"ALLOWED_NAMESPACES",$e,{transform:Yi}),Te=Fa(e,"ADD_URI_SAFE_ATTR",we,{transform:Fe,base:we}),Ee=Fa(e,"ADD_DATA_URI_TAGS",Ae,{transform:Fe,base:Ae}),_e=Fa(e,"FORBID_CONTENTS",be,{transform:Fe}),K=Fa(e,"FORBID_TAGS",fa({}),{transform:Fe}),Z=Fa(e,"FORBID_ATTR",fa({}),{transform:Fe}),ye=!!ra(e,"USE_PROFILES")&&(e.USE_PROFILES&&"object"==typeof e.USE_PROFILES?fa(e.USE_PROFILES):e.USE_PROFILES),Q=!1!==e.ALLOW_ARIA_ATTR,ee=!1!==e.ALLOW_DATA_ATTR,te=e.ALLOW_UNKNOWN_PROTOCOLS||!1,ne=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,re=e.SAFE_FOR_TEMPLATES||!1,oe=!1!==e.SAFE_FOR_XML,ie=e.WHOLE_DOCUMENT||!1,ue=e.RETURN_DOM||!1,fe=e.RETURN_DOM_FRAGMENT||!1,pe=e.RETURN_TRUSTED_TYPE||!1,le=e.FORCE_BODY||!1,de=!1!==e.SANITIZE_DOM,he=e.SANITIZE_NAMED_PROPS||!1,me=!1!==e.KEEP_CONTENT,ge=e.IN_PLACE||!1,H=function(e){try{return ia(e,""),!0}catch(e){return!1}}(e.ALLOWED_URI_REGEXP)?e.ALLOWED_URI_REGEXP:Na,Ie="string"==typeof e.NAMESPACE?e.NAMESPACE:Se,Re=ra(e,"MATHML_TEXT_INTEGRATION_POINTS")&&e.MATHML_TEXT_INTEGRATION_POINTS&&"object"==typeof e.MATHML_TEXT_INTEGRATION_POINTS?fa(e.MATHML_TEXT_INTEGRATION_POINTS):la({},Le),De=ra(e,"HTML_INTEGRATION_POINTS")&&e.HTML_INTEGRATION_POINTS&&"object"==typeof e.HTML_INTEGRATION_POINTS?fa(e.HTML_INTEGRATION_POINTS):la({},ke);const t=ra(e,"CUSTOM_ELEMENT_HANDLING")&&e.CUSTOM_ELEMENT_HANDLING&&"object"==typeof e.CUSTOM_ELEMENT_HANDLING?fa(e.CUSTOM_ELEMENT_HANDLING):Mi(null);if(q=Mi(null),ra(t,"tagNameCheck")&&Ge(t.tagNameCheck)&&(q.tagNameCheck=t.tagNameCheck),ra(t,"attributeNameCheck")&&Ge(t.attributeNameCheck)&&(q.attributeNameCheck=t.attributeNameCheck),ra(t,"allowCustomizedBuiltInElements")&&"boolean"==typeof t.allowCustomizedBuiltInElements&&(q.allowCustomizedBuiltInElements=t.allowCustomizedBuiltInElements),Pi(q),re&&(ee=!1),fe&&(ue=!0),ye&&(X=la({},_a),W=Mi(null),!0===ye.html&&(la(X,da),la(W,ba)),!0===ye.svg&&(la(X,ha),la(W,Ea),la(W,Ta)),!0===ye.svgFilters&&(la(X,va),la(W,Ea),la(W,Ta)),!0===ye.mathMl&&(la(X,ga),la(W,Aa),la(W,Ta))),J.tagCheck=null,J.attributeCheck=null,ra(e,"ADD_TAGS")&&("function"==typeof e.ADD_TAGS?J.tagCheck=e.ADD_TAGS:Vi(e.ADD_TAGS)&&(X===V&&(X=fa(X)),la(X,e.ADD_TAGS,Fe))),ra(e,"ADD_ATTR")&&("function"==typeof e.ADD_ATTR?J.attributeCheck=e.ADD_ATTR:Vi(e.ADD_ATTR)&&(W===Y&&(W=fa(W)),la(W,e.ADD_ATTR,Fe))),ra(e,"ADD_URI_SAFE_ATTR")&&Vi(e.ADD_URI_SAFE_ATTR)&&la(Te,e.ADD_URI_SAFE_ATTR,Fe),ra(e,"FORBID_CONTENTS")&&Vi(e.FORBID_CONTENTS)&&(_e===be&&(_e=fa(_e)),la(_e,e.FORBID_CONTENTS,Fe)),ra(e,"ADD_FORBID_CONTENTS")&&Vi(e.ADD_FORBID_CONTENTS)&&(_e===be&&(_e=fa(_e)),la(_e,e.ADD_FORBID_CONTENTS,Fe)),me&&(X["#text"]=!0),ie&&la(X,["html","head","body"]),X.table&&(la(X,["tbody"]),delete K.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw aa('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw aa('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');const t=A;A=e.TRUSTED_TYPES_POLICY;try{w=I("")}catch(e){throw A=t,e}}else null===e.TRUSTED_TYPES_POLICY?(A=void 0,w=""):(void 0===A&&(C||(T=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}}(f,i),C=!0),A=T),A&&"string"==typeof w&&(w=I("")));Di&&Di(e),Ue=e},He=la({},[...ha,...va,...ma]),Xe=la({},[...ga,...ya]),Ve=function(e){Hi(n.removed,{element:e});try{g(e).removeChild(e)}catch(t){if(h(e),!g(e))throw aa("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},We=function(e){const t=m(e);if(t){const e=[];Bi(t,(t=>{Hi(e,t)})),Bi(e,(e=>{try{h(e)}catch(e){}}))}const n=_(e);if(n)for(let t=n.length-1;t>=0;--t){const r=n[t],o=r&&r.name;if("string"==typeof o)try{e.removeAttribute(o)}catch(e){}}},Ye=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(ue||fe)try{Ve(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},qe=function(e){const t=_(e);if(t)for(let n=t.length-1;n>=0;--n){const r=t[n],o=r&&r.name;if("string"==typeof o&&!W[Fe(o)])try{e.removeAttribute(o)}catch(e){}}},Ke=function(e){let t=null,n=null;if(le)e="<remove></remove>"+e;else{const t=qi(e,/^[\r\n\t ]+/);n=t&&t[0]}"application/xhtml+xml"===Me&&Ie===Se&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");const o=A?I(e):e;if(Ie===Se)try{t=(new u).parseFromString(o,Me)}catch(e){}if(!t||!t.documentElement){t=x.createDocument(Ie,"template",null);try{t.documentElement.innerHTML=Ne?w:o}catch(e){}}const i=t.body||t.documentElement;return e&&n&&i.insertBefore(r.createTextNode(n),i.childNodes[0]||null),Ie===Se?R.call(t,ie?"html":"body")[0]:ie?t.documentElement:i},Ze=function(e){return $.call(e.ownerDocument||e,e,l.SHOW_ELEMENT|l.SHOW_COMMENT|l.SHOW_TEXT|l.SHOW_PROCESSING_INSTRUCTION|l.SHOW_CDATA_SECTION,null)},Je=function(e){return e=Ki(e,P," "),e=Ki(e,M," "),Ki(e,j," ")},Qe=function(e){var t;e.normalize();const n=$.call(e.ownerDocument||e,e,l.SHOW_TEXT|l.SHOW_COMMENT|l.SHOW_CDATA_SECTION|l.SHOW_PROCESSING_INSTRUCTION,null);let r=n.nextNode();for(;r;)r.data=Je(r.data),r=n.nextNode();const o=null===(t=e.querySelectorAll)||void 0===t?void 0:t.call(e,"template");o&&Bi(o,(e=>{tt(e.content)&&Qe(e.content)}))},et=function(e){const t=E?E(e):null;return"string"==typeof t&&"form"===Fe(t)&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||e.attributes!==_(e)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes||e.nodeType!==b(e)||e.childNodes!==m(e))},tt=function(e){if(!b||"object"!=typeof e||null===e)return!1;try{return 11===b(e)}catch(e){return!1}},nt=function(e){if(!b||"object"!=typeof e||null===e)return!1;try{return"number"==typeof b(e)}catch(e){return!1}};function rt(e,t,r){0!==e.length&&Bi(e,(e=>{e.call(n,t,r,Ue)}))}const ot=function(e){if(rt(D.beforeSanitizeElements,e,null),et(e))return Ve(e),!0;const t=Fe(E?E(e):e.nodeName);if(rt(D.uponSanitizeElement,e,{tagName:t,allowedTags:X}),function(e,t){return!!(oe&&e.hasChildNodes()&&!nt(e.firstElementChild)&&ia(ka,e.textContent)&&ia(ka,e.innerHTML))||!(!oe||e.namespaceURI!==Se||"style"!==t||!nt(e.firstElementChild))||7===e.nodeType||!(!oe||8!==e.nodeType||!ia(Da,e.data))}(e,t))return Ve(e),!0;if(K[t]||!(J.tagCheck instanceof Function&&J.tagCheck(t))&&!X[t])return function(e,t){if(!K[t]&&st(t)){if(q.tagNameCheck instanceof RegExp&&ia(q.tagNameCheck,t))return!1;if(q.tagNameCheck instanceof Function&&q.tagNameCheck(t))return!1}if(me&&!_e[t]){const t=g(e),n=m(e);if(n&&t)for(let r=n.length-1;r>=0;--r){const o=ge?n[r]:d(n[r],!0);t.insertBefore(o,v(e))}}return Ve(e),!0}(e,t);if(1===(b?b(e):e.nodeType)&&!function(e){let t=g(e);t&&t.tagName||(t={namespaceURI:Ie,tagName:"template"});const n=Wi(e.tagName),r=Wi(t.tagName);return!!xe[e.namespaceURI]&&(e.namespaceURI===Oe?function(e,t,n){return t.namespaceURI===Se?"svg"===e:t.namespaceURI===Ce?"svg"===e&&("annotation-xml"===n||Re[n]):Boolean(He[e])}(n,t,r):e.namespaceURI===Ce?function(e,t,n){return t.namespaceURI===Se?"math"===e:t.namespaceURI===Oe?"math"===e&&De[n]:Boolean(Xe[e])}(n,t,r):e.namespaceURI===Se?function(e,t,n){return!(t.namespaceURI===Oe&&!De[n])&&!(t.namespaceURI===Ce&&!Re[n])&&!Xe[e]&&(Pe[e]||!He[e])}(n,t,r):!("application/xhtml+xml"!==Me||!xe[e.namespaceURI]))}(e))return Ve(e),!0;if(("noscript"===t||"noembed"===t||"noframes"===t)&&ia(Pa,e.innerHTML))return Ve(e),!0;if(re&&3===e.nodeType){const t=Je(e.textContent);e.textContent!==t&&(Hi(n.removed,{element:e.cloneNode()}),e.textContent=t)}return rt(D.afterSanitizeElements,e,null),!1},it=function(e,t,n){if(Z[t])return!1;if(de&&("id"===t||"name"===t)&&(n in r||n in Be))return!1;const o=W[t]||J.attributeCheck instanceof Function&&J.attributeCheck(t,e);if(ee&&ia(F,t));else if(Q&&ia(U,t));else if(o){if(Te[t]);else if(ia(H,Ki(n,G,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==Zi(n,"data:")||!Ee[e])if(te&&!ia(B,Ki(n,G,"")));else if(n)return!1}else if(!(st(e)&&(q.tagNameCheck instanceof RegExp&&ia(q.tagNameCheck,e)||q.tagNameCheck instanceof Function&&q.tagNameCheck(e))&&(q.attributeNameCheck instanceof RegExp&&ia(q.attributeNameCheck,t)||q.attributeNameCheck instanceof Function&&q.attributeNameCheck(t,e))||"is"===t&&q.allowCustomizedBuiltInElements&&(q.tagNameCheck instanceof RegExp&&ia(q.tagNameCheck,n)||q.tagNameCheck instanceof Function&&q.tagNameCheck(n))))return!1;return!0},at=la({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),st=function(e){return!at[Wi(e)]&&ia(z,e)},ct=function(e,t,n,r){if(A&&"object"==typeof f&&"function"==typeof f.getAttributeType&&!n)switch(f.getAttributeType(e,t)){case"TrustedHTML":return I(r);case"TrustedScriptURL":return function(e){S(),O++;try{return A.createScriptURL(e)}finally{O--}}(r)}return r},lt=function(e,t,r,o){try{r?e.setAttributeNS(r,t,o):e.setAttribute(t,o),et(e)?Ve(e):zi(n.removed)}catch(n){Ye(t,e)}},ut=function(e){rt(D.beforeSanitizeAttributes,e,null);const t=e.attributes;if(!t||et(e))return;const n={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:W,forceKeepAttr:void 0};let r=t.length;const o=Fe(e.nodeName);for(;r--;){const i=t[r],a=i.name,s=i.namespaceURI,c=i.value,l=Fe(a),u=c;let f="value"===a?u:Ji(u);n.attrName=l,n.attrValue=f,n.keepAttr=!0,n.forceKeepAttr=void 0,rt(D.uponSanitizeAttribute,e,n),f=n.attrValue,!he||"id"!==l&&"name"!==l||0===Zi(f,ve)||(Ye(a,e),f=ve+f),oe&&ia(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,f)||"attributename"===l&&qi(f,"href")?Ye(a,e):n.forceKeepAttr||(!n.keepAttr||!ne&&ia(Ma,f)?Ye(a,e):(re&&(f=Je(f)),it(o,l,f)?(f=ct(o,l,s,f),f!==u&<(e,a,s,f)):Ye(a,e)))}rt(D.afterSanitizeAttributes,e,null)},ft=function(e){let t=null;const n=Ze(e);for(rt(D.beforeSanitizeShadowDOM,e,null);t=n.nextNode();)if(rt(D.uponSanitizeShadowNode,t,null),ot(t),ut(t),tt(t.content)&&ft(t.content),1===(b?b(t):t.nodeType)){const e=y(t);tt(e)&&(pt(e),ft(e))}rt(D.afterSanitizeShadowDOM,e,null)},pt=function(e){const t=[{node:e,shadow:null}];for(;t.length>0;){const e=t.pop();if(e.shadow){ft(e.shadow);continue}const n=e.node,r=1===(b?b(n):n.nodeType),o=m(n);if(o)for(let e=o.length-1;e>=0;--e)t.push({node:o[e],shadow:null});if(r){const e=E?E(n):null;if("string"==typeof e&&"template"===Fe(e)){const e=n.content;tt(e)&&t.push({node:e,shadow:null})}}if(r){const e=y(n);tt(e)&&t.push({node:null,shadow:e},{node:e,shadow:null})}}};return n.sanitize=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=null,i=null,a=null,s=null;if(Ne=!e,Ne&&(e="\x3c!--\x3e"),"string"!=typeof e&&!nt(e)&&"string"!=typeof(e=function(e){switch(typeof e){case"string":return e;case"number":return Qi(e);case"boolean":return ea(e);case"bigint":return ta?ta(e):"0";case"symbol":return na?na(e):"Symbol()";case"undefined":default:return oa(e);case"function":case"object":{if(null===e)return oa(e);const t=e,n=pa(t,"toString");if("function"==typeof n){const e=n(t);return"string"==typeof e?e:oa(e)}return oa(e)}}}(e)))throw aa("dirty is not a string, aborting");if(!n.isSupported)return e;ae?(X=se,W=ce):ze(t),(D.uponSanitizeElement.length>0||D.uponSanitizeAttribute.length>0)&&(X=fa(X)),D.uponSanitizeAttribute.length>0&&(W=fa(W)),n.removed=[];const c=ge&&"string"!=typeof e&&nt(e);if(c){const t=E?E(e):e.nodeName;if("string"==typeof t){const e=Fe(t);if(!X[e]||K[e])throw aa("root node is forbidden and cannot be sanitized in-place")}if(et(e))throw aa("root node is clobbered and cannot be sanitized in-place");try{pt(e)}catch(t){throw We(e),t}}else if(nt(e))r=Ke("\x3c!----\x3e"),i=r.ownerDocument.importNode(e,!0),1===i.nodeType&&"BODY"===i.nodeName||"HTML"===i.nodeName?r=i:r.appendChild(i),pt(i);else{if(!ue&&!re&&!ie&&-1===e.indexOf("<"))return A&&pe?I(e):e;if(r=Ke(e),!r)return ue?null:pe?w:""}r&&le&&Ve(r.firstChild);const l=Ze(c?e:r);try{for(;a=l.nextNode();)ot(a),ut(a),tt(a.content)&&ft(a.content)}catch(t){throw c&&We(e),t}if(c)return Bi(n.removed,(e=>{e.element&&function(e){const t=[e];for(;t.length>0;){const e=t.pop();1===(b?b(e):e.nodeType)&&qe(e);const n=m(e);if(n)for(let e=n.length-1;e>=0;--e)t.push(n[e])}}(e.element)})),re&&Qe(e),e;if(ue){if(re&&Qe(r),fe)for(s=L.call(r.ownerDocument);r.firstChild;)s.appendChild(r.firstChild);else s=r;return(W.shadowroot||W.shadowrootmode)&&(s=k.call(o,s,!0)),s}let u=ie?r.outerHTML:r.innerHTML;return ie&&X["!doctype"]&&r.ownerDocument&&r.ownerDocument.doctype&&r.ownerDocument.doctype.name&&ia(La,r.ownerDocument.doctype.name)&&(u="<!DOCTYPE "+r.ownerDocument.doctype.name+">\n"+u),re&&(u=Je(u)),A&&pe?I(u):u},n.setConfig=function(){ze(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),ae=!0,se=X,ce=W},n.clearConfig=function(){Ue=null,ae=!1,se=null,ce=null,A=T,w=""},n.isValidAttribute=function(e,t,n){Ue||ze({});const r=Fe(e),o=Fe(t);return it(r,o,n)},n.addHook=function(e,t){"function"==typeof t&&ra(D,e)&&Hi(D[e],t)},n.removeHook=function(e,t){if(ra(D,e)){if(void 0!==t){const n=Gi(D[e],t);return-1===n?void 0:Xi(D[e],n,1)[0]}return zi(D[e])}},n.removeHooks=function(e){ra(D,e)&&(D[e]=[])},n.removeAllHooks=function(){D={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},n}(),Ba=n(70580);function Ga(e){return{translations:globalThis._oc_l10n_registry_translations[e]??{},pluralFunction:globalThis._oc_l10n_registry_plural_functions[e]??(e=>e)}}function za(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?Ua.sanitize:c)||c,u=s.escape?Ba:c,f=e=>"string"==typeof e||"number"==typeof e;let p=(o?.bundle??Ga(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?Ba: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 Ha={methods:{t:za,n:function(e,t,n,r,o,i){const a="_"+t+"_::_"+n+"_",s=i?.bundle??Ga(e),c=s.translations[a];if(void 0!==c){const t=c;if(Array.isArray(t))return za(e,t[s.pluralFunction(r)],o,r,i)}return za(e,1===r?t:n,o,r,i)}}};n.nc=btoa(globalThis._nc_auth_requestToken?globalThis._nc_auth_requestToken:globalThis.document?document.head.dataset.requesttoken??null:null),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/"),Jn.mixin(Ha),new(Jn.extend(Ii))({}).$mount("#mail-oauth-done"),window.opener&&window.opener.postMessage("DONE")})()})(); //# sourceMappingURL=oauthpopup.js.map
Save File
Cancel